* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body, html {
    height: 100%;
    width: 100%;
    font-family: 'Fredoka', sans-serif;
    overflow-x: hidden;
  }
  
  ul {
    list-style: none;
  }
  
  body {
    background: linear-gradient(to bottom, #ECE0DB 0%, #fff4f9 100%);
  }
  
  /* FOOTER */
  .site-footer {
    background-color: transparent;
    text-align: center;
    padding: 40px 20px 30px;
    font-size: 1rem;
    color: #A45DB9;
    font-family: 'Fredoka', sans-serif;
    margin-top: 60px;
  }
  
  .site-footer p {
    margin: 0 auto;
    max-width: 90%;
    line-height: 1.6;
  }
  
  /* NAVIGATION */
  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 40px;
    background-color: #ECE0DB;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
  }
  
  nav .logo {
    margin: 0;
    padding: 0;
  }
  
  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 40px;
    background-color: #ECE0DB;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px; /* ✅ lock the nav height */
    z-index: 1000;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
  }
  
  .logo-img {
    height: 60px; /* ✅ responsive and not overwhelming */
    max-height: 100%;
    display: block;
  }
  
  .nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  
  .nav-links li a {
    text-decoration: none;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: #A45DB9;
    padding: 12px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
  }
  
  .nav-links li a:hover {
    background-color: #fbe6ff;
    color: #c156e5;
    box-shadow: 0 4px 10px rgba(212, 142, 229, 0.25);
    transform: translateY(-1px);
  }
  
  /* HERO SECTION */
  .hero {
    margin-top: 0px;
    padding: 60px 0px;
    background-image: url('your-image.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
  }
  
  .overlay {
    width: 100%;
    padding: 60px 0; /* vertical spacing only */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-sizing: border-box;
  }
  
  .hero-text {
    width: 100%;
    max-width: 1000px;
    padding: 0; /* remove side padding */
    margin: 0 auto; /* center it if needed */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: #A45DB9;
  }
  
  .transformation-img {
    max-width: 90%;
    width: 90%;
    margin: 0 auto 30px;
    display: block;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  }
  
  /* FORM */
  .hero-text form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    width: 100%;
    max-width: 100%;
  }
  
  .hero-text input,
  .hero-text textarea,
  .hero-text button {
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 1rem;
  }
  
  .hero-text textarea {
    resize: vertical;
    min-height: 100px;
  }
  
  /* CONTACT / EMAIL BUTTON */
  .hero-text button,
  .email-button {
    background-color: #D48EE5;
    color: white;
    padding: 18px 38px;
    font-size: 1.3rem;
    font-weight: 600;
    font-family: 'Fredoka', sans-serif;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(164, 93, 185, 0.25);
    transition: background-color 0.2s ease, transform 0.2s ease;
  }
  
  .hero-text button:hover,
  .email-button:hover {
    background-color: #A45DB9;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(144, 47, 190, 0.25);
  }
  
  /* CONTACT FORM POPUP */
  #contactForm {
    display: none;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    width: 100%;
    max-width: 800px;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    animation: fadeIn 0.3s ease-in-out;
    align-items: stretch;
    position: relative;
  }
  
  .form-columns {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 12px;
  }
  
  .form-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  #contactForm textarea {
    width: 100%;
    resize: vertical;
    min-height: 120px;
    margin-bottom: 12px;
  }
  
  #contactForm.show {
    display: flex;
  }
  
  #closeForm {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 24px;
    color: #333;
    background-color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  }
  
  /* ANIMATIONS */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* RESPONSIVE FIXES */
  @media (max-width: 850px) {
    .logo-img {
      height: 90px;
    }
  
    nav {
      padding: 8px 20px;
    }
  
    .nav-links {
      gap: 20px;
    }
  
    .nav-links li a {
      font-size: 1.1rem;
      padding: 8px 16px;
    }
  
    .hero {
      margin-top: 100px;
      padding: 0;
      width: 100%;
    }
  }
  
  @media (max-width: 700px) {
    .logo-img {
      height: 60px;
    }
  
    nav {
      padding: 6px 16px;
    }
  
    .nav-links li a {
      font-size: 0.95rem;
      padding: 6px 12px;
    }
  
    .form-columns {
      flex-direction: column;
    }
  
    .hero-text h1 {
      font-size: 2.2rem;
    }
  
    .email-button {
      font-size: 1.1rem;
      padding: 14px 28px;
    }
  
    .hero {
      margin-top: 80px;
      padding-bottom: 80px;
      padding-top: 20px;
    }
  }
  .founder-section {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.founder-photo {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}

.founder-photo img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.founder-photo figcaption {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
  text-align: center;
}

.founder-intro {
  flex: 1;
  font-size: 1.05rem;
  line-height: 1.7;
  text-align: left;
}

@media (max-width: 768px) {
  .founder-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .founder-photo,
  .founder-intro {
    max-width: 90%;
  }

  .founder-intro {
    text-align: center;
    margin-top: 20px;
  }

  .founder-photo figcaption {
    text-align: center;
  }
}

.hero-text p {
  margin-bottom: 1.2em;
}

/* Hide hamburger icon by default (desktop) */
.menu-toggle {
  display: none;
}

/* Mobile navigation dropdown styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    font-size: 2rem;
    cursor: pointer;
    color: #A45DB9;
    padding: 10px;
    z-index: 1001;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 20px;
    background-color: #ECE0DB;
    padding: 1rem;
    gap: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    display: block;
    width: 100%;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 1.1rem;
    color: #A45DB9;
  }

  .nav-links li a:hover {
    background-color: #fbe6ff;
    color: #c156e5;
  }
}

