@import url('https://fonts.googleapis.com/css2?family=Moon+Dance&display=swap');

:root {
  /* 🌿 Primary Colors */
  --color-primary: #2f8100;       /* Olive Green */
  --color-primary-light: #77c24c; /* Lighter Olive */
  --color-primary-dark: #1e4706;  /* Darker Olive */

  /* 🤍 Neutral / Background */
  --color-bg: #fffeef;            /* Cream Background */
  --color-bg-transparent: #f5f1e89e;/* Cream Background Transparent*/
  --color-bg-soft: #EAE3D2;       /* Section Background */
  --color-white: #FFFFFF;

  /* 🌳 Earthy Accents */
  --color-brown: #7A5C3E;         /* Wood Brown */
  --color-brown-light: #A67C52;   /* Light Brown */

  /* 🌅 Optional Accent */
  --color-accent: #D6A85A;        /* Warm Gold */

  /* 🖤 Text Colors */
  --color-text: #1e1e1e;          /* Main Text */
  --color-text-light: #333333;    /* Secondary Text */
  --color-heading: #6f2d00;
  --nav-texts: #2f8100;
  

  /* 🔤 Font Family */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --special-font: 'Moon Dance', cursive;
  



  /* 🔠 Font Sizes */
  --fs-h1: 48px;
  --fs-h2: 38px;
  --fs-h3: 24px;
  --fs-body: 16px;
  --fs-small: 14px;

  /* 📏 Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 44px;
  --spacing-xl: 40px;

  /* 🔲 Border Radius */
  --radius-sm: 6px;
  --radius-md: 30px;
  --radius-lg: 16px;

  /* 🌫️ Shadows */
  --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 6px 18px rgba(0, 0, 0, 0.12);

  /* ⏱️ Transitions */
  --transition: all 0.3s ease;
}


/* 🌍 Global Reset + Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 🌐 HTML Setup */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

/* 🏡 Body Styling */
body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  letter-spacing: 0.2px;

  /* Smooth rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* Better text rendering */
  text-rendering: optimizeLegibility;
}

/* 🖋️ Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  line-height: 1.3;
  margin-bottom: var(--spacing-md);
}

/* 📄 Paragraph */
p {
  margin-bottom: var(--spacing-md);
  color: var(--color-text-light);
}

/* 🔗 Links */
a {
  text-decoration: none;
  color: var(--color-primary);
  transition: var(--transition);
}

a:hover {
  color: var(--color-primary-light);
}

/* 🖼️ Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
}

/* 📋 Lists */
ul, ol {
  list-style: none;
}

/* 🧾 Buttons Reset */
button {
  border: none;
  outline: none;
  font-family: inherit;
  cursor: pointer;
}

/* 📦 Container (optional but useful) */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ✨ Section Spacing */
section {
  padding: var(--spacing-xl) 0;
}


.cmn-eyebrow {
  color: var(--color-primary);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
}



/*-------------------
|    Hero Section   |
-------------------*/

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* 🌿 Background Image Layer (Blur Applied Here) */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('/assets/images/homepage/hero-backgroun.jpg') no-repeat center/cover;
  filter: blur(3px);
  transform: scale(1.1); /* prevents edge cut after blur */
  z-index: -2;
}

/* 🏡 Content stays sharp */
.hero-content {
  position: relative;
  text-align: center;
  color: var(--color-white);
  max-width: 800px;
}

/* ✨ Heading */
.hero-content h1 {
  font-size: 48px;
  margin-bottom: var(--spacing-md);
  color: var(--color-white);
}

/* 📄 Subtitle */
.hero-content p {
  font-size: var(--fs-body);
  margin-bottom: var(--spacing-lg);
  color: #f1f1f1;
}

/* 🔘 Buttons */
.hero-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 11px 29px;
  border-radius: var(--radius-md);
  font-size: 15px;
  transition: var(--transition);
}

/* 🌿 Primary Button */
.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

/* 🌳 Outline Button */
.btn-outline {
  border: 1px solid var(--color-white);
  color: var(--color-white);
}

.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-primary);
}



/*---------------------
|    ticker Section   |
---------------------*/

.ticker {
  background: var(--color-primary-dark);
  color: var(--color-white);
  overflow: hidden;
  padding: 5px;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerMove 25s linear infinite;
}

.ticker-content {
  white-space: nowrap;
  padding: 10px 5px;
  font-size: 14px;
  letter-spacing: 1px;
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}




/*--------------------
|    Intro Section   |
--------------------*/


/* 🌿 Intro Section */
.intro {
  background: var(--color-bg);
}

/* 📦 Layout */
.intro-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* 🖼️ Image Collage */
.intro-images {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 180px 180px;
  gap: 15px;
}

/* Individual Images */
.intro-images .img {
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.intro-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

/* ✨ Hover zoom */
.intro-images img:hover {
  transform: scale(1.08);
}

/* 🧩 Collage Styling */
.img1 {
  grid-column: 1 / 2;
  grid-row: 1 / 3; /* big left image */
}

.img2 {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.img3 {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

/* 📄 Content */
.intro-content {
  flex: 1;
}

.intro-content h2 {
  font-family: var(--special-font);
  font-weight: 900;
  font-style: normal;
  font-size: var(--fs-h2);
  margin-bottom: var(--spacing-md);
}

.intro-content p {
  font-size: var(--fs-body);
  margin-bottom: var(--spacing-xl);
  color: var(--color-text-light);
}

/* 🔘 Button spacing */
.intro-content .btn {
    margin-top: var(--spacing-sm);
}

/* 🌿 Amenities Grid */
.amenities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
  margin: var(--spacing-md) 0;
}

/* ✨ Individual Item */
.amenity {
  font-size: 14px;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Optional hover effect */
.amenity:hover {
  color: var(--color-primary);
}

/* 🌿 Amenities */
.amenities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
  margin: var(--spacing-md) 0;
}

/* ✨ Item */
.amenity {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--color-text);
}

/* 🎯 Icon Style */
.amenity i {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
}

/* Hover effect */
.amenity:hover {
  color: var(--color-primary);
  transform: translateX(3px);
  transition: var(--transition);
}

/* 📱 Mobile Devices (up to 768px) */
@media (max-width: 768px) {

  /* 📦 Stack layout */
  .intro-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  /* 🖼️ Keep collage (but resized) */
  .intro-images {
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: 140px 140px;
    gap: 10px;
  }

  /* 🎨 Maintain collage structure */
  .img1 {
    grid-column: 1 / 2;
    grid-row: 1 / 3; /* tall image */
  }

  .img2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }

  .img3 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }

  /* Ensure proper scaling */
  .intro-images .img {
    height: 100%;
  }

  /* 📄 Content */
  .intro-content {
    text-align: center;
  }

  .intro-content h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  .intro-content p {
    font-size: 15px;
    line-height: 1.7;
  }

  /* 🌿 Amenities */
  .amenities {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 20px;
  }

  .amenity {
    justify-content: center;
    font-size: 13px;
  }

  .amenity i {
    width: 16px;
    height: 16px;
  }
}


/*---------------------------
|    Restaurent Section     |
---------------------------*/
.restaurant {
  position: relative;
  overflow: hidden;
}

/* 🌫️ Background Layer */
.restaurant-bg {
  position: absolute;
  inset: 0;
  background: url('../images/food1.jpg') center/cover no-repeat;
  filter: blur(8px);
  transform: scale(1.1);
  z-index: -2;
  transition: background-image 1s ease-in-out;
}

.restaurant-bg {
  transition: background-image 1s ease-in-out, opacity 0.5s;
}

/* 🤍 White overlay */
.restaurant::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.497);
  backdrop-filter: blur(6px);
  z-index: -1;
}

/* 📦 Layout */
.restaurant-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* 📄 Content */
.restaurant-content {
  flex: 1;
}

.section-tag {
  font-size: 14px;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.restaurant-content h2 {
  font-family: var(--special-font);
  font-size: var(--fs-h2);
  margin: 15px 0;
}

.restaurant-content p {
  font-size: var(--fs-body);
  margin-bottom: 15px;
  color: var(--color-text-light);
}

/* 🖼️ Carousel */
.restaurant-carousel {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease;
}

.carousel-track img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  flex-shrink: 0;
}


/* 📱 Mobile Devices (up to 768px) */
@media (max-width: 768px) {

  /* 📦 Stack layout */
  .restaurant-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  /* 📄 Content */
  .restaurant-content {
    text-align: center;
  }

  .restaurant-content h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  .restaurant-content p {
    font-size: 15px;
    line-height: 1.7;
  }

  /* 🔘 Button */
  .restaurant-content .btn {
    display: inline-block;
    margin-top: 10px;
  }

  /* 🖼️ Carousel */
  .restaurant-carousel {
    width: 100%;
    border-radius: 12px;
  }

  .carousel-track img {
    height: 220px; /* reduced for mobile */
  }

  /* 🌫️ Background blur optimization */
  .restaurant-bg {
    filter: blur(5px); /* lighter blur for performance */
  }
}


/*--------------------
|    Rooms Section   |
--------------------*/
.rooms {
  background: var(--color-bg);
}

.rooms-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.rooms-text h2 {
  font-family: var(--special-font);
  font-size: var(--fs-h2);
}

.rooms-text p {
  font-size: var(--fs-body);
  color: var(--color-text-light);
  margin-top: 5px;
}

/* 📦 Grid */
.rooms-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 150px;
  padding: 30px;
}

/* 🧩 Card */
.room-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

/* 🖼️ Image */
.room-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* 📄 Content */
.room-content {
  padding: 20px;
}


.room-rating {
  font-size: 14px;
  color: #d6a85a; /* gold */
  margin-bottom: 10px;
}


.room-content h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.room-info {
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: 10px;
}

/* 🌿 Amenities */
.room-amenities {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
}

.room-amenities i {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
}

/* 💰 Bottom */
.room-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Price */
.price {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-heading);
}

.price small {
  font-size: 12px;
  color: var(--color-text-light);
}

/* Button */
.room-card .btn {
  padding: 8px 16px;
  font-size: 14px;
  transform: translateX(3px);
}


.room-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.show-rooms-btn {
  background: var(--color-primary);
  color: var(--color-bg);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transform: translateX(3px);
}

/* Icon style */
.show-rooms-btn i {
  width: 16px;
  height: 16px;
  transition: var(--transition);
}

/* ✨ Hover animation */
.show-rooms-btn:hover i {
  transform: translateX(4px);
}

/* 👁️ View Button */
.view-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.view-btn i {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
}

.view-btn:hover {
  background: var(--color-primary);
}

.view-btn:hover i {
  color: #fff;
}


/* 📱 Mobile Devices (up to 768px) */
@media (max-width: 768px) {

  /* 📦 Header stack */
  .rooms-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .rooms-text h2 {
    font-size: 28px;
  }

  .rooms-text p {
    font-size: 14px;
  }

  /* Button full width feel */
  .show-rooms-btn {
    align-self: flex-start;
    font-size: 14px;
    padding: 8px 14px;
  }

  /* 📦 Grid → 1 column */
  .rooms-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0;
  }

  /* 🧩 Card */
  .room-card {
    border-radius: 12px;
  }

  /* 🖼️ Image */
  .room-card img {
    height: 180px;
  }

  /* 📄 Content */
  .room-content {
    padding: 15px;
  }

  .room-content h3 {
    font-size: 18px;
  }

  .room-info {
    font-size: 13px;
  }

  .room-rating {
    font-size: 13px;
  }

  /* 🌿 Amenities */
  .room-amenities {
    gap: 10px;
  }

  .room-amenities i {
    width: 16px;
    height: 16px;
  }

  /* 💰 Bottom → stack for better spacing */
  .room-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  /* 💰 Price */
  .price {
    font-size: 16px;
  }

  /* 🔘 Actions full width */
  .room-actions {
    width: 100%;
    justify-content: space-between;
  }

  /* WhatsApp button → bigger tap area */
  .room-card .btn {
    flex: 1;
    text-align: center;
    padding: 10px;
    font-size: 13px;
  }

  /* 👁️ View button */
  .view-btn {
    width: 36px;
    height: 36px;
  }

  .view-btn i {
    width: 16px;
    height: 16px;
  }
}


/* 🌿 Section */
.attractions {
  background: var(--color-primary-dark);
  color: var(--color-white);
}

/* 📦 Layout */
.attractions-wrapper {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

/* 🃏 Cards Container (HORIZONTAL SCROLL) */
.attraction-cards {
  flex: 1;
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
}

/* Hide scrollbar (optional clean look) */
.attraction-cards::-webkit-scrollbar {
  height: 6px;
}
.attraction-cards::-webkit-scrollbar-thumb {
  background: #2f8100;
  border-radius: 10px;
}

/* 🧩 Card */
.attraction-card {
  min-width: 260px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  transition: 0.3s;
}

.attraction-card:hover {
  transform: translateY(-6px);
}

/* 🖼️ Image */
.attraction-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

/* 📄 Content */
.card-content {
  padding: 15px;
  color: #222;
}

/* Header */
.card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-head h3 {
  font-size: 18px;
}

.distance {
  font-size: 12px;
  color: #2f8100;
}

/* Text */
.card-content p {
  font-size: 13px;
  color: #666;
  margin: 10px 0;
}

/* Link */
.card-content a {
  font-size: 13px;
  text-decoration: none;
  color: #2f8100;
  font-weight: 500;
}

/* 📄 RIGHT CONTENT */
.attraction-content {
  flex: 1;
  position: sticky;
  top: 100px;
}

.attraction-content h2 {
  font-size: var(--fs-h2);
  font-family: var(--special-font);
  margin-bottom: 15px;
  color: var(--color-white);
}

.attraction-content p {
  font-size: 15px;
  color: #dcdcdc;
  margin-bottom: 20px;
}

/* CTA */
.explore-btn {
  display: inline-flex;
  gap: 10px;
  border: 1px solid var(--color-white);
  color: var(--color-white);
  text-decoration: none;
  transition: 0.3s;
}

.explore-btn:hover {
  background: var(--color-white);
  color: var(--color-primary);
}


/* 📱 Mobile Devices (up to 768px) */
@media (max-width: 768px) {

  /* 📦 Stack layout */
  .attractions-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  /* 📄 Content comes first */
  .attraction-content {
    position: static; /* ❌ remove sticky */
    text-align: center;
  }

  .attraction-content h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  .attraction-content p {
    font-size: 14px;
  }

  /* 🃏 Cards */
  .attraction-cards {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory; /* 🔥 smooth swipe */
  }

  /* 🧩 Card */
  .attraction-card {
    min-width: 240px;
    scroll-snap-align: start;
  }

  /* 🖼️ Image */
  .attraction-card img {
    height: 140px;
  }

  /* 📄 Content */
  .card-content {
    padding: 12px;
  }

  .card-head h3 {
    font-size: 16px;
  }

  .distance {
    font-size: 11px;
  }

  .card-content p {
    font-size: 12px;
  }

  /* CTA button */
  .explore-btn {
    justify-content: center;
    padding: 10px 16px;
    font-size: 14px;
  }

  /* ❌ Remove hover effects (mobile) */
  .attraction-card:hover {
    transform: none;
  }
}




/*-------------------
|    blog Section   |
-------------------*/
.blog {
  background: var(--color-bg);
}

/* 📦 Header */
.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.blog-header h2 {
  font-family: var(--special-font);
  font-size: var(--fs-h2);
}

.blog-header p {
  font-size: var(--fs-body);
  color: var(--color-text);
}

/* 🔘 Blog Button */
.blog-btn {
  background: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
  font-size: var(--fs-body);

  display: inline-flex;
  align-items: center;
  gap: 6px;

  transition: 0.3s ease;
}

/* Hover */
.blog-btn:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

/* Arrow animation */
.blog-btn span {
  transition: 0.3s;
}

.blog-btn:hover span {
  transform: translateX(4px);
}

/* 📦 Grid */
.blog-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* 🧩 Card */
.blog-card {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: 0.3s;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* 🖼️ Image */
.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* 📄 Content */
.blog-content {
  padding: 20px;
}

.category {
  font-size: 12px;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-content h3 {
  font-size: 18px;
  margin: 10px 0;
}

.blog-content p {
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: 15px;
}

/* 🔗 Read More */
.blog-content a {
  font-size: 14px;
  text-decoration: none;
  color: #2f8100;
  font-weight: 500;
}


/* 📱 Mobile Devices (up to 768px) */
@media (max-width: 768px) {

  /* 📦 Header stack */
  .blog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .blog-header h2 {
    font-size: 28px;
  }

  .blog-header p {
    font-size: 14px;
  }

  /* 🔘 Button */
  .blog-btn {
    font-size: 14px;
    padding: 8px 14px;
  }

  /* 📦 Grid → single column */
  .blog-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* 🧩 Card */
  .blog-card {
    border-radius: 10px;
  }

  /* 🖼️ Image */
  .blog-card img {
    height: 180px;
  }

  /* 📄 Content */
  .blog-content {
    padding: 15px;
  }

  .category {
    font-size: 11px;
  }

  .blog-content h3 {
    font-size: 16px;
    line-height: 1.4;
  }

  .blog-content p {
    font-size: 13px;
    line-height: 1.6;
  }

  /* 🔗 Read More */
  .blog-content a {
    font-size: 13px;
  }

  /* ❌ Disable heavy hover */
  .blog-card:hover {
    transform: none;
    box-shadow: var(--shadow-soft);
  }
}

