/* Hero Section Styling */

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-text {
  flex: 1;
  max-width: 600px;
  padding-right: 40px;
}

.hero-text h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #fff;
  line-height: 1.1;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-image {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: rotate(2deg) translateY(-20px);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 2;
  animation: fadeIn 1s ease 1.2s forwards;
  opacity: 0;
}

.hero-scroll span {
  font-size: 0.9rem;
  letter-spacing: 1px;
  opacity: 0.8;
}

/* About section */
.about {
  background-color: #fff;
  position: relative;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-content {
  display: flex;
  gap: 50px;
  align-items: center;
}

.about-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transform: translateX(-20px);
}

.about-image img {
  display: block;
  width: 100%;
  height: auto;
}

.about-text {
  flex: 1;
  padding: 20px;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Sustainability section */
.sustainability {
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.sustainability-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.sustainability-content {
  display: flex;
  gap: 50px;
  align-items: center;
}

.sustainability-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.sustainability-image img {
  display: block;
  width: 100%;
  height: auto;
}

.sustainability-text {
  flex: 1;
  padding: 20px;
}

.sustainability-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.stat {
  flex: 1;
  min-width: 120px;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #008080;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .hero-text h2 {
    font-size: 3rem;
  }
  
  .about-content,
  .sustainability-content {
    gap: 30px;
  }
}

@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    padding-top: 80px;
  }
  
  .hero-text {
    padding-right: 0;
    text-align: center;
    max-width: 700px;
  }
  
  .hero-image {
    justify-content: center;
  }
  
  .hero-image img {
    max-width: 80%;
    transform: rotate(0);
  }
  
  .about-content,
  .sustainability-content {
    flex-direction: column;
  }
  
  .about-image,
  .sustainability-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    transform: none;
  }
  
  .sustainability-content {
    flex-direction: column-reverse;
  }
  
  .sustainability-stats {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .hero-text h2 {
    font-size: 2.2rem;
  }
  
  .hero-text p {
    font-size: 1rem;
  }
  
  .hero-image img {
    max-width: 100%;
  }
  
  .stat {
    min-width: 100%;
  }
}