/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Alata", sans-serif;
}

.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #fff;
}

/* Header styles */
.site-header {
  background-color: rgba(212, 225, 184, 0.62);
  height: 131px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 40px;
  padding-right: 40px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  color: #002a48;
}

.logo-text {
  font-family: "Kolker Brush", cursive;
  font-size: 96px;
}

.logo-separator {
  font-family: "Kokoro", sans-serif;
  font-size: 20px;
}

.logo-tagline {
  font-family: "Alata", sans-serif;
  font-size: 20px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  color: #002a48;
  font-family: "Alata", sans-serif;
  font-size: 24px;
  text-decoration: none;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
}

/* Hero banner */
.hero-banner {
  position: relative;
}

.hero-image {
  width: 100%;
  height: 442px;
  object-fit: cover;
}

@media (max-width: 991px) {
  .hero-image {
    height: auto;
    /* Allow auto height on mobile */
    max-height: 250px;
    /* Limit height */
  }
}

/* Profile navigation */
.profile-nav {
  display: flex;
  gap: 30px;
  padding: 20px 40px;
  border-width: 1px;
  border-color: #d9d9d9;
  overflow-x: auto;
}

.profile-nav-link {
  color: #002a48;
  font-family: "Alata", sans-serif;
  font-size: 24px;
  text-decoration: none;
}

.profile-nav-link.active {
  font-weight: bold;
}

/* Profile content */
.profile-content {
  padding: 60px 40px;
}

.profile-form-container {
  max-width: 1131px;
  margin-left: auto;
  margin-right: auto;
}

.profile-title {
  color: #002a48;
  font-family: "Alatsi", sans-serif;
  font-size: 36px;
  margin-bottom: 20px;
}

.profile-subtitle {
  color: rgba(0, 0, 0, 0.73);
  font-family: "Alatsi", sans-serif;
  font-size: 24px;
  margin-bottom: 40px;
}

.profile-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-label {
  color: rgba(0, 0, 0, 0.73);
  font-family: "Alatsi", sans-serif;
  font-size: 24px;
}

.field-input {
  width: 100%;
  height: 64px;
  border-radius: 5px;
  border-width: 1px;
  border-color: rgba(0, 0, 0, 0.41);
  padding-left: 16px;
  padding-right: 16px;
}

.submit-button {
  margin-top: 40px;
  background-color: #002a48;
  color: #fff;
  font-family: "Alatsi", sans-serif;
  font-size: 24px;
  border-radius: 5px;
  padding: 16px 30px;
  border: none;
  cursor: pointer;
  grid-column: 1 / -1;
}

/* Footer styles */
.site-footer {
  background-color: #ecfcd5;
  margin-top: auto;
}

.footer-content {
  max-width: 1435px;
  margin-left: auto;
  margin-right: auto;
  padding: 80px 60px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-logo {
  color: #002a48;
}

.footer-links {
  display: flex;
  gap: 139px;
  flex-wrap: wrap;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-heading {
  color: #0e2515;
  font-family: "Alata", sans-serif;
  font-size: 18px;
  font-weight: normal;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-link {
  color: #8c8c8c;
  font-family: "Alata", sans-serif;
  font-size: 16px;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid #dedede;
}

.copyright {
  color: #8c8c8c;
  font-family: "Alata", sans-serif;
  font-size: 16px;
}

.social-links {
  display: flex;
  gap: 24px;
}

.social-link {
  text-decoration: none;
}

/* Media queries */
@media (max-width: 991px) {
  .site-header {
    padding-left: 20px;
    padding-right: 20px;
  }

  .logo-text {
    font-size: 72px;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .profile-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .profile-form {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .footer-content {
    padding-left: 40px;
    padding-right: 40px;
  }

  .footer-links {
    gap: 60px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-left: 16px;
    padding-right: 16px;
  }

  .logo-text {
    font-size: 48px;
  }

  .logo-tagline {
    font-size: 16px;
  }

  .profile-nav {
    padding-left: 16px;
    padding-right: 16px;
  }

  .profile-content {
    padding: 40px 16px;
  }

  .footer-content {
    padding: 40px 20px;
  }

  .footer-links {
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
  }
}

/* Mobile Optimizations (Max-width: 576px) */
@media (max-width: 576px) {
  .site-header {
    height: auto;
    padding: 20px;
    flex-direction: column;
    gap: 20px;
  }

  .logo-container {
    width: 100%;
    justify-content: space-between;
  }

  .profile-form {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  /* .field-input {
        width: 100%;
    } */

  .submit-button {
    width: 100%;
  }

  .hero-banner .nav-container {
    margin-left: 0;
  }
}