/* Landing page specific styles */

/* Reset some default styles for the landing page */
body {
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
  font-family: 'Noto Sans SC', sans-serif;
}

/* Header styles */
.landing-header {
  background-color: #04635b;
  color: white;
  height: 30vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(rgba(4, 99, 91, 0.8), rgba(4, 99, 91, 0.8)), url('../images/teafuu-social.jpg');
  background-size: cover;
  background-position: center;
}

.logo-container {
  z-index: 2;
  padding: 1rem;
}

.centered-logo {
  max-width: 300px;
  width: 60%;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
}

/* Main content styles */
.landing-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* Company intro section */
.company-intro {
  text-align: center;
  padding: 3.5rem 1rem;
  background-color: #f0f7f6;
  border-radius: 0 0 12px 12px;
  margin-bottom: 2rem;
}

.company-intro h2 {
  font-size: 2.5rem;
  color: #04635b;
  margin-bottom: 1.5rem;
}

.intro-text {
  font-size: 1.8rem;
  max-width: 800px;
  margin: 0 auto;
  color: #04635b;
  line-height: 1.6;
  font-weight: 500;
  font-family: 'Noto Sans SC', sans-serif;
  letter-spacing: 0.5px;
}

/* Company info section - reusing existing styles with some modifications */
.company-info {
  background-color: white;
  padding: 4rem 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 3rem;
}

.info-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.info-section {
  text-align: center;
}

.info-section h3 {
  color: #04635b;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.info-section p {
  color: #666;
  line-height: 1.7;
}

/* Team section */
.team-section {
  padding: 4rem 2rem;
  background-color: #f5f5f5;
  border-radius: 12px;
  margin-bottom: 3rem;
}

.section-title {
  text-align: center;
  color: #04635b;
  font-size: 2.2rem;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: #04635b;
  margin: 1rem auto 0;
  border-radius: 48px;
}

.team-members {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.team-member-card {
  background-color: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.team-member-card h3 {
  color: #04635b;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.team-member-card h4 {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.team-member-card p {
  color: #777;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Contact section */
.contact-section {
  padding: 4rem 2rem;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.contact-section h2 {
  color: #04635b;
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.contact-detail-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 200px;
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #04635b;
}

.detail-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.detail-content p {
  color: #666;
  font-size: 1rem;
}

/* Footer styles */
.landing-footer {
  background-color: #04635b;
  color: white;
  padding: 2rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
  gap: 1.5rem;
}

.legal-info {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.legal-info h4 {
  font-size: 1.1rem;
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: 600;
}

.legal-info p {
  margin: 0.5rem 0;
  opacity: 0.8;
  font-size: 0.9rem;
}

.copyright {
  text-align: center;
  padding-top: 0.5rem;
}

.copyright p {
  margin: 0;
  opacity: 0.8;
  font-size: 0.9rem;
}

/* Responsive styles */
@media (max-width: 768px) {
  .landing-header {
    height: 50vh;
  }
  
  .centered-text-logo {
    font-size: 3rem;
  }
  
  .tagline {
    font-size: 1.2rem;
  }
  
  .company-intro h2 {
    font-size: 2rem;
  }
  
  .intro-text {
    font-size: 1.1rem;
  }
  
  .info-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .team-members {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .landing-header {
    height: 40vh;
  }
  
  .centered-text-logo {
    font-size: 2.5rem;
  }
  
  .company-intro {
    padding: 2rem 1rem;
  }
  
  .company-info,
  .team-section,
  .contact-section {
    padding: 2rem 1rem;
  }
}
