@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');
:root{
  --topbar:#2f2f33;
  --yellow:#f3a531;
  --topbar-h:48px;
  --navbar-h:85px;
}

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto;
  padding-top:calc(var(--topbar-h) + var(--navbar-h));
  overflow-x: hidden;
  width: 100%;
}

/* ===== TOPBAR ===== */
.topbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:var(--topbar-h);
  background:var(--topbar);
  color:#fff;
  z-index:1051;
  display:flex;
  align-items:center;
}

.topbar .phone{
  color:var(--yellow);
  font-weight:900;
}

.topbar .address{
  font-weight:600;
  color:rgba(255,255,255,.85);
}

.social a{
  color:#fff;
  margin-left:10px;
  transition:.3s;
}
.social a:hover{
  color:var(--yellow);
}

/* ===== NAVBAR ===== */
.main-nav {
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  width: 100%;
  height: 85px; /* Increased height */
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.08);
  z-index: 1050;
  transition: all 0.3s ease;
  display: flex !important;
  align-items: center;
}
.navbar-toggler {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Logo image */
.logo-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  overflow: visible; /* Ensure logo can stick out */
  height: 85px;
}
.navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}
.navbar-brand img {
  height: auto;
  max-height: 120px; /* Even larger on desktop */
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.navbar-brand img:hover {
  transform: scale(1.05);
}


/* Menu */
.nav-link{
  font-weight:900;
  font-size:.95rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#111 !important;
  padding:12px 16px !important;
  transition:.3s;
}
.nav-link:hover{
  color:var(--yellow) !important;
}

.navbar-toggler{
  border:0 !important;
}
.navbar-toggler:focus{
  box-shadow:none !important;
}

/* Mobile */
@media(max-width:991px){
  .topbar .address{ display:none; }

  .main-nav {
    height: 80px; /* Increased height on mobile */
  }

  .logo-wrapper {
    width: 100%;
    text-align: center;
    padding: 0;
    margin-bottom: 0;
    justify-content: center;
    height: 80px;
  }

  .navbar-brand img {
    max-height: 140px; /* Big logo preserved */
    width: auto;
    position: relative;
    z-index: 10;
  }

  .navbar-toggler {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
  }

  .navbar-collapse{
    background:#fff;
    border-top:1px solid rgba(0,0,0,.1);
    padding: 15px;
    border-radius: 0 0 10px 10px;
  }
}

/* Demo */
.demo{
  min-height:130vh;
  padding:40px 0;
  background:#f8f9fa; /* Solid color instead of gradient */
}
/**********video*******/
/* ===== VIDEO SECTION ===== */
.video-section{
  position:relative;
  width:100%;
  height:85vh;
  overflow:hidden;
}

.video-section video{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* Dark overlay */
.video-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.45);
  z-index:1;
}

/* Overlay content */
.video-overlay{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  text-align:center;
  color:#fff;
  z-index:2;
}

/* ===== TEXT STYLE (Thin + Smooth Up Animation) ===== */
.video-overlay h1{
  font-size:clamp(2rem,4vw,3.2rem);
  font-weight:300;              /* Thickness reduced */
  letter-spacing:1px;
  margin-bottom:30px;

  opacity:0;
  transform:translateY(60px);
  animation:slowUp 2s ease forwards;
}

/* Smooth slow up */
@keyframes slowUp{
  0%{
    opacity:0;
    transform:translateY(60px);
  }
  100%{
    opacity:1;
    transform:translateY(0);
  }
}

/* ===== Curved Button ===== */
.book-btn{
  background:#ffffff;
  color:#000;
  padding:14px 40px;
  font-weight:500;
  border:none;
  border-radius:50px;
  transition:all 0.4s ease;
  text-decoration:none;
  display:inline-block;

  opacity:0;
  transform:translateY(40px);
  animation:slowUp 2.5s ease forwards;
}

/* Hover Effect */
.book-btn:hover{
  background:#2c4135;
  color:#fff;
}

/* Responsive */
@media(max-width:768px){
  .video-section{
    height:65vh;
  }
}
/*about page */

    /* ✅ Bottom reduce: smaller padding + remove extra margins */
    .welcome-section{
      background-color: #2c4135;
      padding: 45px 0 20px;  /* top 45, bottom 20 (reduced) */
    }

    .welcome-title{
      font-family: "Playfair Display", serif;
      color: #e7c6a5;
      font-size: clamp(2.1rem, 3vw, 3.1rem);
      line-height: 1.15;
      margin: 0 0 16px 0; /* avoid extra bottom gap */
    }

    .welcome-text{
       
      font-size: clamp(1.05rem, 1.1vw, 1.2rem);
      line-height: 1.8;
      opacity: 0.95;
      max-width: 52ch;
      margin-bottom: 12px; /* reduce paragraph gap */
       color:#fff;
    }

    .welcome-list{
      margin: 10px 0 10px; /* reduce list gaps */
      padding-left: 1.25rem;
    }
    .welcome-list li{
      font-size: clamp(1.05rem, 1.05vw, 1.15rem);
      line-height: 1.9;
      margin: 4px 0;
      color:#fff;
    }

    /* ✅ Image wrapper: zoom stays inside */
    .img-wrap{
      width: 100%;
      overflow: hidden;
      border-radius: 0; /* square like screenshot */
    }

    /* ✅ Hover-only zoom (NO animation) */
    .hero-img{
      width: 100%;
      height: 420px;
      object-fit: cover;
      display: block;
      transform: scale(1);
      transition: transform 0.8s ease; /* smooth zoom */
      will-change: transform;
    }

    .img-wrap:hover .hero-img{
      transform: scale(1.12);
    }

    /* Responsive */
    @media (max-width: 991.98px){
      .welcome-section{ padding: 38px 0 16px; }
      .hero-img{ height: 340px; }
      .welcome-text{ max-width: 100%; }
    }
    @media (max-width: 575.98px){
      .welcome-section{ padding: 32px 0 12px; }
      .hero-img{ height: 260px; }
    }

    /***********/

    /* ================= PARALLAX TESTIMONIALS ================= */
/* ================= PARALLAX SECTION ================= */
.parallax-section{
    position:relative;
    background-image:url("assets/images/hero/bg.webp"); /* replace your image */
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-attachment:fixed; /* PARALLAX */
    padding:120px 0 180px;
}

/* Dark overlay */
.parallax-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.15);
}

/* Keep content above overlay */
.parallax-content{
    position:relative;
    z-index:2;
}

/* ================= TESTIMONIAL CARD ================= */
.testimonial-card{
    background:#6b5353;
    color:#fff;
    padding:40px;
    box-shadow:0 25px 60px rgba(0,0,0,0.25);
    max-width:550px;
}

/* Push cards slightly outside */
.card-wrapper{
    transform:translateY(90px);
}

.testimonial-title{
    font-weight:800;
    font-size:clamp(1.7rem,2.2vw,2.4rem);
    margin-bottom:20px;
}

.stars{
    color:#f4c542;
    margin-bottom:18px;
}

.stars i{
    margin-right:6px;
}

.testimonial-text{
    font-style:italic;
    line-height:1.8;
    opacity:0.9;
    margin-bottom:15px;
}

.testimonial-name{
    font-weight:700;
    font-size:1.1rem;
}

/* ================= RESPONSIVE ================= */
@media(max-width:991px){
    .parallax-section{
        padding:80px 0 100px;
    }
    .card-wrapper{
        transform:translateY(0);
    }
}
/**********/
/* ===== SLIGHTLY TALLER PARALLAX ===== */
.small-parallax{
  height:320px;                 /* Increased height */
  background-image:url("assets/images/hero/bg.webp"); /* Replace with your image */
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  background-attachment:fixed;  /* Parallax effect */
}

/* Mobile fix */
@media(max-width:991px){
  .small-parallax{
    height:260px;
  }
}

/************/
 /* Section background + subtle geometric pattern */
    .places-section{
      position: relative;
      padding: clamp(48px, 6vw, 90px) 0;
      overflow: hidden;
    }

    .places-section::before,
    .places-section::after{
      content:"";
      position:absolute;
      top:-80px;
      width: 520px;
      height: 520px;
      opacity: .25;
      pointer-events:none;
      background-repeat:no-repeat;
      background-size: contain;
      /* simple geometric SVG pattern */
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600' viewBox='0 0 600 600'%3E%3Cg fill='none' stroke='%23cfcfcf' stroke-width='1'%3E%3Cpath d='M80 120l80-80 80 80-80 80z'/%3E%3Cpath d='M160 200l80-80 80 80-80 80z'/%3E%3Cpath d='M240 280l80-80 80 80-80 80z'/%3E%3Cpath d='M120 280l80-80 80 80-80 80z'/%3E%3Cpath d='M80 360l80-80 80 80-80 80z'/%3E%3Cpath d='M200 360l80-80 80 80-80 80z'/%3E%3Cpath d='M320 360l80-80 80 80-80 80z'/%3E%3Cpath d='M160 440l80-80 80 80-80 80z'/%3E%3Cpath d='M280 440l80-80 80 80-80 80z'/%3E%3C/g%3E%3C/svg%3E");
    }

    .places-section::before{
      left: -180px;
      transform: rotate(-12deg);
    }

    .places-section::after{
      right: -180px;
      transform: rotate(12deg);
      top: 220px;
      opacity: .18;
    }

    /* Title */
    .section-title{
      font-family: var(--title-font);
      font-weight: 700;
      letter-spacing: .2px;
      font-size: clamp(34px, 4vw, 54px);
      text-align: center;
      margin-bottom: clamp(26px, 4vw, 48px);
    }

    /* Cards */
    .place-card{
      text-align: center;
      padding: 10px 6px 0;
    }

    .place-media{
      position: relative;
      border-radius: 0;
      overflow: hidden;
      background: #f4f4f4;
      box-shadow: 0 18px 40px rgba(0,0,0,.08);
      transition: transform .35s ease, box-shadow .35s ease;
      will-change: transform;
      max-width: 420px;
      margin: 0 auto;
    }

    .place-media img{
      width: 100%;
      height: 260px;
      object-fit: cover;
      display:block;
      transform: scale(1.02);
      transition: transform .45s ease;
    }

    /* hover image up slightly + tiny zoom */
    .place-media:hover{
      transform: translateY(-10px);
      box-shadow: 0 26px 55px rgba(0,0,0,.12);
    }
    .place-media:hover img{
      transform: scale(1.07);
    }

    .place-name{
      font-family: var(--title-font);
      font-weight: 700;
      font-size: 22px;
      margin-top: 20px;
      margin-bottom: 10px;
    }

    .place-desc{
      color: var(--muted);
      font-size: 13px;
      line-height: 1.9;
      max-width: 330px;
      margin: 0 auto;
    }

    /* Make middle one bigger and slightly higher (like screenshot) */
    @media (min-width: 992px){
      .place-card.is-featured{
        transform: translateY(-36px);
      }
      .place-card.is-featured .place-media{
        max-width: 520px;
      }
      .place-card.is-featured .place-media img{
        height: 300px;
      }
      .place-card.is-featured .place-name{
        font-size: 24px;
      }
      .place-card.is-featured .place-desc{
        max-width: 380px;
      }
    }

    /* Spacing between rows on small screens */
    @media (max-width: 991.98px){
      .place-card{
        margin-bottom: 30px;
      }
      .place-media{
        max-width: 560px;
      }
      .place-media img{
        height: 240px;
      }
    }

/* ================= OUR SERVICES SECTION ================= */
.services-section {
    position: relative;
    padding: 100px 0;
    background: url('assets/images/hero/bg.webp') center/cover no-repeat;
    background-attachment: fixed;
    color: #fff;
}

.services-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(30, 30, 30, 0.88); /* Heavy dark overlay */
    z-index: 1;
}

.services-content {
    position: relative;
    z-index: 2;
}

.services-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 32px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.services-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.services-link {
    color: #4CAF50; /* Green link */
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.services-link:hover {
    color: #45a049;
    text-decoration: underline;
}

.service-icon-box {
    text-align: center;
    padding: 20px;
}

.service-icon {
    font-size: 45px;
    color: #fca311; /* Golden yellow */
    margin-bottom: 20px;
}

.service-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    line-height: 1.6;
}

/* ================= ACTIVITIES SECTION ================= */
.activities-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.activities-header {
    text-align: center;
    margin-bottom: 50px;
}

.activities-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.activities-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 300;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.activities-scroll-wrapper {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding-bottom: 20px;
    /* Hide scrollbar for clean look but keep functionality */
    scrollbar-width: none; 
    -ms-overflow-style: none;
}

.activities-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.activity-card {
    flex: 0 0 auto;
    width: 400px;
}

@media (max-width: 768px) {
    .activity-card {
        width: 300px;
    }
    .service-icon-box {
        margin-bottom: 30px;
    }
}

.activity-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 15px;
}

.activity-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #333;
}

/* ================= EXPANDED PREMIUM FOOTER ================= */
.premium-footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 70px 0 30px;
    font-family: 'Montserrat', sans-serif;
}

.premium-footer .footer-title {
    font-family: 'Cinzel', serif;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.premium-footer .footer-text {
    font-size: 14px;
    line-height: 1.8;
    color: #a0a0a0;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #2a3e31;
    transform: translateX(5px);
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 14px;
    color: #a0a0a0;
}

.contact-list i {
    color: #2a3e31;
    font-size: 18px;
    margin-right: 15px;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 13px;
    color: #888;
    margin: 0;
}

.social-wrapper a {
    color: #ffffff;
    background-color: rgba(255,255,255,0.05);
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-wrapper a:hover {
    background-color: #2a3e31;
    transform: translateY(-3px);
}

/* ================= NEW HOMEPAGE SECTIONS ================= */
.signature-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.exp-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.exp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-color: rgba(42, 62, 49, 0.2);
}

.exp-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(42, 62, 49, 0.05);
    color: #2a3e31;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.exp-card:hover .exp-icon {
    background-color: #2a3e31;
    color: #ffffff;
}

.exp-title {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: 600;
    color: #2b3a32;
    margin-bottom: 15px;
}

.exp-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.serenity-banner {
    position: relative;
    padding: 120px 0;
    background: url('hero.jpg') center/cover no-repeat;
    background-attachment: fixed;
}

.serenity-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(43, 58, 50, 0.85); /* Solid dark green overlay */
    z-index: 1;
}

.serenity-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.serenity-quote {
    font-family: 'Cinzel', serif;
    font-size: clamp(28px, 4vw, 42px);
    color: #ffffff;
    font-style: italic;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto 30px;
}

.serenity-author {
    color: #e3ead9;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

/* ================= THEME BUTTON ================= */
.btn-theme {
    background-color: #dc3545; /* Vibrant Red */
    color: #fff;
    padding: 14px 35px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.btn-theme:hover {
    background-color: #c82333; /* Darker red on hover */
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

/* ================= GOOGLE REVIEWS SECTION ================= */
.google-reviews-section {
    padding: 90px 0;
    background-color: #f8f9fa; /* Light gray background to make white cards pop */
    font-family: 'Roboto', 'Montserrat', sans-serif;
}

.reviews-header {
    text-align: center;
    margin-bottom: 50px;
}

.reviews-subtitle {
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.reviews-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #111;
}

/* Masonry Grid Setup */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

@media (max-width: 991px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* Google Review Card */
.g-review-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 25px 20px;
    margin-bottom: 25px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    break-inside: avoid; /* Prevent break across columns */
    display: inline-block; /* Helps with masonry layout */
    width: 100%;
    transition: all 0.3s ease;
}

.g-review-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.gr-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.gr-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.gr-avatar-initial {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #ffb74d; /* Placeholder color */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    margin-right: 15px;
}

.gr-info {
    flex-grow: 1;
}

.gr-name {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.gr-logo {
    width: 25px;
}

.gr-stars {
    color: #fbbc04; /* Official Google Yellow */
    font-size: 14px;
    margin-bottom: 15px;
}

.gr-text {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
    word-wrap: break-word;
}

.gr-date {
    font-size: 12px;
    color: #888;
}