
        :root{
            /* Replace with your images */
            --bg-1: url("../assets/images/perkHome/Lady_Hill_8.webp");
            --bg-2: url("../assets/images/perkHome/Lady_Hill_10.webp");
            --bg-3: url("../assets/images/perkHome/Lady_Hill_28.webp");
            --bg-4: url("../assets/images/perkHome/Lady_Hill_43.webp");
            --bg-5: url("../assets/images/perkHome/Lady_Hill_47.webp");

            --gold: color-mix(in oklab, #c6a15b 40%, transparent 40%);
            --goldicon: #c6a15b;
            --goldtext: #c6a15b;
            --text:#ffffff;
            --maxw:1600px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }
        
        body {
            color: #333;
        }

        
        .hero-mobile-bg {
            display: none;
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }

        @media (max-width: 768px) {
            .video-background {
                display: none !important;
            }

            .hero-mobile-bg {
                display: block !important;
            }

            .hero {
                height: 100svh;
                background: none;
            }
        }
        
        
        .hero {
            padding-top: 100px; /* Matches navbar height */
            margin-top: -40px !important; /* Prevent unwanted top margin */
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        
        

        
        .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }
        
        .hero-content {
            text-align: center;
            color: white;
            z-index: 1;
            max-width: 800px;
            padding: 20px;
        }
        
        .hero h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
            font-weight: 100;
            letter-spacing: 1px;
        }
        
        .hero p {
            font-size: 1rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
            font-weight: 400;
            line-height: 1.6;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: #c19a6b;
            color: white;
            text-decoration: none !important;
            font-size: 1rem;
            border-radius: 30px;
            transition: all 0.3s ease;
            font-weight: 200;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        
        .btn:hover {
            background-color: #a67c52;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.3);
            z-index: 0;
        }
        
        /*About Section */
        .about-section {
            padding: 100px 20px;
            max-width: auto;
            margin: 0 auto;
            text-align: center;
            background-color: #f7f6f2;
        }
        
        .section-subtitle {
            color: #c19a6b;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
        }
        
        .section-title {
            font-size: 2.2rem;
            font-weight: 200;
            margin-bottom: 30px;
            color: #222;
            line-height: 1.2;
        }

        .about-gallery {
            position: relative;
            width: 100%;
            margin: 0;
            margin-top: 40px;
            padding: 0;
            overflow: hidden;
        }

        /* About Arrows */
        .about-arrows {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 8px;
            z-index: 3;
            opacity: 0;
            pointer-events: none;
            transition: opacity .2s ease;
        }

        .about-arrow {
            pointer-events: auto;
            width: 44px;
            height: 44px;
            border: 1px solid rgba(255,255,255,.65);
            background: rgba(0,0,0,.35);
            backdrop-filter: blur(2px);
            color: #fff;
            border-radius: 999px;
            display: grid;
            place-items: center;
            cursor: pointer;
            transition: transform .2s ease, background-color .2s ease, opacity .2s ease;
            opacity: .9;
        }

        .about-gallery:hover .about-arrows,
        .about-gallery:focus-within .about-arrows {
            opacity: 1;
            pointer-events: auto;
        }

        .about-gallery.show-arrows .about-arrows {
            opacity: 1;
            pointer-events: auto;
        }

        .about-arrow:hover,
        .about-arrow:focus-visible {
            background: rgba(0,0,0,.55);
            transform: translateY(-1px);
            outline: none;
        }

        .about-arrow:active {
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .about-arrow {
                width: 40px; height: 40px;
            }
        }

        .about-slider {
            display: flex;
            gap: 16px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            padding: 0 12px 6px;
            scroll-snap-type: none;
            scroll-behavior: auto;
        }

        .about-slider::-webkit-scrollbar {
            display: none;
        }

        .about-slide {
            flex: 0 0 90%;
            /* scroll-snap-align: start; */
            border-radius: 0;
            overflow: hidden;
        }

        .about-slide img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
            border-radius: 0;
        }

        @media (min-width: 768px) {
            .about-slide { flex-basis: 48%; }
            .about-slide img { height: 380px; }
        }

        @media (min-width: 1100px) {
            .about-slide { flex-basis: 32%; }
            .about-slide img { height: 440px; }
        }

        .about-slider {
        cursor: grab;
        touch-action: pan-y;
        }
        .about-slider:active { cursor: grabbing; }



        
        .section-description {
            font-size: 1rem;
            line-height: 1.8;
            color: #555;
            max-width: 800px;
            margin: 0 auto 40px;
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .btn {
                font-size: 1rem;
                padding: 10px 25px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .section-description {
                font-size: 1rem;
                text-align: left;
            }
        }
        
        
        
        
  .perk-main-section {
    text-align: center;
    overflow: hidden;
    background-color: #fcfcfa;
  }

  .perk-title-section {
    text-align: center;
    margin-top: 30px !important;
  }

  .perks-title-content{
    text-align: center;
  }
  .perks-title-content .label{
    color: #c19a6b;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px !important;
    text-transform: uppercase;
  }
  .perks-title-content .heading{
    font-size: 2.2rem;
    font-weight: 200 !important;
    margin-bottom: 30px;
    color: #222;
    line-height: 1.2;
  }

  /*perks grid Section */
  .perks-section{
    height:105vh;
    min-height:105vh;
    position:relative;
    overflow:hidden;
    isolation:isolate;
    background:center/cover no-repeat var(--bg-5);
    transition:background-image 700ms ease-in-out;
  }
  .perks-section::before{
    content:"";
    position:absolute;
    inset:0;
    background: radial-gradient(120% 120% at 75% 10%, rgba(0,0,0,.12) 0%, rgba(0,0,0,.55) 55%, rgba(0,0,0,.75) 100%);
    z-index:0;
  }
  .perks-section::after{
    content:none;
  }

  /* Grid */
  .perks-grid{
    position:relative; z-index:2;
    display:grid; grid-template-columns:repeat(4,1fr);
    gap:0;
    width:min(var(--maxw),92%); margin-inline:auto;
    height:100%;
    align-items:stretch;
    padding:0;
  }

  /* Columns */
  .perk{
    height:100%;
    padding: clamp(12px, 2vw, 24px);
    cursor:pointer;
    transition:transform .3s ease, opacity .25s ease;
    display:flex; flex-direction:column;
    justify-content:flex-end;
    align-items:center;
    text-align:center;
    border-left: 1px solid var(--gold);
  }
  .perk:first-child{
    border-left:none;
  }
  
  .perk-icon{
    font-size: 2rem;
    color: var(--goldicon);
    margin-bottom: 10px;
    transform: translateY(10px);
    transition: transform .3s ease, color .3s ease;
  }

  .perk a{
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
  }

  .perk-title{
    margin:0;
    font-weight:600 !important;
    color: gray;
    line-height:.95;
    font-size:30PX;
    text-shadow:0 2px 30px rgba(0,0,0,.45);
    transform:translateY(10px); transition:transform .3s ease;
  }

  .perk-description{
    margin:16px auto 0;
    font-size:clamp(13px,.95vw + 7px,18px);
    line-height:1.65;
    color:#fffE;
    max-width:min(48ch, 92%);
    overflow-wrap:anywhere;
    word-break:break-word;
    opacity:0; transform:translateY(8px);
    transition:opacity .3s ease, transform .3s ease;
  }

  /* Mobile Responsive - Remove borders and stack columns */
  @media (max-width: 768px) {
    .perks-title-content {
      text-align: center;
      padding-left: 10px !important;
      padding-right: 10px !important;
    }
    .perks-title-content .label{
      font-size: 0.8rem;
      letter-spacing: 0.5px;
    }

    .perks-title-content .heading{
      font-size: 1.8rem;
      line-height: 1.2;
    }

    .perks-grid {
      grid-template-columns: 1fr;
    }

    .perk-icon {
      margin-bottom: 10px;
      font-size: 2rem;
      color: var(--goldicon);
      transform: translateY(10px);
      transition: transform .3s ease, color .3s ease;
    }

    .perk-title {
      font-size: 1.5rem;
      margin-bottom: 10px;
      color: gray;
      transform: translateY(10px);
      transition: transform .3s ease;
    }

    .perk-description {
      font-size: 1rem;
      line-height: 1.5;
      color: #fffE;
      max-width: 100%;
      opacity: 0;
      transform: translateY(8px);
      transition: opacity .3s ease, transform .3s ease;
    }

    .perk {
      border-left: none !important;
      border-right: none !important;
      border-top: none !important;
      border-bottom: 1px solid var(--gold)!important;
    }

    .perk:first-child {
      border-left: none !important;
      border-top: none !important;
      border-right: none !important;
    }

    .perk:last-child {
      border-right: none !important;
      border-top: none !important;
      border-left: none !important;
      border-bottom: none !important;
    }
  }

  /* Hover Effects */
  .perk:is(:hover,:focus-within){ transform:translateY(-2px); }
  .perk:is(:hover,:focus-within) .perk-icon{ transform:translateY(0) scale(1.12); color:#fff; }
  .perk:is(:hover,:focus-within) .perk-title{ transform:translateY(0); color: var(--goldtext); }
  .perk:is(:hover,:focus-within) .perk-description{ opacity:1; transform:none; }

  .perks-section[data-hovering="true"] .perk{opacity:.65}
  .perks-section[data-hovering="true"] .perk.is-active{opacity:1}

              

 /* Accommodation Section Styles */
 .accommodation-section {
            background-color: #E3D9D2;
            padding: 80px 0; /* Changed from 80px 20px */
            font-family: 'Montserrat', sans-serif;
        }
        
        .accommodation-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            padding: 0 20px; /* Added padding here instead */
            box-sizing: border-box;
        }
        
        .section-subtitle {
            color: #c19a6b;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
        }
        
        .section-title {
            font-size: 2.2rem;
            font-weight: 200;
            margin-bottom: 30px;
            color: #222;
            line-height: 1.3;
        }
        
        .section-description {
            font-size: 1rem;
            line-height: 1.8;
            color: #555;
            max-width: 800px;
            margin: 0 auto 60px;
        }
        
        /* Full-width Room Grid Layout */
        .room-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            width: 100%;
            margin: 0;
            padding: 0;
        }
        
        .room-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px;
            box-sizing: border-box;
        }
        
        .room-image {
            width: 100%;
            
            aspect-ratio: 1/0.8;
            object-fit: cover;
            margin-bottom: 20px;
        }
        
        .room-title {
            font-size: 1rem;
            font-weight: 500;
            margin-bottom: 10px;
            color: #222;
        }
        
        .room-desc {
            color: #666;
            font-size: 0.85rem;
            line-height: 1.6; /* Added for better spacing between lines */
            margin-bottom: 20px;
            max-width: 300px;
            text-align: center;
        }
        
        .details-btn {
            display: inline-block;
            padding: 10px 25px;
            background-color: #c19a6b;
            color: white;
            text-decoration: none !important;
            font-size: 0.85rem;
            font-weight: 500;
            transition: all 0.3s ease;
            
        }
        
        .details-btn:hover {
            background-color: #a67c52;
        }
        
        /* Responsive Design */
        @media (max-width: 900px) {
            .room-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .room-item:last-child {
                grid-column: span 2;
            }
        }
        
        @media (max-width: 600px) {
            .room-grid {
                grid-template-columns: 1fr;
            }
            
            .room-item:last-child {
                grid-column: span 1;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
        }
        
        
             /* Explore Section Styles */
        .explore-section {
            background-color: white;
            padding: 20px 0;
            font-family: 'Montserrat', sans-serif;
        }
        
        .explore-container {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            max-width: 100%;
            padding: 30px;
            margin: 0 auto;
            gap: 30px;
            align-items: center;
        }
        
        .explore-text {
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }
        
        .section-subtitle {
            color: #c19a6b;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
        }
        
        .section-title {
            font-size: 2rem;
            font-weight: 200;
            margin-bottom: 20px;
            color: #222;
            line-height: 1.3;
        }
        
        .section-description {
            font-size: 1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 30px;
        }
        
        .explore-btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: #c19a6b;
            color: white;
            text-decoration: none !important;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .explore-btn:hover {
            background-color: #a67c52;
        }
        
        .explore-image {
            height: 80vh;
            width: 100%;
        }
        
        .explore-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* Responsive Design */
        @media (max-width: 900px) {
            .explore-container {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 0 20px;
            }
            
            .explore-text {
                order: 1;
                text-align: center;
            }
            
            .explore-image {
                height: 300px;
            }
        }

    /* explore section section */
        .explore-section {
            position: relative;
            width: 100%;
            height: 100vh;
            background-color: rgba(241,235,227);
            overflow: hidden;
            margin-bottom: 60px !important;
            margin-top: 60px !important;
        }

        .image {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 30% !important;
            height: 75% !important;
            z-index: 2;
            overflow: hidden;
            border-radius: 8px;
        }

        .image-left {
            left: 0;
            margin-top: -25px;
        }

        .image-right {
            right: 0;
            margin-top: 25px;
        }

        .image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 1;
            text-align: center;
            max-width: 800px;
            color: #2c2c2c;
            padding: 20px;
            height: 100%;
            width: 800px;
            backdrop-filter: blur(5px);
            background-color: rgb(228,215,197);
            border-radius: 8px;
        }
        .content-text {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
            gap: 10px;
        }

        .content-text h2 {
            /* font-family: 'Marcellus', serif !important;
            font-size: 40px;
            font-weight: 600 !important;
            color: #1e2b38; */

            font-size: 2.2rem;
            font-weight: 200;
            /* margin-bottom: 20px; */
            color: #222;
            line-height: 1.3;
            text-align: center;
            /* max-width: 80%; */
            /* margin-left: auto;
            margin-right: auto; */
        }

        .content-text .tagline {
            /* font-size: 16px;
            letter-spacing: 4px;
            margin: 10px 0 20px;
            color: #555;
            text-transform: uppercase;
            font-weight: 500 !important;
            font-family: 'Montserrat', sans-serif !important; */
            color: #c19a6b;
            font-size: 1rem;
            margin: 10px 0 20px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
        }


        .sport-logo{
            width: 13% !important;
            height: fit-content !important;
            filter: brightness(0) invert(1) !important;
            color: white !important;
        }
        

        .content-text .description {
            /* font-size: 15px;
            line-height: 1.6;
            color: #555;
            max-width: 400px;
            font-weight: 500 !important;
            font-family: 'Montserrat', sans-serif !important; */

            font-size: 1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 30px;
            text-align: center;
            max-width: 400px;
            /* max-width: 80%;
            margin-left: auto;
            margin-right: auto; */
        }

        .bar-btn {
            padding: 12px 38px;
            font-size: 15px;
            margin-top: 30px;
            font-family: 'Montserrat', sans-serif !important;
            font-weight: 600;
            color: #fff;
            background: linear-gradient(90deg, #f7d3a2 60%, #e2ae66 100%);
            border: none;
            border-radius: 30px;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s, opacity 0.3s;
            box-shadow: 0 4px 16px rgba(26,167,180,0.08);
            letter-spacing: 2px;
            text-transform: uppercase;
            opacity: 0;
            text-decoration: none !important;
        }

        .bar-btn:hover,
        .bar-btn:active {
            background: linear-gradient(90deg, #e2ae66 60%, #f7d3a2 100%);
            transform: scale(1.04);
            color: #fff;
        }

        .sports-bar:hover .bar-btn,
        .sports-bar:focus-within .bar-btn {
            opacity: 1;
            pointer-events: all;
        }

        .image::after {
            content: '';
            position: absolute;
            inset: 0;
            background-color: transparent !important;
        }

        /* Mobile responsive for explore-section */
        @media (max-width: 768px) {
            .explore-section {
            height: auto;
            padding: 60px 20px;
            margin-bottom: 40px !important;
            background-color: #e4d7c5 !important;
            }

            .image {
            position: static;
            transform: none;
            width: 100% !important;
            height: 200px !important;
            margin: 20px 0;
            
            }

            .image-left,
            .image-right {
            margin: 0;
            margin-bottom: 10px !important;
            }

            .image img {
            border-radius: 10px;
            height: 100%;
            width: 100%;
            object-fit: cover;
            }

            .content {
            position: static;
            transform: none;
            width: 100%;
            max-width: 100%;
            backdrop-filter: none;
            background-color: transparent;
            padding: 20px 10px;
            text-align: center;
            border-radius: 0;
            height: auto;
            }

            .content-text {
            height: auto;
            gap: 16px;
            }

            .content-text h2 {
            font-size: 28px;
            }

            .content-text .tagline {
            font-size: 14px;
            letter-spacing: 2px;
            }

            .content-text .description {
            font-size: 14px;
            max-width: 100%;
            padding: 0 10px;
            }

            .sport-logo {
            width: 40% !important;
            margin-bottom: 20px;
            }

            .bar-btn {
            opacity: 1 !important;
            pointer-events: all !important;
            padding: 10px 20px;
            font-size: 12px !important;
            margin-top: 20px;
            z-index: 10;
            position: relative;
            }
        }
        
       /* Split Section Styles */
    .split-section {
        display: flex;
        width: 100%;
        height: 620px; /* Default height for desktop */
    }
    
    .split-half {
        flex: 1;
        position: relative;
        overflow: hidden;
        height: 100%; /* Full height of the section */
    }
    
    .split-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .split-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: white;
        width: 80%;
        z-index: 2;
        padding: 20px;
        box-sizing: border-box;
    }
    
    .split-subtitle {
        font-size: 1rem;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 15px;
        color: #fff;
    }
    
    .split-title {
        font-size: 1.8rem;
        font-weight: 200;
        margin-bottom: 25px;
        line-height: 1.3;
    }
    
    .split-btn {
        display: inline-block;
        padding: 12px 30px;
        background-color: #c19a6b;
        color: white;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        font-size: 0.8rem;
        border-radius: 2px;
    }
    
    .split-btn:hover {
        background-color: #a67c52;
        transform: translateY(-2px);
    }
    
    .split-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.3);
        z-index: 1;
        transition: background-color 0.3s ease;
    }
    
    .split-half:hover .split-image {
        transform: scale(1.05);
    }
    
    .split-half:hover .split-overlay {
        background-color: rgba(0,0,0,0.4);
    }
    
    /* Responsive Design */
    @media (max-width: 1024px) {
        .split-title {
            font-size: 1.6rem;
        }
        
        .split-btn {
            padding: 10px 25px;
        }
    }
    
    @media (max-width: 768px) {
        .split-section {
            flex-direction: column;
            height: auto;
        }
        
        .split-half {
            height: 400px; /* Slightly reduced height for mobile */
            flex: none;
        }
        
        .split-content {
            top: 50%;
            width: 90%;
        }
        
        .split-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        
        .split-subtitle {
            font-size: 0.9rem;
            margin-bottom: 10px;
        }
    }
    
    @media (max-width: 480px) {
        .split-half {
            height: 350px;
        }
        
        .split-title {
            font-size: 1.3rem;
        }
        
        .split-subtitle {
            font-size: 0.8rem;
            letter-spacing: 1px;
        }
        
        .split-btn {
            padding: 8px 20px;
            font-size: 0.7rem;
        }
    }
    
    @media (max-width: 360px) {
        .split-half {
            height: 300px;
        }
        
        .split-title {
            font-size: 1.2rem;
        }
    }

        /* pool section section */
        .pool-section {
            position: relative;
            width: 100%;
            height: 100vh;
            background-color: rgba(241,235,227);
            overflow: hidden;
            margin-bottom: 60px !important;
            margin-top: 60px !important;
        }

        .image {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 30% !important;
            height: 75% !important;
            z-index: 2;
            overflow: hidden;
            border-radius: 8px;
        }

        .image-left {
            left: 0;
            margin-top: -25px;
        }

        .image-right {
            right: 0;
            margin-top: 25px;
        }

        .image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 1;
            text-align: center;
            max-width: 800px;
            color: #2c2c2c;
            padding: 20px;
            height: 100%;
            width: 800px;
            backdrop-filter: blur(5px);
            background-color: rgb(228,215,197);
            border-radius: 8px;
        }
        .content-text {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
            gap: 10px;
        }

        .content-text h2 {
            /* font-family: 'Marcellus', serif !important;
            font-size: 40px;
            font-weight: 600 !important;
            color: #1e2b38; */

            font-size: 2.2rem;
            font-weight: 200;
            /* margin-bottom: 20px; */
            color: #222;
            line-height: 1.3;
            text-align: center;
            /* max-width: 80%; */
            /* margin-left: auto;
            margin-right: auto; */
        }

        .content-text .tagline {
            
            color: #c19a6b;
            font-size: 1rem;
            margin: 10px 0 20px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
        }


        .sport-logo{
            width: 13% !important;
            height: fit-content !important;
            filter: brightness(0) invert(1) !important;
            color: white !important;
        }
        

        .content-text .description {
            
            font-size: 1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 30px;
            text-align: center;
            max-width: 400px;
            /* max-width: 80%;
            margin-left: auto;
            margin-right: auto; */
        }

        .bar-btn {
            padding: 12px 38px;
            font-size: 15px;
            margin-top: 30px;
            font-family: 'Montserrat', sans-serif !important;
            font-weight: 600;
            color: #fff;
            background: linear-gradient(90deg, #f7d3a2 60%, #e2ae66 100%);
            border: none;
            border-radius: 30px;
            cursor: pointer;
            transition: background 0.3s, transform 0.2s, opacity 0.3s;
            box-shadow: 0 4px 16px rgba(26,167,180,0.08);
            letter-spacing: 2px;
            text-transform: uppercase;
            opacity: 0;
            text-decoration: none !important;
        }

        .bar-btn:hover,
        .bar-btn:active {
            background: linear-gradient(90deg, #e2ae66 60%, #f7d3a2 100%);
            transform: scale(1.04);
            color: #fff;
        }

        .sports-bar:hover .bar-btn,
        .sports-bar:focus-within .bar-btn {
            opacity: 1;
            pointer-events: all;
        }

        .image::after {
            content: '';
            position: absolute;
            inset: 0;
            background-color: transparent !important;
        }

        /* Mobile responsive for pool-section */
        @media (max-width: 768px) {
            .pool-section {
            height: auto;
            padding: 60px 20px;
            margin-bottom: 40px !important;
            background-color: #e4d7c5 !important;
            }

            .image {
            position: static;
            transform: none;
            width: 100% !important;
            height: 200px !important;
            margin: 20px 0;
            
            }

            .image-left,
            .image-right {
            margin: 0;
            margin-bottom: 10px !important;
            }

            .image img {
            border-radius: 10px;
            height: 100%;
            width: 100%;
            object-fit: cover;
            }

            .content {
            position: static;
            transform: none;
            width: 100%;
            max-width: 100%;
            backdrop-filter: none;
            background-color: transparent;
            padding: 20px 10px;
            text-align: center;
            border-radius: 0;
            height: auto;
            }

            .content-text {
            height: auto;
            gap: 16px;
            }

            .content-text h2 {
            font-size: 28px;
            }

            .content-text .tagline {
            font-size: 14px;
            letter-spacing: 2px;
            }

            .content-text .description {
            font-size: 14px;
            max-width: 100%;
            padding: 0 10px;
            }

            .sport-logo {
            width: 40% !important;
            margin-bottom: 20px;
            }

            .bar-btn {
            opacity: 1 !important;
            pointer-events: all !important;
            padding: 10px 20px;
            font-size: 12px !important;
            margin-top: 20px;
            z-index: 10;
            position: relative;
            }
        }
        
         /* Pool Section Styles */
        .lh-pool-section {
            width: 100%;
            display: flex;
            height: 80vh;
            font-family: 'Montserrat', sans-serif;
        }

        .lh-pool-image-container {
            flex: 1;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lh-pool-image {
            width: 90%;
            height: 88% !important;
            object-fit: cover;
            transition: transform 0.5s ease;
            display: block;
            margin: 0 auto;
        }

        .lh-pool-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 40px;
            background-color: #fff;
            text-align: center;
        }

        .lh-pool-subtitle {
            color: #c19a6b;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
        }

        .lh-pool-title {
            font-size: 2.2rem;
            font-weight: 200;
            margin-bottom: 20px;
            color: #222;
            line-height: 1.3;
            text-align: center;
            max-width: 80%;
            margin-left: auto;
            margin-right: auto;
        }

        .lh-pool-description {
            font-size: 1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 30px;
            text-align: center;
            max-width: 80%;
            margin-left: auto;
            margin-right: auto;
        }

        .lh-pool-btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: #c19a6b;
            color: white;
            text-decoration: none !important;
            font-weight: 500;
            transition: all 0.3s ease;
            margin-left: auto;
            margin-right: auto;
        }
        
        .lh-pool-btn:hover {
            background-color: #a67c52;
        }
        
        .lh-pool-image-container:hover .lh-pool-image {
            transform: scale(1.05);
        }
        
        /* Responsive Design */
        @media (max-width: 900px) {
            .lh-pool-section {
                flex-direction: column;
                height: auto;
            }
            
            .lh-pool-content {
                order: -1;
                padding: 40px 20px;
            }
            
            .lh-pool-image-container {
                height: 400px;
                margin-bottom: 20px;
            }
            
            .lh-pool-title,
            .lh-pool-description {
                max-width: 100%;
            }
        }
        
        
        
        /* Review Section Styles */
        .lh-review-section {
            background-color: #f9f6f1;
            padding: 80px 0;
            font-family: 'Montserrat', sans-serif;
        }
        
        .lh-review-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }
        
        .lh-section-subtitle {
            color: #c19a6b;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
        }
        
        .lh-section-title {
            font-size: 2.2rem;
            font-weight: 200;
            margin-bottom: 50px;
            color: #222;
            line-height: 1.3;
        }
        
        .lh-review-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            padding: 0 20px;
        }
        
        .lh-review-card {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none !important ;
            display: block;
            color: inherit;
        }
        
        .lh-review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
    .lh-review-platform {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    background-color: #c19a6b; /* Your theme gold */
    color: white;
    transition: all 0.3s ease;
}
        
    .lh-review-card:hover .google-review {
    background-color: #4285F4; /* Google blue */
}
   .lh-review-card:hover .tripadvisor-review {
    background-color: #00A568; /* TripAdvisor green */
}
        
        .lh-review-stars {
            color: #c19a6b;
            font-size: 1.2rem;
            margin-bottom: 20px;
        }
        
        .lh-review-text {
            font-style: italic;
            color: #555;
            line-height: 1.8;
            margin-bottom: 25px;
        }
        
        .lh-review-author {
            font-weight: 600;
            color: #222;
        }
        
        /* Responsive Design */
        @media (max-width: 900px) {
            .lh-review-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto;
            }
            
            .lh-review-card {
                margin-bottom: 30px;
            }
            
            .lh-review-card:last-child {
                margin-bottom: 0;
            }
        }

        /* coffee section */
        .coffee-section {
            padding: 0;
            display: flex;
            height: 80vh;
            width: 100%;
            background-color: #E3D9D2;
            font-family: 'Montserrat', sans-serif;
        }

        .coffee-left,
        .coffee-right {
            width: 50%;
            height: 80vh;
        }

        .lh-coffee-slider {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
            margin-right: 40px;
            border-radius: 0;
        }
        .lh-coffee-slide {
            position: absolute;
            inset: 0;
            display: block;
            opacity: 0;
            transform: translateX(16px);
            transition: opacity 700ms ease, transform 700ms ease;
            will-change: opacity, transform;
            overflow: hidden;
            pointer-events: none;
        }

        .lh-coffee-slide.is-active {
            opacity: 1;
            transform: translateX(0);
            pointer-events: auto;
        }

        .lh-coffee-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0;
            transition: transform 0.4s ease;
        }

        .lh-coffee-slide img:hover {
            transform: scale(1.08);
        }

        .coffee-right {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-content: center;
            padding: 0 10vw;
            gap: 15px;
            background-color: #E3D9D2;
            /* background-color: rgb(241,238,226)!important; */
        }

        .coffee-right-subtitle {
            color: #c19a6b !important;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 0;
        }

        .coffee-right h2 {
            font-size: 2.2rem;
            font-weight: 200 !important;
            align-items: flex-start;
            cursor: default;
            color: #222;
            line-height: 1.3;
        }

        .coffee-right-description {
            font-size: 1.1rem;
            color: #555;
            line-height: 1.8;
            justify-items: justify;
            cursor: default;
        }

        .coffee-right button {
            background-color: #c19a6b;
            color: white;
            padding: 12px 20px;
            border: none;
            border-radius: none;
            font-size: 14px !important;
            cursor: pointer;
            max-width: fit-content;
            text-decoration: none !important;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .coffee-right button:hover {
            background-color: #a67c52;
        }

        .coffee-left img {
            /* display: block; */
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .lh-coffee-slide img:hover {
            transform: scale(1.05);
            /* transition: transform 0.3s ease; */
        }

        /* coffee sections responsive styles */
        @media screen and (max-width: 768px) {

            /* coffee section */
            .coffee-section {
            flex-direction: column;
            height: auto;
            }

            .coffee-left,
            .coffee-right {
            width: 100%;
            height: auto;
            }

            .lh-coffee-slider {
            margin-right: 0;
            height: 50vh;
            border-radius: 0;
            }
            .lh-coffee-slide img {
            height: 50vh;
            border-radius: 0;
            }

            .coffee-right {
            padding: 40px 8vw;
            gap: 20px;
            align-items: flex-start;
            }

            .coffee-right-description {
            font-size: 12px;
            }

            .coffee-right h2 {
            font-size: 36px;
            }

            .coffee-right-description {
            font-size: 14px;
            }

            .coffee-right button {
            font-size: 13px;
            padding: 10px 18px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .lh-coffee-slide {
                transition: none;
            }
        }


        /* Round WhatsApp Button */
    .whatsapp-float {
      position: fixed;
      bottom: 25px;
      right: 18px;
      width: 60px;
      height: 60px;
      background-color: #25D366;
      color: white;
      border-radius: 50%;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 28px;
      z-index: 999;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-decoration: none !important;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    }

    .whatsapp-icon {
      color: white;
    }


    @media (max-width: 768px) {
      .whatsapp-float {
        bottom: 20px;
        right: 18px;
        width: 50px;
        height: 50px;
        font-size: 24px;
        padding: 12px;
      }
    }

     /* bottom image section */
    .bottom-image-section {
        text-align: center;
        overflow: hidden;
        background-color: #fcfcfa;
        position: relative;
        user-select: none;
        -webkit-user-select: none;
        -ms-user-select: none;
        pointer-events: auto;
        }
    
    .bottom-image {
        width: 100%;
        height: 90vh;
        object-fit: cover;
        position: relative;
        display: block;
    }

    .bottom-image-section::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.35); /* Adjust alpha for desired darkness */
        pointer-events: none;
        z-index: 1;
    }

    @media (max-width: 768px) {
        .bottom-image {
            width: 100%;
            height: 35vh;
        }
    }
