/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Hero Section */
.hero-section {
  height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 20px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: blur(5px);
  transform: scale(1.1);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(66, 82, 43, 0.9) 0%,
    rgba(26, 43, 42, 0.8) 100%
  );
  z-index: 2;
}

.hero-content {
  max-width: 900px;
  animation: fadeInUp 1s ease-out;
  position: relative;
  z-index: 3;
}

.hero-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(36px, 8vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title span {
  color: #f5e6c0;
  text-shadow: 0 2px 12px rgba(203, 181, 139, 0.6);
}

.hero-description {
  font-size: clamp(18px, 2vw, 22px);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  line-height: 1.6;
}

.btn-hero-primary {
  background: var(--olive-green);
  color: var(--cream-white);
  padding: 16px 40px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 10px 20px rgba(66, 82, 43, 0.2);
  transition: all 0.3s ease;
  animation: borderGlow 2s infinite ease-in-out;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(203, 181, 139, 0.4);
  background: var(--olive-green);
  filter: brightness(1.2);
  color: white;
}

/* Combined Info Section */
.combined-info-section {
  padding: 100px 0;
  background: var(--section-bg);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.info-box {
  background: var(--card-bg);
  border-radius: 24px;
  padding: 50px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.info-box:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
  border-color: var(--olive-green);
}

.info-box-icon {
  width: 80px;
  height: 80px;
  background: var(--olive-green);
  color: var(--cream-white);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 25px;
  box-shadow: 0 8px 16px rgba(66, 82, 43, 0.2);
}

.info-box.alt .info-box-icon {
  background: var(--accent-blue);
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.2);
}

.info-box h3 {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 15px;
}

.info-box p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.info-box .highlight {
  font-size: 20px;
  font-weight: 700;
  color: var(--olive-green);
}

@media (max-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .combined-info-section {
    padding: 60px 0;
  }
  .info-box {
    padding: 40px 20px;
  }
}

/* Swiper Gallery Section */
.gallery-section {
  padding-bottom: 100px;
  overflow: hidden;
}

.gallery-slider {
  width: 100%;
  padding-top: 30px;
  padding-bottom: 50px;
}

.gallery-slide {
  width: 400px; /* Width of the cards in the row */
  height: 500px;
  border-radius: 15px;
  overflow: hidden;
  background: transparent;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-slide:hover {
  transform: translateY(-5px);
}

.gallery-slide img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  border-radius: 15px;
  transition: box-shadow 0.3s ease;
}

.gallery-slide:hover img {
  box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

.placeholder-slide {
  width: 100%;
  height: 100%;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-weight: 600;
  font-size: 1.2rem;
}

/* Swiper Navigation Customization */
.swiper-button-next, .swiper-button-prev {
  color: var(--olive-green);
  background: var(--cream-white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.swiper-button-next::after, .swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
}
.swiper-pagination-bullet-active {
  background: var(--olive-green);
}

@media (max-width: 768px) {
  .gallery-slide {
    width: 280px;
    height: 350px;
  }
  .gallery-title {
    font-size: 32px !important;
  }
}

/* ==========================================================================
   Custom Banners Styling (Olive Green & Cream)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap');

/* Green Banner */
.green-banner-section {
  padding: 40px 0;
  background: var(--bg-color);
}

.green-banner {
  background-color: #42522B;
  border-radius: 50px;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #F7F5EA;
  box-shadow: 0 8px 24px rgba(66, 82, 43, 0.2);
}

.banner-item {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  justify-content: center;
}

.banner-item.middle-item {
  flex: 1.5;
}

.banner-separator {
  width: 1px;
  height: 40px;
  background-color: rgba(203, 181, 139, 0.4);
  margin: 0 20px;
}

.banner-text {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
}

.banner-text.uppercase-text {
  text-transform: uppercase;
}

.banner-text.cursive-text {
  font-family: 'Dancing Script', cursive;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: #CBB58B;
  display: inline-block;
  margin: 0 5px;
}

.green-banner i {
  font-size: 20px;
  color: #CBB58B;
}

.green-banner svg {
  color: #CBB58B;
  fill: currentColor;
  flex-shrink: 0;
}

/* Cream Banner */
.cream-banner-section {
  padding: 40px 0;
  background: var(--bg-color);
}

.cream-banner {
  background-color: #F7F5EA;
  border: 2px solid #CBB58B;
  border-radius: 25px;
  padding: 25px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #42522B;
  box-shadow: 0 4px 15px rgba(203, 181, 139, 0.1);
}

.cream-banner-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  justify-content: center;
}

.cream-banner-separator {
  width: 1.5px;
  height: 30px;
  background-color: #CBB58B;
  margin: 0 15px;
}

.cream-banner-text {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cream-banner i {
  font-size: 22px;
  color: #42522B;
}

.cream-banner svg {
  color: #42522B;
  fill: currentColor;
  flex-shrink: 0;
}

/* Responsive Styles for Banners */
@media (max-width: 991px) {
  .green-banner {
    flex-direction: column;
    border-radius: 24px;
    padding: 20px 15px;
    gap: 12px;
  }
  .banner-separator {
    width: 85%;
    height: 1px;
    margin: 4px 0;
  }
  .banner-item.middle-item {
    flex-direction: column;
    gap: 8px;
  }
  .banner-item.middle-item svg {
    display: none; /* Hide decorative olive branches on mobile to save vertical space */
  }
  .banner-text {
    font-size: 12px;
  }
  .banner-text.cursive-text {
    font-size: 18px;
  }
  .green-banner i {
    font-size: 16px;
  }

  .cream-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 20px;
    padding: 18px 12px;
    gap: 16px 8px;
  }
  .cream-banner-separator {
    display: none; /* Hide separators in grid layout */
  }
  .cream-banner-item {
    gap: 8px;
  }
  .cream-banner-text {
    font-size: 12px;
  }
  .cream-banner i {
    font-size: 16px;
  }
}
