* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    overflow-x: hidden;
}

.header {
    position: sticky;
    top: 0;
    z-index: 9999;
}

/* ================= CONTAINER ================= */
.container {
    width: 95%;
    max-width: 1400px;
    margin: auto;
}

/* ================= TOPBAR ================= */
.topbar {
    background: #e60000;
    padding: 10px 0;
    font-size: 13px;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-left,
.top-right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.topbar span,
.topbar a {
    color: #fff;
    text-decoration: none;
}

.btn-outline {
    border: 1px solid #fff;
    padding: 6px 12px;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #fff;
    color: #e60000;
}

.btn-green {
    background: #00a651;
    border: 1px solid #00a651;
    padding: 6px 12px;
    transition: 0.3s;
    color: #fff;
}

.btn-green:hover {
    background: #fff;
    color: #00a651;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 8px;
}

.social-icons a {
    width: 30px;
    height: 30px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #fff;
    color: #e60000;
}

/* ================= NAVBAR ================= */
.navbar {
    background: #fff;
    padding: 25px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 85px;
}

/* MENU */
.menu {
    display: flex;
    gap: 25px;
    align-items: center;
}

.menu a {
    text-decoration: none;
    color: #333;
    font-weight: 550;
    font-size: 15px;
    position: relative;
    transition: 0.3s;
}

.menu a:hover {
    color: #e60000;
}

/* Underline */
.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #e60000;
    transition: 0.3s;
}

.menu a:hover::after {
    width: 100%;
}

/* ================= DROPDOWN ================= */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;
    background: #fff;
    min-width: 180px;
    display: none;
    flex-direction: column;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.dropdown-menu a {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
}

.dropdown-menu a:hover {
    background: #f5f5f5;
}

.dropdown:hover .dropdown-menu {
    display: flex;
}

/* ================= HAMBURGER ================= */
.hamburger {
    display: none;
    font-size: 22px;
    cursor: pointer;
}
body.menu-open {
    overflow: hidden;
}

.menu-close {
    display: none;
}
/* ================= MOBILE ================= */
@media (max-width: 992px) {

    .topbar-inner {
        flex-direction: column;
        text-align: center;
    }

    .top-left,
    .top-right {
        justify-content: center;
    }

    .nav-inner {
        position: relative;
    }

    .menu {
    overflow-y: auto;   /* Makes menu scrollable */
    z-index: 1200;
}

.menu-close {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 22px;
    cursor: pointer;
}

    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 260px;
        background: #fff;
        flex-direction: column;
        padding: 80px 20px;
        transition: 0.4s;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    }

    .menu.active {
        right: 0;
    }

    .menu a {
        padding: 12px 0;
        border-bottom: 1px solid #eee;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .logo img {
        height: 55px;
    }
}

/* Topbar Contact Border */
.topbar .contact-item {
  border: 1px solid rgba(255,255,255,0.6);
  padding: 4px 12px;
  border-radius: 20px;
  margin-right: 12px;
  transition: 0.3s ease;
}

.topbar .contact-item:hover {
  background: #fff;
  color: #000;
}

/* Blinking Booking Tab */
.booking-blink {
  animation: blinkColor 1s infinite alternate;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 4px;
}

@keyframes blinkColor {
  0% {
    background-color: #ff0000;
    color: #fff;
  }
  100% {
    background-color: #ffcc00;
    color: #000;
  }
}

.navbar ul li a {
  position: relative;
  transition: 0.3s ease;
}

.navbar ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #c59d5f;
  transition: 0.3s ease;
}

.navbar ul li a:hover::after {
  width: 100%;
}


/* =========================
   PREMIUM HERO SLIDER
========================= */

.hero-slider {
  position: relative;
  
  width: 100%;
  aspect-ratio: 1348 / 575; /* exact image ratio */
  max-height: 85vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

/* Parallax Zoom Effect */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* IMPORTANT */
  transform: scale(1);
  transition: transform 8s ease-in-out;
}

.slide.active img {
  transform: scale(1.15);
}

/* Dark Overlay */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
  top: 0;
  left: 0;
}

/* Content */
.slide-content {
  position: absolute;
  bottom: 25%;
  left: 8%;
  color: #fff;
  max-width: 700px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.slide.active .slide-content {
  opacity: 1;
  transform: translateY(0);
}

.slide-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}

.slide-content p {
  font-size: 18px;
  letter-spacing: 2px;
}

/* Arrows */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
  backdrop-filter: blur(5px);
}

.nav-arrow:hover {
  background: #c59d5f;
}

.prev { left: 30px; }
.next { right: 30px; }

/* Dots */
.dots {
  position: absolute;
  bottom: 25px;
  width: 100%;
  text-align: center;
}

.dots span {
  width: 12px;
  height: 12px;
  margin: 0 6px;
  display: inline-block;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: 0.3s;
}

.dots span.active {
  background: #c59d5f;
  transform: scale(1.2);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {
  .slide-content h1 {
    font-size: 40px;
  }
}

@media (max-width: 992px) {
  .hero-slider {
    height: 80vh;
  }
  .slide-content {
    bottom: 20%;
  }
  .slide-content h1 {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .hero-slider {
    height: 65vh;
  }
  .slide-content {
    left: 5%;
    right: 5%;
    text-align: center;
  }
  .slide-content h1 {
    font-size: 26px;
  }
  .slide-content p {
    font-size: 14px;
  }
  .nav-arrow {
    width: 40px;
    height: 40px;
    font-size: 20px;
    line-height: 40px;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    height: 55vh;
  }
  .slide-content h1 {
    font-size: 20px;
  }
}


/* =======================
   RESTAURANT SECTION
======================= */

.section-title {
  text-align: center;
  font-size: 36px;
  letter-spacing: 2px;
  margin-bottom: 50px;
  position: relative;
  color: #6b2d1a;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 2px;
  background: #c59d5f;
  display: block;
  margin: 15px auto 0;
}

.restaurant-section {
  padding: 80px 5%;
  background: #f9f9f9;
}

.restaurant-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.restaurant-card {
  background: #fff;
  overflow: hidden;
  border-radius: 6px;
  transition: 0.4s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.restaurant-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 35px rgba(0,0,0,0.15);
}

.image-wrapper {
  overflow: hidden;
}

.image-wrapper img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.restaurant-card:hover img {
  transform: scale(1.1);
}

.restaurant-card h3 {
  padding: 20px;
  font-size: 18px;
  text-align: center;
}

/* Responsive */

@media (max-width: 992px) {
  .restaurant-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .restaurant-grid {
    grid-template-columns: 1fr;
  }
}


/* =======================
   ACCOMMODATION SECTION
======================= */

.accommodation-section {
  padding: 80px 5%;
  background: #fff;
}

.accommodation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.room-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  transition: 0.4s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.room-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 35px rgba(0,0,0,0.15);
}

.room-image {
  position: relative;
  overflow: hidden;
}

.room-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: 0.6s ease;
}

.room-card:hover img {
  transform: scale(1.1);
}

.room-number {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #6b2d1a;
  color: #fff;
  padding: 6px 10px;
  font-size: 14px;
  border-radius: 3px;
}

.room-info {
  padding: 20px;
  text-align: center;
}

.room-info h4 {
  font-size: 16px;
}

/* Responsive */

@media (max-width: 1200px) {
  .accommodation-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .accommodation-grid {
    grid-template-columns: 1fr;
  }
}



.facilities-section {
  padding: 100px 5%;
  background: linear-gradient(135deg, #3e3e3e, #1f1f1f);
  color: #fff;
  text-align: center;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 45px;
  margin-top: 60px;
}

.facility-item {
  transition: 0.4s ease;
  cursor: pointer;
}

.facility-icon {
  width: 85px;
  height: 85px;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #c59d5f;
  transition: 0.4s ease;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(5px);
}

.facility-item p {
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 500;
}

/* Hover */

.facility-item:hover .facility-icon {
  background: #c59d5f;
  color: #fff;
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(197,157,95,0.4);
}

.facility-item:hover p {
  color: #c59d5f;
}

/* Notes */

.facility-note {
  margin-top: 60px;
  font-size: 13px;
  opacity: 0.7;
}

/* Responsive */

@media (max-width: 1200px) {
  .facilities-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .facilities-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 500px) {
  .facilities-grid { grid-template-columns: repeat(2, 1fr); }
}


/* =========================
   PREMIUM GALLERY SECTION
========================= */

.premium-gallery {
  padding: 100px 5%;
  background: #f8f8f8;
  text-align: center;
}

.section-title {
  font-size: 32px;
  letter-spacing: 2px;
  margin-bottom: 60px;
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Same Size Images */

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 280px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* makes all same size */
  transition: 0.6s ease;
}

/* Hover Zoom */

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Subtle Shadow */

.gallery-item {
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.4s ease;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* =========================
   LIGHTBOX
========================= */

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox-img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 10px;
  animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.close {
  position: absolute;
  top: 40px;
  right: 60px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

/* Responsive */

@media (max-width: 1200px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
  .gallery-grid { grid-template-columns: 1fr; }
}



/* =========================
   RESORT GALLERY V2
========================= */

.resort-gallery-v2 {
  padding: 100px 5%;
  background: #f4f4f4;
}

.rg2-title {
  text-align: center;
  font-size: 34px;
  letter-spacing: 3px;
  margin-bottom: 60px;
  position: relative;
}

.rg2-title::after {
  content: "";
  width: 60px;
  height: 2px;
  background: #000;
  display: block;
  margin: 15px auto 0;
}

.rg2-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  gap: 25px;
}

/* Left side */

.rg2-left {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.rg2-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.rg2-item,
.rg2-full,
.rg2-right {
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.rg2-item img,
.rg2-full img,
.rg2-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

/* Heights (to match screenshot look) */

.rg2-item {
  height: 220px;
}

.rg2-full {
  height: 250px;
}

.rg2-right {
  height: 100%;
}

.rg2-right img {
  height: 100%;
}

/* Hover effect */

.rg2-item:hover img,
.rg2-full:hover img,
.rg2-right:hover img {
  transform: scale(1.08);
}

/* =========================
   LIGHTBOX V2
========================= */

.rg2-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.rg2-lightbox-img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 10px;
}

.rg2-close {
  position: absolute;
  top: 30px;
  right: 50px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

/* Responsive */

@media (max-width: 992px) {
  .rg2-grid {
    grid-template-columns: 1fr;
  }

  .rg2-right {
    height: 400px;
  }
}

@media (max-width: 600px) {
  .rg2-item {
    height: 180px;
  }

  .rg2-full {
    height: 200px;
  }

  .rg2-right {
    height: 300px;
  }
}


/* ================= CLIENT SLIDER ================= */

.client-scroll-section {
  padding: 80px 5%;
  background: #f8f8f8;
  text-align: center;
}

.cs-title {
  font-size: 30px;
  margin-bottom: 50px;
  letter-spacing: 2px;
}

.cs-slider {
  overflow: hidden;
  position: relative;
}

.cs-track {
  display: flex;
  width: max-content;
  animation: scrollClients 30s linear infinite;
}

.cs-item {
  width: 200px;
  margin: 0 30px;
}

.cs-item img {
  width: 100%;
  height: 80px;
  object-fit: contain;
  filter: grayscale(0%);
  transition: 0.3s;
}

.cs-item img:hover {
  filter: grayscale(0%);
}

@keyframes scrollClients {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}


/* ================= ACHIEVEMENT + REVIEW ================= */

.ar-section {
  padding: 100px 5%;
  background: #ffffff;
}

.ar-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.ar-title {
  font-size: 26px;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

/* Achievement Slider */

.achievement-slider {
  position: relative;
  height: 350px;
}

.ach-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 1s ease;
}

.ach-slide.active {
  opacity: 1;
}


/* Review Slider */

.review-slider {
  position: relative;
  min-height: 250px;
}

.review-item {
  position: absolute;
  opacity: 0;
  transition: opacity 1s ease;
}

.review-item.active {
  opacity: 1;
}

.stars {
  color: #f4b400;
  font-size: 18px;
  margin-bottom: 15px;
}

.review-item p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.review-item h4 {
  color: #7a3e2d;
  font-weight: 600;
}

/* Responsive */

@media(max-width: 992px){
  .ar-container {
    grid-template-columns: 1fr;
  }
}


/* ================= LUXURY SPACED FOOTER ================= */

.mf-footer {
  background: #111;
  color: #ddd;
  padding: 110px 0 0;
  font-size: 15px;
}

.mf-container {
  width: 85%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 80px;   /* Increased spacing */
}

/* Headings */
.mf-heading {
  color: #fff;
  font-size: 20px;
  margin-bottom: 35px; /* more space */
  letter-spacing: 1px;
  font-weight: 600;
  position: relative;
}

.mf-heading::after {
  content: "";
  width: 50px;
  height: 2px;
  background: #7a3e2d;
  display: block;
  margin-top: 12px;
}

/* Paragraph text */
.mf-text,
.mf-col p {
  line-height: 1.9;  /* better breathing */
  margin-bottom: 18px;
  color: #bbb;
}

/* Links */
.mf-links {
  list-style: none;
  padding: 0;
}

.mf-links li {
  margin-bottom: 14px; /* increased */
}

.mf-links a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s ease;
}

.mf-links a:hover {
  color: #7a3e2d;
  padding-left: 6px;
}

/* Social */
.mf-social {
  margin-top: 25px;
}

.mf-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
  width: 42px;
  height: 42px;
  background: #1a1a1a;
  border-radius: 50%;
  color: #fff;
  transition: 0.3s;
}

.mf-social a:hover {
  background: #7a3e2d;
  transform: translateY(-3px);
}

/* Map */
.mf-map iframe {
  width: 100%;
  height: 240px; /* increased */
  border: none;
  border-radius: 8px;
}

/* Bottom bar */
.mf-bottom {
  text-align: center;
  padding: 30px 0;
  background: #7a3e2d;
  margin-top: 90px;  /* more separation */
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* Responsive */
@media(max-width: 1200px) {
  .mf-container {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

@media(max-width: 600px) {
  .mf-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .mf-footer {
    padding: 80px 0 0;
  }
}



/*about page*/

.about-hero {
  background: url('web-assets/img/aboutbanner.png') center/cover no-repeat;
  height: 420px;
  position: relative;
  display: flex;
  align-items: center;
}

.about-overlay {
  background: rgba(0,0,0,0.55);
  width: 100%;
  padding-left: 8%;
  color: #fff;
}

.about-overlay h1 {
  font-size: 52px;
  font-weight: 600;
}

.about-overlay p {
  font-size: 18px;
  margin-top: 10px;
  letter-spacing: 1px;
}

.about-story {
  padding: 100px 0;
}

.about-story .container {
  width: 85%;
  margin: auto;
  display: flex;
  gap: 70px;
  align-items: center;
}

.story-left img {
  width: 100%;
  border-radius: 12px;
}

.story-right h2 {
  font-size: 32px;
  margin-bottom: 25px;
  color: #7a3e2d;
}

.story-right p {
  line-height: 1.9;
  margin-bottom: 18px;
  color: #555;
}

.about-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
  background: #7a3e2d;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.3s;
}

.about-btn:hover {
  background: #000;
}



/* ============================= */
/*        ABOUT FEATURES         */
/* ============================= */

.about-features {
  background: #f7f7f7;
  padding: 100px 0;
  text-align: center;
}

.about-features .container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.about-features h2 {
  font-size: 34px;
  margin-bottom: 60px;
  color: #7a3e2d;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.feature-box {
  padding: 45px 25px;
  background: #fff;
  border-radius: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.feature-box i {
  font-size: 42px;
  color: #7a3e2d;
  margin-bottom: 20px;
}

.feature-box h4 {
  margin-bottom: 12px;
  font-size: 18px;
}

.feature-box p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}


/* ============================= */
/*         ABOUT STATS           */
/* ============================= */

.about-stats {
  background: #7a3e2d;
  color: #fff;
  padding: 90px 0;
  text-align: center;
}

.stats-container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat h3 {
  font-size: 42px;
  margin-bottom: 10px;
}

.stat p {
  font-size: 15px;
  letter-spacing: 1px;
  opacity: 0.9;
}


/* ============================= */
/*         RESPONSIVE            */
/* ============================= */

/* Tablet */
@media (max-width: 992px) {

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

}

/* Mobile */
@media (max-width: 576px) {

  .about-features {
    padding: 70px 0;
  }

  .about-features h2 {
    font-size: 26px;
    margin-bottom: 40px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .stats-container {
    grid-template-columns: 1fr;
  }

  .stat h3 {
    font-size: 32px;
  }

}



.about-content-full {
  padding: 110px 0;
  background: #fff;
}

.about-content-full .container {
  width: 85%;
  margin: auto;
}

.about-layout {
  display: flex;
  gap: 70px;
  align-items: flex-start;
}

/* LEFT IMAGES */
.about-images {
  width: 45%;
}

.img-big {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
}

.img-row {
  display: flex;
  gap: 20px;
}

.img-row img {
  width: 50%;
  border-radius: 12px;
}

/* RIGHT TEXT */
.about-text {
  width: 55%;
}

.about-heading {
  font-size: 34px;
  margin-bottom: 35px;
  color: #7a3e2d;
  position: relative;
}

.about-heading::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #7a3e2d;
  display: block;
  margin-top: 15px;
}

/* Paragraph Styling */
.about-paragraphs p {
  line-height: 1.95;
  margin-bottom: 22px;
  color: #555;
  font-size: 16px;
}

/* First Paragraph Highlight */
.first-para {
  font-size: 18px;
  font-weight: 500;
  color: #222;
}

/* Drop Cap Style */
.first-para::first-letter {
  font-size: 42px;
  font-weight: 700;
  color: #7a3e2d;
  float: left;
  margin-right: 8px;
  line-height: 1;
}

/* Responsive */
@media(max-width: 992px) {
  .about-layout {
    flex-direction: column;
  }

  .about-images,
  .about-text {
    width: 100%;
  }
}

/*accomodation*/


/* ============================= */
/* PROFESSIONAL ACCOMMODATION   */
/* ============================= */

.accom-section {
  padding: 100px 0;
  background: #f4f4f4;
}

.accom-container {
  width: 88%;
  margin: auto;
}

.accom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
}

/* CARD */
.accom-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.accom-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/* SLIDER */
.accom-slider {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.accom-slides {
  display: flex;
  transition: transform 0.6s ease;
  height: 100%;
}

.accom-slide {
  min-width: 100%;
  height: 100%;
}

.accom-slide img,
.accom-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT */
.accom-content {
  padding: 35px;
}

.accom-content h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #222;
}

.accom-content ul {
  padding-left: 18px;
  margin-bottom: 25px;
}

.accom-content ul li {
  margin-bottom: 8px;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* BUTTONS */
.accom-buttons {
  display: flex;
  gap: 15px;
}

.accom-book {
  background: #7a3e2d;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
}

.accom-book:hover {
  background: #000;
}

.accom-brochure {
  border: 1px solid #7a3e2d;
  color: #7a3e2d;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
}

.accom-brochure:hover {
  background: #7a3e2d;
  color: #fff;
}

/* MOBILE */
@media(max-width: 900px) {
  .accom-grid {
    grid-template-columns: 1fr;
  }
}
.media-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slide-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* ============================= */
/* RESORT POLICY SECTION        */
/* ============================= */
/* ============================= */
/* PREMIUM POLICY SECTION       */
/* ============================= */
/* ========================= */
/* ============================= */
/* RESORT INFO SECTION FINAL FIX */
/* ============================= */

.resort-info-section {
  width: 100%;
  padding: 80px 0;
  background: #f4f4f4;
}

.resort-info-wrapper {
  width: 88%;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: flex-start;
  box-sizing: border-box;
}

/* LEFT SIDE */
.resort-info-left {
  flex: 3;
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  box-sizing: border-box;
}

.resort-info-left h2 {
  font-size: 22px;
  margin-bottom: 25px;
  color: #222;
}

.resort-info-left ul {
  padding-left: 18px;
}

.resort-info-left li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* RIGHT SIDE */
.resort-info-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  box-sizing: border-box;
}

.info-card h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #222;
}

.info-card p,
.info-card li {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

.info-card ul {
  padding-left: 18px;
}

/* ============================= */
/* MOBILE FIX */
/* ============================= */

@media (max-width: 992px) {

  .resort-info-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .resort-info-left,
  .resort-info-right {
    width: 100%;
  }

}

@media (max-width: 480px) {

  .resort-info-section {
    padding: 50px 0;
  }

  .resort-info-wrapper {
    width: 92%;
  }

  .resort-info-left {
    padding: 25px;
  }

  .info-card {
    padding: 20px;
  }

}



/* ============================= */
/* SPECIAL OFFER PAGE */
/* ============================= */

.offer-section {
  padding: 80px 0;
  background: #f5f5f5;
}

.offer-container {
  width: 90%;
  max-width: 1250px;
  margin: auto;
}

.offer-row {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.offer-image {
  width: 32%;
}

.offer-image img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.offer-content {
  width: 68%;
}

.offer-content h2 {
  font-size: 24px;
  letter-spacing: 1px;
  color: #7a3e2d;
  margin-bottom: 15px;
  font-weight: 700;
}

.offer-tagline {
  font-size: 16px;
  margin-bottom: 25px;
  color: #444;
}

.offer-columns {
  display: flex;
  gap: 50px;
}

.offer-col {
  width: 50%;
}

.offer-col h4 {
  margin-bottom: 15px;
  font-size: 16px;
}

.offer-col h5 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 15px;
}

.offer-col ul {
  padding-left: 18px;
  margin-bottom: 15px;
}

.offer-col li {
  margin-bottom: 8px;
  font-size: 14px;
  color: #555;
}

.advance-book {
  margin-top: 10px;
  font-size: 14px;
  color: #7a3e2d;
}

.limited-offer {
  margin-top: 15px;
  font-size: 14px;
  font-weight: 500;
  color: #7a3e2d;
}

.offer-divider {
  margin: 60px 0;
  border: none;
  height: 1px;
  background: #ccc;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {

  .offer-row {
    flex-direction: column;
  }

  .offer-image,
  .offer-content {
    width: 100%;
  }

  .offer-columns {
    flex-direction: column;
    gap: 30px;
  }

  .offer-col {
    width: 100%;
  }

}

@media (max-width: 480px) {

  .offer-section {
    padding: 50px 0;
  }

  .offer-content h2 {
    font-size: 20px;
  }

  .offer-tagline {
    font-size: 14px;
  }

}



/* CORPORATE SECTION */
.corporate-section {
  padding: 60px 20px;
  background: #f5f5f5;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.corporate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARD */
.corporate-card {
  background: #fff;
  border: 1px solid #c8b6a6;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.corporate-card:hover {
  transform: translateY(-5px);
}

.corporate-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 20px;
  text-align: center;
}

.card-body h3 {
  font-size: 16px;
  color: #7a3d2b;
  margin-bottom: 15px;
  font-weight: 600;
  letter-spacing: 1px;
}

.card-body p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .corporate-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .corporate-grid {
    grid-template-columns: 1fr;
  }
}



.conference-section {
  padding: 80px 5%;
}





.hall-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 100px;
}

.hall-row.reverse {
  flex-direction: row-reverse;
}

.hall-content {
  flex: 1;
}

.hall-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #7b2d2d;
}

.hall-content p {
  margin-bottom: 20px;
}

.hall-content ul {
  padding-left: 18px;
  line-height: 1.8;
}

.hall-slider {
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
}

.hall-slider img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

@media (max-width: 992px) {
  .hall-row {
    flex-direction: column;
  }

  .hall-row.reverse {
    flex-direction: column;
  }

  .hall-slider img {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .slider {
    aspect-ratio: 4/3;
  }
}

.day-package {
  padding: 80px 5%;
}

/* ===== TOP BOX ===== */

.package-box {
  max-width: 900px;
  margin: auto;
  background: #f5f5f5;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-align: center;
}

.package-box h2 {
  color: #7b2d2d;
  margin-bottom: 20px;
}

.package-box p {
  font-size: 14px;
  margin-bottom: 10px;
}

/* ===== FACILITY ===== */

.facility-section {
  text-align: center;
  margin-top: 60px;
}

.facility-section h3 {
  color: #7b2d2d;
  margin-bottom: 30px;
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.facility-item img {
  width: 100%;
  border-radius: 6px;
  height: 120px;
  object-fit: cover;
}

.facility-item p {
  margin-top: 8px;
  font-size: 13px;
}

.facility-desc {
  max-width: 1000px;
  margin: auto;
  font-size: 14px;
  line-height: 1.6;
}

/* ===== BOTTOM SECTION ===== */

.day-bottom {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 60px;
}

.day-bottom p{
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 20px;
  color: #444;
  text-align: center;
}

.map-img {
  flex: 1;
}

.map-img img {
  width: 100%;
  border-radius: 8px;
}

.bottom-content {
  flex: 1;
}

.bottom-content h3 {
  color: #7b2d2d;
  margin-bottom: 20px;
}

@media (max-width: 992px) {

  .facility-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .day-bottom {
    flex-direction: column;
  }
}

@media (max-width: 576px) {

  .facility-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .package-box {
    padding: 25px;
  }

}

/* ===== FAMILY PICNIC SECTION ===== */

.family-picnic-section {
  padding: 90px 5%;
  background: #fafafa;
}

.family-container {
  max-width: 950px;
  margin: auto;
}

.family-picnic-section h3 {
  font-size: 28px;
  color: #7b2d2d;
  margin-bottom: 30px;
  text-align: center;
}

.family-picnic-section p {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 20px;
  color: #444;
  text-align: center;
}

/* ===== BLOG SECTION ===== */

.blog-section {
  padding: 100px 5%;
  background: #fff;
}

.blog-container {
  max-width: 1200px;
  margin: auto;
}

.blog-section h3 {
  text-align: center;
  font-size: 30px;
  color: #7b2d2d;
  margin-bottom: 60px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-info {
  padding: 20px;
}

.blog-info h4 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #222;
}

.blog-info p {
  font-size: 14px;
  color: #666;
}

/* ===== POPUP ===== */

.blog-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.blog-popup-card {
  background: #fff;
  width: 70%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  border-radius: 15px;
  position: relative;
  animation: popupFade 0.3s ease;
}

@keyframes popupFade {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.close-popup {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 30px;
  cursor: pointer;
  color: #7b2d2d;
}

.blog-popup-card h2 {
  margin-bottom: 20px;
  color: #7b2d2d;
}

@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-popup-card {
    width: 90%;
  }
}

@media (max-width: 576px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-popup-card h3 {
  margin-bottom: 20px;
  font-size: 24px;
}

.blog-popup-card h4 {
  margin-top: 20px;
  margin-bottom: 10px;
  color: #7b2d2d;
}

.blog-popup-card p {
  line-height: 1.8;
  margin-bottom: 15px;
}

.blog-popup-card ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

/* ===== Dining Section Only ===== */
/* ===== DINING SECTION EXACT DESIGN ===== */
/* ================= DINING SECTION ================= */

.dining-wrapper {
  padding: 80px 5%;
  background: #fff;
}

.dining-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT SIDE */

.dining-left {
  flex: 1;
}
/* ===== SLIDER FIXED VERSION ===== */

/* ===== FINAL WORKING SLIDER ===== */
/* ===== FINAL WORKING SLIDER ===== */
.custom-slider {
  position: relative;
  width: 100%;
  height: 420px; /* desktop default */
  border-radius: 12px;
  overflow: hidden;
}

.custom-slider img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  opacity: 0;
  animation: fadeSlider 9s infinite;
}

/* Animation delays */
.custom-slider img:nth-child(1) { animation-delay: 0s; }
.custom-slider img:nth-child(2) { animation-delay: 3s; }
.custom-slider img:nth-child(3) { animation-delay: 6s; }

@keyframes fadeSlider {
  0%, 40%, 100% { opacity: 0; }
  10%, 30% { opacity: 1; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .custom-slider {
    height: 300px; /* tablet */
  }
}

@media (max-width: 768px) {
  .custom-slider {
    height: 260px; /* mobile */
  }
  .custom-slider img {
    position: relative; /* important: let images flow normally in mobile */
    opacity: 1; /* make visible without animation if needed */
    animation: none;
  }
}

@media (max-width: 768px) {

}
.custom-slider {
  display: block !important;
  height: 300px !important;
}
/* Mobile */
@media (max-width: 768px) {
  .dining-container {
    flex-direction: column;
    gap: 30px;
  }


}

/* Animation */
.custom-slider img:nth-child(1) { animation-delay: 0s; }
.custom-slider img:nth-child(2) { animation-delay: 3s; }
.custom-slider img:nth-child(3) { animation-delay: 6s; }

@keyframes fadeSlider {
  0% { opacity: 0; }
  10% { opacity: 1; }
  30% { opacity: 1; }
  40% { opacity: 0; }
  100% { opacity: 0; }
}
/* RIGHT SIDE */

.dining-right {
  flex: 1;
}

.dining-right h2 {
  font-size: 32px;
  color: #7a2e2e;
  font-weight: 600;
  line-height: 1.3;
}

.title-line {
  width: 120px;
  height: 3px;
  background: #7a2e2e;
  margin: 15px 0 25px;
}

.dining-list {
  list-style: none;
  padding: 0;
}

.dining-list li {
  margin-bottom: 15px;
  padding-left: 28px;
  position: relative;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.dining-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #2e8b57;
  font-weight: bold;
}

.dining-buttons {
  margin-top: 25px;
}

.btn-main {
  background: #7a2e2e;
  color: #fff;
  padding: 12px 22px;
  text-decoration: none;
  border-radius: 6px;
  margin-right: 15px;
  display: inline-block;
  transition: 0.3s;
}

.btn-main:hover {
  background: #5e2222;
}

.btn-outline {
  border: 1px solid #7a2e2e;
  color: #7a2e2e;
  padding: 12px 22px;
  text-decoration: none;
  border-radius: 6px;
  display: inline-block;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #7a2e2e;
  color: #fff;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

  .dining-container {
    flex-direction: column;
    gap: 40px;
  }

  .custom-slider {
    height: 300px;
  }

  .dining-right h2 {
    font-size: 24px;
  }

}

/* ================= TOP INTRO SECTION ================= */

.dining-intro {
  padding: 100px 5% 60px;
  background: #fdfaf6;
  text-align: center;
}

.intro-container {
  max-width: 900px;
  margin: auto;
}

.dining-intro p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.dining-intro strong {
  color: #7a2e2e;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .dining-intro {
    padding: 70px 6% 40px;
  }

  .dining-intro p {
    font-size: 16px;
  }
}


/* ================= ACTIVITIES PAGE ================= */

.activities-page {
  padding: 120px 5% 60px;
  background: #f7f7f7;
}

/* Intro */
.activities-intro {
  max-width: 1100px;
  margin: auto;
  text-align: left;
  margin-bottom: 40px;
}

.activities-intro p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

/* Section Title */
.section-title {
  text-align: center;
  font-size: 32px;
  color: #7a2e2e;
  margin-bottom: 40px;
  font-weight: 600;
}

/* Grid */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.activity-card {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.activity-card:hover {
  transform: translateY(-5px);
}

/* Image */
.activity-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
}

/* Title */
.activity-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 700;
}

/* Text */
.activity-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {

  .activities-page {
    padding: 100px 6% 50px;
  }

  .activities-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 24px;
  }

  .activity-card img {
    height: 200px;
  }

}



/* ================= EVENTS PAGE ================= */

.events-page {
  padding: 120px 5% 60px;
  background: #f7f7f7;
}

.event-block {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 80px;
}

.event-block.reverse {
  flex-direction: row-reverse;
}

/* ===== SLIDER ===== */

.event-slider {
  flex: 1;
   position: relative;
  width: 100%;
  aspect-ratio: 16/9;   /* keeps height automatically */
  border-radius: 12px;
  overflow: hidden;
}

.event-slider .slides img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.event-slider .slides img.active {
  opacity: 1;
}

/* ===== CONTENT ===== */

.event-content {
  flex: 1;
}

.event-content h2 {
  font-size: 32px;
  color: #7a2e2e;
  margin-bottom: 10px;
}

.event-content h4 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #444;
}

.event-content ul {
  list-style: none;
  padding: 0;
}

.event-content ul li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  font-size: 15px;
  color: #555;
}

.event-content ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2e8b57;
  font-weight: bold;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
  .event-block {
    flex-direction: column;
  }

  .event-block.reverse {
    flex-direction: column;
  }

  .event-slider {
    height: 300px;
    width: 100%;
  }

  .event-content h2 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {

  .events-page {
    padding: 100px 6% 50px;
  }

  .event-slider {
    height: 240px;
  }

  .event-content h4 {
    font-size: 16px;
  }

}


.wedding-page {
  padding: 120px 5% 60px;
  background: #f7f7f7;
}


/* ================= WEDDING GALLERY ================= */

.wedding-gallery {
  padding: 80px 5%;
  background: #ffffff;
}

.gallery-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  font-weight: 600;
}

/* Grid Layout */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Gallery Item */

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;   /* Makes all images same size */
  border-radius: 12px;
  cursor: pointer;
  transition: 0.4s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* Tablet */

@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item img {
    height: 180px;
  }
}

/* ================= LIGHTBOX ================= */

.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding: 40px;
  background: rgba(0,0,0,0.9);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 85%;
  margin-top: 40px;
  border-radius: 10px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

/* ================= NEW YEAR PAGE ================= */

.newyear-page {
  padding: 120px 5% 60px;
  background: #f5f5f5;
}

/* Reverse Layout for Second Block */

.event-block {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 80px;
}

.event-block.reverse {
  flex-direction: row-reverse;
}

/* Responsive */

@media (max-width: 991px) {
  .event-block,
  .event-block.reverse {
    flex-direction: column;
  }
}



/* ================= NEW YEAR GALLERY ================= */

.newyear-gallery {
  padding: 80px 5%;
  background: #ffffff;
  text-align: center;
}

.newyear-gallery .gallery-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 50px;
}

/* Grid */

.newyear-gallery .gallery-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Images */

.newyear-gallery .gallery-item {
  width: 350px;
  overflow: hidden;
  border-radius: 12px;
}

.newyear-gallery .gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;   /* Makes all images same size */
  border-radius: 12px;
  cursor: pointer;
  transition: 0.4s ease;
}

.newyear-gallery .gallery-item img:hover {
  transform: scale(1.05);
}

/* Mobile */

@media (max-width: 768px) {
  .newyear-gallery .gallery-item {
    width: 100%;
  }

  .newyear-gallery .gallery-item img {
    height: 220px;
  }
}



/* ================= LIGHTBOX ================= */

.ny-lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding: 40px;
  background: rgba(0,0,0,0.9);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
}

.ny-lightbox img {
  max-width: 90%;
  max-height: 85%;
  margin-top: 40px;
  border-radius: 10px;
}

.ny-close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}


/* ================= GALLERY SECTION ================= */

.gallery-section {
  padding: 120px 5% 80px;
  background: #f8f8f8;
}

/* Filter Buttons */

.gallery-filters {
  text-align: center;
  margin-bottom: 50px;
}

.filter-btn {
  background: #8b3a2e;
  color: #fff;
  border: none;
  padding: 10px 18px;
  margin: 5px;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
  background: #5c1f17;
}

/* Grid */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* Images */

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;   /* ALL SAME SIZE */
  border-radius: 12px;
  cursor: pointer;
  transition: 0.4s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* Lightbox */

.lightbox {
  display: none;
  position: fixed;
  background: rgba(0,0,0,0.9);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-align: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 90%;
  max-height: 85%;
  margin-top: 60px;
  border-radius: 10px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

/* HERO SECTION */
.contact-hero {
    padding: 100px 0 80px;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('web-assets/img/contact-bg.jpg') center/cover;
    color: #fff;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* MAIN SECTION */
.contact-main {
    padding: 100px 0;
    background: #f8f9fb;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

/* LEFT SIDE CARDS */
.info-card {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #7b3f2f;
}

/* FORM CARD */
.form-card {
    background: #fff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.07);
}

.form-card h2 {
    margin-bottom: 30px;
    font-size: 26px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-card input,
.form-card textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 15px;
    transition: 0.3s;
}

.form-card input:focus,
.form-card textarea:focus {
    border-color: #7b3f2f;
    outline: none;
}

/* PREMIUM BUTTON */
.premium-btn {
    background: linear-gradient(135deg, #7b3f2f, #a0522d);
    color: #fff;
    padding: 14px 35px;
    border-radius: 40px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.premium-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(123,63,47,0.4);
}

/* RESORT LOCATION */
.resort-location {
    padding: 80px 0;
    text-align: center;
    background: #fff;
}

.resort-location h2 {
    margin-bottom: 15px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .form-row {
        flex-direction: column;
    }

    .contact-hero h1 {
        font-size: 36px;
    }
}


/* ===============================
   FLOATING BUTTONS
================================ */
/* ===============================
   FLOATING BUTTONS
================================ */

.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 180px; /* Increased space for future chatbot */
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9999;
}

.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

.float-btn:hover {
    transform: translateY(-6px);
}

/* Call */
.call-btn {
    background: linear-gradient(135deg, #e53935, #b71c1c);
}

/* WhatsApp */
.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
}


/* ===============================
   BOOKING BUTTON
================================ */

.booking-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #ff5722, #d84315);
    color: #fff;
    padding: 16px 10px;
    font-weight: 600;
    letter-spacing: 1px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    text-decoration: none;
    border-radius: 10px 0 0 10px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    z-index: 9999;
}


/* ===============================
   MOBILE RESPONSIVE
================================ */

@media (max-width: 768px) {

    /* Hide vertical booking button on mobile */
    .booking-btn {
        display: none;
    }

    /* Floating Call + WhatsApp */
    .floating-buttons {
        right: 2px;
        bottom: 95px; /* move up slightly */
        gap: 12px;
    }

    .float-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    /* New Bottom Booking Button */
    .mobile-booking-btn {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(135deg, #ff5722, #d84315);
        color: #fff;
        padding: 14px 26px;
        border-radius: 30px;
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        box-shadow: 0 8px 20px rgba(0,0,0,0.25);
        z-index: 9999;
    }
}