/* ---------- BODY & GLOBAL ---------- */
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', Arial, sans-serif;
  background-color: #fff;
  color: #1a1a1a;
  line-height: 1.6;
}

/* ---------- HERO SECTION ---------- */
.hero {
  position: relative;
  height: 620px; /* slightly reduced for better first-fold */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -40px; /* ✅ lift section slightly upwards */
}

.hero img.mainimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
  transition: transform 0.8s ease, filter 0.8s ease;
  will-change: transform;
}

.hero:hover img.mainimg {
  transform: scale(1.03);
  filter: brightness(0.75);
}

.hero-text {
  position: absolute;
  top: 48%; /* ✅ slightly higher position */
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  opacity: 0;
  transform: translate(-50%, -40%) translateY(40px);
  animation: heroFadeIn 1.2s ease forwards;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.2;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.7); /* ✅ clean shadow for readability */
}

.hero-text h4 {
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.5;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.6);
}

/* ---------- Animation ---------- */
@keyframes heroFadeIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -40%) translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -40%) translateY(0);
  }
}

/* ---------- RESPONSIVE ---------- */

/* Tablets */
@media (max-width: 900px) {
  .hero {
    height: 500px;
    margin-top: -20px;
  }

  .hero-text {
    top: 45%;
    padding: 0 20px;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-text h4 {
    font-size: 1.1rem;
  }
}

/* Mobile Phones */
@media (max-width: 480px) {
  .hero {
    height: 600px;
    margin-top: -49px;
  }

  .hero-text {
    max-width: 90%;
    top: 42%;
    padding: 0 10px;
  }

  .hero-text h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .hero-text h4 {
    font-size: 1rem;
    line-height: 1.4;
  }
}







/* ---------- VENUE SECTION ---------- */
.venue-section {
  background: #ffffff;
  padding: 60px 20px;
  color: #fff;
}

.venue-wrapper {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* ---------- Top Image ---------- */
.venue-top-image {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
}

.venue-top-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.venue-top-image img:hover {
  transform: scale(1.05);
}

/* ---------- Header ---------- */
.venue-header h2 {
  font-size: 2.6rem;
  margin-bottom: 12px;
  font-weight: 700;
  color: #000;
}

.venue-header .tagline {
  font-size: 1.2rem;
  color: #333;
  max-width: 720px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ---------- Intro ---------- */
.venue-intro p {
  font-size: 1.15rem;
  background: linear-gradient(90deg, #d90429, #0b0708);
  color: #fff;
  display: inline-block;
  padding: 14px 24px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  margin-bottom: 50px;
  font-weight: 500;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.venue-intro p:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ---------- Content Row ---------- */
.venue-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

/* ---------- Venue Cards ---------- */
.venue-card {
  background: linear-gradient(135deg, #d90429, #0b0708);
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  padding: 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
  color: #fff;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.venue-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.venue-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* ---------- Titles ---------- */
.details-card h3,
.amenities-card h3 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 600;
  display: inline-block;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 4px;
}

/* ---------- Feature List ---------- */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  font-size: 1rem;
  color: #f9f9f9;
  font-weight: 500;
  line-height: 1.65;
  transition: transform 0.3s ease, color 0.3s ease;
}

.feature-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #00ff88;
  font-weight: bold;
}

.feature-list li:hover {
  transform: translateX(4px);
  color: #ffffff;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .venue-content {
    grid-template-columns: 1fr;
  }

  .venue-card {
    text-align: center;
  }

  .details-card h3,
  .amenities-card h3 {
    text-align: center;
  }

  .feature-list li {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .venue-header h2 {
    font-size: 2rem;
  }

  .venue-header .tagline {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .venue-intro p {
    font-size: 1rem;
    padding: 12px 20px;
  }
}
