/* Home Page Specific Styles */
body {
  padding-top: 0px;
}

section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.sponsors-section {
  height: auto;
  min-height: 0%;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3));
  z-index: 2;
}

.hero-content {
  text-align: center;
  color: white;
  z-index: 3;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-top-content {
  padding-top: 10rem;
  text-align: center;
}

.hero-bottom-content {
  text-align: center;
  padding-bottom: 2rem;
}

.hero-title {
  color: white;
  font-family: 'Coolvetica', sans-serif;
  font-size: 12rem;
  font-weight: normal;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-tagline {
  font-family: 'Gontserrat', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  font-weight: 500;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-family: 'Coolvetica', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  font-weight: normal;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-arrow {
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.hero-arrow:hover {
  transform: translateY(-5px);
}

.arrow-down {
  font-size: 2rem;
  animation: bounce 2s infinite;
  color: white;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* About Section */
.about-section {
  padding: 5rem 0;
  background: white;
}

.section-title {
  font-family: 'Coolvetica', sans-serif;
  font-size: 6rem;
  font-weight: normal;
  margin-bottom: 1rem;
  color: #333;
}

.about-image-container {
  margin-bottom: 2rem;
  height: 100%;
  display: flex;
  align-items: center;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  flex: 1;
  display: flex;
  align-items: center;
}

.about-image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}


.image-placeholder {
  width: 100%;
  height: 300px;
  background: #f8f9fa;
  border: 2px dashed #dee2e6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  font-family: 'Gontserrat', sans-serif;
  border-radius: 8px;
}


.about-content {
  padding-top: 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.content-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.icon-placeholder {
  font-size: 1.5rem;
  margin-right: 1rem;
}

.content-header h3 {
  font-family: 'Coolvetica', sans-serif;
  font-size: 1.8rem;
  font-weight: normal;
  margin: 0;
  color: #333;
}

.content-block p {
  font-family: 'Gontserrat', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666;
}

/* Statistics Section */
.stats-content {
  padding-top: 4rem;
  /* background: #f8f9fa; */
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

.stat-number {
  font-family: 'Coolvetica', sans-serif;
  font-size: 3rem;
  font-weight: normal;
  color: #333;
  margin-bottom: 1rem;
}

.stat-card p {
  font-family: 'Gontserrat', sans-serif;
  font-size: 1rem;
  color: #666;
  margin: 0;
}

/* Image Breaker */
.image-breaker {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  overflow: hidden;
}

.breaker-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.breaker-image .image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.breaker-image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.breaker-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.breaker-title {
  font-family: 'Gontserrat', sans-serif;
  font-size: 4rem;
  font-weight: normal;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  margin: 0;
}

.highlight {
  color: #72d918;
  font-family: 'Gontserrat', sans-serif;
}

/* Methods Section */
.methods-section {
  padding: 5rem 0;
  background: white;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-description {
  font-family: 'Gontserrat', sans-serif;
  font-size: 1.2rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

/* Method Cards Container */
.method-cards-container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 85%;
  margin: 0 auto;
}

.method-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  height: 475px;
  position: relative;
}

.method-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.method-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.method-card-content {
  color: white;
  width: 45%;
  max-width: 45%;
  background: rgba(10, 10, 10, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 1.5rem;
}

.method-text-left {
  text-align: left;
  margin-right: auto;
}

.method-text-right {
  text-align: right;
  margin-left: auto;
}

.method-card-content h3 {
  font-family: 'Gontserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: white;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.method-card-content p {
  font-family: 'Gontserrat', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

/* FloraGuard Section */
.floraguard-section {
  padding: 5rem 0;
  background: linear-gradient(#fff 17.8773%,#72d918 100%);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

/* FloraGuard Cards Container */
.floraguard-cards-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  width: 100%;
  height: fit-content;
}

.feature-image {
  width: 100%;
  height: auto;
  overflow: hidden;
  flex-shrink: 0;
}

.feature-image-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
}


.feature-image .image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #72d918 0%, #4caf50 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
}

.feature-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-content h4 {
  font-family: 'Gontserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: normal;
  margin-bottom: 1rem;
  color: #333;
}

.feature-content p {
  font-family: 'Gontserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 4rem;
  }
  
  .hero-tagline {
    font-size: 0.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }

  .section-title {
    font-size: 2.5rem;
  }
  
  .breaker-title {
    font-size: 2.5rem;
  }
  
  /* .content-header {
    flex-direction: column;
    text-align: center;
  }
  
  .icon-placeholder {
    margin-right: 0;
    margin-bottom: 0.5rem;
  } */
  
  /* Adjust method cards for mobile */
  .method-cards-container {
    gap: 1.5rem;
    max-width: 100%;
  }
  
  .method-card {
    height: 350px;
  }
  
  .method-card-overlay {
    padding: 1.5rem;
  }
  
  .method-card-content {
    width: 70%;
    max-width: 70%;
    padding: 1rem;
  }
  
  .method-card-content h3 {
    font-size: 1.4rem;
  }
  
  .method-card-content p {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  
  .about-image-img {
    height: 200px;
  }
  
  .image-breaker {
    height: 40vh;
  }
  
  .breaker-image-img {
    object-position: center center;
  }
  
  /* FloraGuard cards responsive */
  .floraguard-cards-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .feature-card {
    width: 100%;
  }
  
  .feature-image {
    height: auto;
  }
  
  .feature-content {
    padding: 1.5rem;
  }
  
  .feature-content h4 {
    font-size: 1.3rem;
  }
  
  .feature-content p {
    font-size: 0.9rem;
  }
}

