body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f1efe7;
  color: #292929; 
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #f1efe7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  box-shadow: none;
  border-bottom: none;
}
/* Mobile navbar styles */
.nav-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #292929;
}

@media (max-width: 768px) {
  nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: #f1efe7;
    flex-direction: column;
    display: none;
    padding: 20px 0;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }

  nav a {
    padding: 10px 0;
    display: block;
  }

  .nav-toggle {
    display: block;
  }

  nav.active {
    display: flex;
  }

  header {
    flex-wrap: wrap;
  }
}



.logo img {
  max-height: 60px; /* control height properly */
  max-width: 220px; /* allow it to stretch horizontally */
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}


.logo small {
  font-weight: 300;
  font-size: 12px;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #666;
  font-weight: 500;
}
  
  .hero {
    text-align: center;
    padding: 100px 20px 60px;
  }
  
  .hero h1 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 18px;
    color: #666;
  }
  
  .story, .mission, .values {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
  }
  
  .story {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .story .content {
    flex: 1 1 400px;
  }
  
  .story img {
    max-width: 400px;
    border-radius: 12px;
  }
  
  .mission, .values {
    text-align: center;
  }
  
  .mission p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    color: #444;
  }
  
  .values .value-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
  }
  
  .value-item {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 0 16px rgba(0,0,0,0.08);
    max-width: 280px;
  }
  
  .value-item h3 {
    margin-bottom: 10px;
    color: #3c82f6;
  }
  
  .button {
    display: inline-block;
    padding: 12px 24px;
    background: #3c82f6;
    color: white;
    border-radius: 9999px;
    text-decoration: none;
    margin-top: 20px;
  }
  
 .team {
  padding: 80px 20px;
  background-color: #f1efe7;
  text-align: center;
}

.team h4 {
  font-size: 18px;
  color: #3c82f6;
  margin-bottom: 10px;
  font-weight: 500;
}

.team h2 {
  font-size: 32px;
  color: #292929;
  margin-bottom: 50px;
  font-weight: 600;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.team-member {
  background: white;
  padding: 20px;
  border-radius: 16px;
  width: 220px;
  box-shadow: 0 0 24px #00000014;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.team-member img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 15px;
}

.team-member h3 {
  font-size: 18px;
  color: #292929;
  margin-bottom: 5px;
}

.team-member p {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.arrow {
  font-size: 20px;
  color: #3c82f6;
  margin-top: auto;
  cursor: pointer;
}

.team-grid.hidden {
  display: none;
}

/* Bio slider styles */
.team-bio-slider {
  display: none;
  padding: 40px 20px;
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: slideIn 0.5s ease forwards;
  max-width: 600px;
  margin: 40px auto 0;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.bio-content {
  text-align: center;
}

.bio-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.bio-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.back-btn {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #3c82f6;
  color: white;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s ease;
}

.back-btn:hover {
  background-color: #2563eb;
}


  .footer {
    background-color: #faf8f2;
    padding: 60px 20px 20px;
  }
  
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;     
    text-align: center;           
    gap: 60px;                    
    max-width: 1000px;
    margin: 0 auto 40px;
  }
  
  .footer-branding {
    flex: 1 1 250px;
  }
  
  .footer-branding .logo {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .footer-branding p {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;     
    gap: 60px;
  }
  
  
  .footer-column h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #292929;
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 8px;
  }
  
  .footer-column ul li a {
    text-decoration: none;
    color: #666;
    font-size: 14px;
  }
  
  .footer-column ul li a:hover {
    color: #3c82f6;
  }
  
  .footer-bottom {
    background-color: #f8f8f8;
    padding: 20px 0;
    text-align: center;
  }
  
  .footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 14px;
    color: #777;
  }
  
  .footer-bottom a {
    color: #666;
    text-decoration: none;
  }
  
  .footer-bottom a:hover {
    color: #3c82f6;
  }