/* CSS for section section:Header */
#header-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding-top: 30px;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Header responsiveness */
@media (max-width: 768px) {
  #header-section {
    padding-top: 16px;
  }

  .header-container {
    padding: 0 16px;
  }

  /* Logo scaling */
  .logo-icon {
    height: 28px;
    width: auto;
  }

  /* Button scaling */
  .header-nav .btn {
    padding: 8px 14px;
    font-size: 13px;
    border-radius: 8px;
  }
}

@media (max-width: 480px) {
  .logo-icon {
    height: 24px;
  }

  .header-nav .btn {
    padding: 6px 12px;
    font-size: 12px;
  }
}

@media (max-width: 324px) {
  .logo-icon {
    height: 20px;
  }

  .header-nav .btn {
    padding: 6px 10px;
    font-size: 10px;
  }
}

@media (max-width: 768px) {
  #header-section {
    position: fixed;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
  }
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-text {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
}
