/* ======================================================
   HOME HERO SECTION - PREMIUM BAMBOO THEME
   ====================================================== */

.home-hero-section {
  position: relative;
  width: 100%;
  height: 90vh; /* Full hero height */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Crops video perfectly */
  transform: translate(-50%, -50%);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 110, 73, 0.65); /* Dark overlay for contrast */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 62px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;

  /* Warm bamboo-gold color for high contrast */
  color: #CFAF6B;  /* Natural Bamboo Gold */

  /* Extra readability over video */
  text-shadow: 2px 2px 12px rgba(0,0,0,0.6), 0 0 8px rgba(207,175,107,0.4);
}

.hero-subtitle {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.6;
  
  /* Dark, earthy accent with subtle contrast */
  color: #EDE3D8; 
  text-shadow: 1px 1px 10px rgba(0,0,0,0.6);
}

.hero-cta {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-soft-green));
  color: var(--color-white);
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
}

.hero-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: var(--shadow-hover);
}

/* ======================================================
   ANIMATIONS
   ====================================================== */

@keyframes shimmerText {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ======================================================
   RESPONSIVE
   ====================================================== */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 42px;
  }
  .hero-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .home-hero-section {
    height: 70vh;
  }
  .hero-title {
    font-size: 32px;
  }
  .hero-subtitle {
    font-size: 14px;
  }
  .hero-cta {
    padding: 10px 26px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .home-hero-section {
    height: 60vh;
  }
  .hero-title {
    font-size: 26px;
  }
  .hero-subtitle {
    font-size: 13px;
  }
  .hero-cta {
    padding: 8px 20px;
    font-size: 12px;
  }
}