*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
html{

    scroll-behavior:smooth;

}
body{

    font-family: "Libre Baskerville", serif;

}

/* NAVBAR */

header{

    position:absolute;

    width:100%;

    top:0;

    left:0;

    z-index:999;

}

.navbar{

    width:90%;

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:25px 0;

}

.logo img{

    width:50px;
    transition:.4s;

}

header.sticky .logo img{

    width:80px;

}

.nav-links{

    display:flex;

    list-style:none;

}

.nav-links li{

    margin-left:35px;

}

.nav-links li a{

    text-decoration:none;

    color:white;

    font-size:18px;

    font-weight:500;

    transition:.4s;

}

.nav-links li a:hover{

    color:#d8b36a;

}

/*=========================
      DROPDOWN MENU
=========================*/

.dropdown{

    position:relative;

}

.dropdown-menu{

    position:absolute;

    top:100%;

    left:0;

    background:#fff;

    min-width:240px;

    list-style:none;

    padding:10px 0;

    border-radius:8px;

    box-shadow:0 10px 30px rgba(0,0,0,0.15);

    opacity:0;

    visibility:hidden;

    transform:translateY(15px);

    transition:0.3s ease;

    z-index:999;

}

.dropdown:hover .dropdown-menu{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.dropdown-menu li{

    width:100%;

}

.dropdown-menu li a{

    display:block;

    padding:12px 20px;

    color:#333;

    text-decoration:none;

    transition:0.3s;

    font-size:15px;

}

.dropdown-menu li a:hover{

    /* background:#d7ba7a;

    color:#fff; */

    background:#F8E8B5;

    color:#222;
    font-weight:600;

}

/*=========================
        HERO
=========================*/

.hero{

    position:relative;

    height:100vh;

    overflow:hidden;

}

.slider{

    width:100%;

    height:100%;

    position:relative;

}

.slide{

    position:absolute;

    width:100%;

    height:100%;

    opacity:1;

    transition:1s ease;

    background:url("../images/Club Photos/CLUBE GASPAR DIAS - DRONE PHOTOS (3).jpg")
               center center/cover no-repeat;

}

.slide.active{

    opacity:1;

}

/* slide zoom out OPtioN */
.slide img{

    width:100%;
    height:100%;
    object-fit:cover;

    transform:scale(1.15);

    animation:heroZoomOut 8s ease forwards;

}
@keyframes heroZoomOut{

    from{

        transform:scale(1.15);

    }

    to{

        transform:scale(1);

    }

}

.overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.45);

}

.hero-content{

    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:white;
    z-index:10;

    width:90%;
    max-width:1200px;

}

.hero-content h1{

   font-family:'Libre Baskerville', serif;
    font-size:clamp(35px,6vw,64px);
    font-weight:700;
    line-height:1.2;
    letter-spacing:1px;
    margin:20px 0;

}

.hero-content span{

    color:#fcc659;
    letter-spacing:5px;
    font-size:18px;
    font-weight:600;

}
.hero-content p{

    font-size:20px;
    margin-bottom:40px;
    line-height:1.8;

}

.buttons{

    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:30px;

}

.hero-content{

    animation:fadeUp 1.2s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translate(-50%,-30%);

    }

    to{

        opacity:1;
        transform:translate(-50%,-50%);

    }

}
.prev,
.next{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:55px;

    height:55px;

    border:none;

    background:rgba(48, 26, 26, 0.3);

    color:white;

    font-size:30px;

    cursor:pointer;

    z-index:100;

    border-radius:50%;

}

.prev{

    left:25px;

}

.next{

    right:25px;

}

.prev:hover,
.next:hover{

    background:#C9A14A;

}


/*=========================
      HERO DOTS
=========================*/

.slider-dots{

    position:absolute;

    bottom:40px;

    left:50%;

    transform:translateX(-50%);

    display:flex;

    gap:12px;

    z-index:100;

}

.dot{

    width:14px;

    height:14px;

    border-radius:50%;

    background:white;

    cursor:pointer;

    opacity:.5;

    transition:.4s;

}

.dot.active{

    background:#C9A14A;

    opacity:1;

    transform:scale(1.3);

}

/* ================= ABOUT ================= */

.about{

    width:90%;
    margin:100px auto;
    display:flex;
    align-items:center;
    gap:70px;
}

@media(max-width:768px){

.about{

flex-direction:column;

text-align:center;

}

}
.about-image{

    flex:1;
}

.about-image img{

    width:100%;
    border-radius:12px;
}

.about-content{

    flex:1;
}

.about-content span{

    color:#d8b36a;
    letter-spacing:3px;
    font-weight:600;
}

.about-content h2{

    font-size:40px;
    margin:20px 0;
    font-family:'Libre Baskerville',serif;
}

.about-content p{

    color:#666;
    line-height:1.9;
    margin-bottom:35px;
}


/* ==========================================
            BANQUETS SECTION
========================================== */

.banquets-section {
    padding: 100px 7%;
    background: #f8f6f1;
}


/* ==========================================
            CONTAINER
========================================== */

.banquets-container {
    max-width: 1250px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;
    gap: 70px;
}


/* ==========================================
            IMAGE
========================================== */

.banquets-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.banquets-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    display: block;

    transition: transform 0.6s ease;
}

.banquets-image:hover img {
    transform: scale(1.04);
}


/* ==========================================
            CONTENT
========================================== */

.banquets-content {
    max-width: 560px;
}


.banquets-label {
    display: block;

    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 600;

    color: #a27b3d;

    margin-bottom: 14px;
}


/* ==========================================
            HEADING
========================================== */

.banquets-content h2 {
    font-family: "Cormorant Garamond", serif;

    font-size: 50px;
    font-weight: 500;

    line-height: 1.15;

    color: #222;

    margin: 0 0 22px;
}


/* ==========================================
            DESCRIPTION
========================================== */

.banquets-content p {
    font-family: "Lora", serif;

    font-size: 15px;
    line-height: 1.8;

    color: #666;

    margin: 0 0 30px;
}


/* ==========================================
            BUTTON
========================================== */

.banquets-btn {
    display: inline-flex;
    align-items: center;

    text-decoration: none;

    font-family: "Poppins", sans-serif;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 1.5px;

    color: #222;

    border-bottom: 1px solid #a27b3d;

    padding-bottom: 7px;

    transition: all 0.3s ease;
}


.banquets-btn span {
    font-size: 18px;

    margin-left: 10px;

    transition: margin-left 0.3s ease;
}


.banquets-btn:hover {
    color: #a27b3d;
}


.banquets-btn:hover span {
    margin-left: 16px;
}


/* ==========================================
            TABLET
========================================== */

@media (max-width: 1024px) {

    .banquets-section {
        padding: 80px 5%;
    }

    .banquets-container {
        gap: 45px;
    }

    .banquets-image {
        height: 400px;
    }

    .banquets-content h2 {
        font-size: 43px;
    }

    .banquets-content p {
        font-size: 14px;
    }

}


/* ==========================================
            MOBILE
========================================== */

@media (max-width: 768px) {

    .banquets-section {
        padding: 65px 20px;
    }

    .banquets-container {
        display: flex;
        flex-direction: column;

        gap: 35px;
    }


    /* IMAGE */

    .banquets-image {
        width: 100%;
        height: 300px;
    }


    /* CONTENT */

    .banquets-content {
        max-width: 100%;
        text-align: center;
    }

    .banquets-label {
        font-size: 11px;
        letter-spacing: 2.5px;
        margin-bottom: 10px;
    }

    .banquets-content h2 {
        font-size: 38px;
        line-height: 1.15;

        margin-bottom: 18px;
    }

    .banquets-content p {
        font-size: 14px;
        line-height: 1.7;

        margin-bottom: 25px;
    }


    /* BUTTON */

    .banquets-btn {
        justify-content: center;
    }

}


/* ==========================================
            SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .banquets-section {
        padding: 55px 15px;
    }

    .banquets-container {
        gap: 28px;
    }

    .banquets-image {
        height: 250px;
    }

    .banquets-content h2 {
        font-size: 34px;
    }

    .banquets-content p {
        font-size: 13px;
        line-height: 1.7;
    }

    .banquets-btn {
        font-size: 11px;
    }

}
/*==========================
        FACILITIES
===========================*/

.facilities{

    padding:100px 8%;
    background:#ffffff;

}

.section-heading{

    text-align:center;
    margin-bottom:60px;

}

.section-heading span{

    color:#c9a14a;
    font-size:15px;
    font-weight:600;
    letter-spacing:2px;

}

.section-heading h2{

   font-size:clamp(30px,5vw,52px);
    font-family:"Libre Baskerville",serif;
    margin:15px 0;

}

.section-heading p{

    max-width:750px;
    margin:auto;
    color:#666;
    line-height:1.8;

}

/* Grid */

.facility-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;

}

@media(max-width:768px){

.facility-grid{

grid-template-columns:1fr;

}

}

/* Card */

.facility-card{

    position:relative;
    overflow:hidden;
    border-radius:20px;
    height:390px;
    cursor:pointer;

}

.facility-card img{

    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s;

}

.facility-card:hover img{

    transform:scale(1.08);

}

/* Dark Overlay */

.facility-card::before{

    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
    rgba(0,0,0,.80),
    rgba(0,0,0,.15));

}

/* Content */

.facility-content{

    position:absolute;
    left:35px;
    right:35px;
    bottom:35px;
    z-index:2;
    color:#fff;

}

.facility-content h3{

    font-size:38px;
    margin-bottom:12px;
    font-weight:700;

}

.facility-content p{

    font-size:17px;
    line-height:1.7;
    margin-bottom:20px;

}

/* Button */

.facility-btn{

    display:inline-block;
    padding:12px 28px;
    background:#c9a14a;
    color:#fff;
    text-decoration:none;
    border-radius:30px;
    font-weight:600;
    transition:0.3s;

}

.facility-btn:hover{

    background:#fff;
    color:#c9a14a;

}
/*=========================
        POPUP MODAL
=========================*/

.modal{
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background: rgba(0,0,0,0.7);
}

.modal-content{
    background: #fff;
    width: 90%;
    max-width: 1000px;
    margin: 40px auto;
    padding: 30px;
    border-radius: 15px;
    position: relative;
    animation: popup .4s ease;
    max-height:90vh;
    overflow-y:auto;
}

/* @keyframes popup{
    from{
        opacity:0;
        transform:scale(.8);
    }
    to{
        opacity:1;
        transform:scale(1);
    }
} */

.close{
    position:absolute;
    top:15px;
    right:25px;
    font-size:35px;
    font-weight:bold;
    cursor:pointer;
    color:#333;
}

.close:hover{
    color:#C9A14A;
}

/*=========================
        ROOM TABS
=========================*/

.room-tabs{
    display:flex;
    justify-content:center;
    gap:15px;
    margin:25px 0;
    flex-wrap:wrap;
}

.tab-btn{
    background:#f1f1f1;
    border:none;
    padding:12px 30px;
    border-radius:30px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.tab-btn:hover{
    background:#C9A14A;
    color:#fff;
}

.tab-btn.active{
    background:#C9A14A;
    color:#fff;
}


/*=========================
      TAB CONTENT
=========================*/

.tab-content{
    display:none;
}

.tab-content.active{
    display:block;
}

/*=========================
      MAIN IMAGE
=========================*/


.main-room-img{
    width:100%;
    height:500px;
    object-fit:contain;
    object-position:center;
    background:#f5f5f5;
    border-radius:12px;
}

/*=========================
      THUMBNAILS
=========================*/
.thumbs{
     display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
    margin-top:30px;
    justify-items:center;
}

.thumbs img{
    width:100%;
    max-width:320px;
    height:220px;
    object-fit:cover;
    border-radius:12px;
    cursor:pointer;
    transition:0.4s ease;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
}

.thumbs img:hover{
    transform:scale(1.05);
    box-shadow:0 15px 35px rgba(0,0,0,.25);
}

/*=========================
      TAB IMAGES
=========================*/

.tab-image{
    width:100%;
    border-radius:12px;
}

/*=========================
      CALL TO ACTION
=========================*/

.cta{

    background:url("../images/cta.jpg") center center/cover no-repeat;
    height:500px;
    position:relative;
    margin-top:100px;

}

.cta-overlay{

    width:100%;
    height:100%;
    background:rgba(0,0,0,.60);

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;

}

.cta-content{

    width:70%;
    color:white;

}

.cta-content span{

    color:#C9A14A;
    letter-spacing:4px;
    font-weight:600;

}

.cta-content h2{

    font-size:55px;
    font-family:'Libre Baskerville',serif;
    margin:20px 0;

}

.cta-content p{

    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;

}

.cta-buttons{

    display:flex;
    justify-content:center;
    gap:20px;

}


/* ================= GALLERY ================= */

.gallery{
    padding:80px 8%;
}

.gallery-category{
    margin-bottom:60px;
}

.gallery-category h3{
    margin-bottom:25px;
    font-size:28px;
    color:#222;
}

.gallerySwiper{
    width:100%;
    position:relative;
    padding:10px 45px;
}

.gallerySwiper .swiper-slide{
    overflow:hidden;
    border-radius:15px;
}

.gallerySwiper .swiper-slide img{
    width:100%;
    height:320px;
    object-fit:cover;
    display:block;
    border-radius:15px;
    transition:.4s;
}

.gallerySwiper .swiper-slide img:hover{
    transform:scale(1.05);
}

/* Navigation Buttons */

.gallerySwiper .swiper-button-next,
.gallerySwiper .swiper-button-prev{

    width:45px;
    height:45px;
    background:#fff;
    border-radius:50%;
    color:#222;
    box-shadow:0 4px 12px rgba(0,0,0,.2);

}

.gallerySwiper .swiper-button-next::after,
.gallerySwiper .swiper-button-prev::after{

    font-size:18px;
    font-weight:bold;

}

.gallerySwiper .swiper-button-next:hover,
.gallerySwiper .swiper-button-prev:hover{

    background:#f3f3f3;

}

/* Responsive */

@media(max-width:992px){

.gallerySwiper .swiper-slide img{
    height:260px;
}

}

@media(max-width:768px){

.gallerySwiper{
    padding:10px 35px;
}

.gallerySwiper .swiper-slide img{
    height:220px;
}

.gallerySwiper .swiper-button-next,
.gallerySwiper .swiper-button-prev{

    width:38px;
    height:38px;

}

.gallerySwiper .swiper-button-next::after,
.gallerySwiper .swiper-button-prev::after{

    font-size:15px;

}

}
/*=========================
          EVENTS
=========================*/

.events {
    padding: 80px 8%;
    background: #f8f9fa;
}

.events-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px; /* Space between featured cards grid and highlights section */
    max-width: 1200px;
    margin: 0 auto;
}

/* Container for multiple featured event cards side-by-side */
.featured-events-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    width: 200%;
}

/* Compact Card Styling */
.event-card {
    position: relative; /* CRITICAL: Keeps badge pinned inside card */
    width: 280px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #eaeaea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #c9a14a;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

/* Poster image fit */
.event-card img {
    width: 100%;
    height: 240px;
    object-fit: contain;
    background-color: #fafafa;
    padding: 10px;
}

/* Compact Content Styling */
.event-content {
    padding: 16px 20px 20px;
    text-align: left;
}

.event-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #16304d;
}

.event-details p {
    font-size: 13px;
    margin: 5px 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
}

.event-details span {
    font-weight: 600;
    color: #16304d;
}

.highlight-time {
    color: #c9a14a !important;
    font-weight: 700;
    font-size: 14px !important;
}

/* --- Highlights Tile Grid --- */
.event-highlights {
    width: 100%;
}

.highlights-header {
    display: flex; /* Added display: flex */
    align-items: center;
    justify-content: center; /* Properly centers title + year pill */
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.highlights-header h3 {
    font-size: 32px;
    color: #16304d;
    font-weight: 700;
    margin: 0;
}

.year-pill {
    background: #16304d;
    color: #c9a14a;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

/* Responsive Grid for Highlight Tiles */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.highlight-tile {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: #ffffff;
    border-radius: 14px;
    text-decoration: none;
    border: 1px solid #eef0f3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    gap: 15px;
}

.highlight-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(22, 48, 77, 0.1);
    border-color: #c9a14a;
    background: #fff;
}

.active-tile {
    border-left: 4px solid #c9a14a;
}

.tile-icon {
    font-size: 24px;
    background: #f4f6f9;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.tile-info {
    flex-grow: 1;
}

.tile-info h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #16304d;
    line-height: 1.3;
}

.tile-tag {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 3px;
    display: block;
}

.tile-arrow {
    color: #c9a14a;
    font-size: 18px;
    font-weight: bold;
    opacity: 0.5;
    transition: 0.3s;
}

.highlight-tile:hover .tile-arrow {
    opacity: 1;
    transform: translateX(4px);
}

/*=========================
      EVENT MODAL
=========================*/

.event-modal{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.75);
    z-index:9999;
    justify-content:center;
    align-items:center;
    padding:40px;
}

.event-modal-content{
    width:90%;
    max-width:1100px;
    max-height:90vh;
    overflow-y:auto;
    background:#fff;
    border-radius:18px;
    padding:30px;
    position:relative;
}

.event-close{
    position:absolute;
    right:25px;
    top:15px;
    font-size:35px;
    cursor:pointer;
    font-weight:bold;
}

#eventTitle{
    text-align:center;
    color:#16304d;
    margin-bottom:20px;
}

/* Main Image */

.main-event-image{
    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:15px;
    display:block;
    margin-bottom:20px;
}

/* Thumbnail Gallery */

.event-thumbnails{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
    margin-bottom:25px;
}

.event-thumbnails img{
    width:100%;
    height:140px;
    object-fit:cover;
    border-radius:10px;
    cursor:pointer;
    transition:.3s;
}

.event-thumbnails img:hover{
    transform:scale(1.05);
}

.event-description{
    margin-top:15px;
}

.event-description h3{
    color:#16304d;
    margin-bottom:10px;
}

.event-description p{
    line-height:1.8;
    color:#555;
}

@media(max-width:768px){

.main-event-image{
    height:250px;
}

.event-thumbnails{
    grid-template-columns:repeat(2,1fr);
}

.event-thumbnails img{
    height:100px;
}

}
/* --- Responsive View --- */
@media(max-width: 580px) {
    .featured-events-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .event-card {
        width: 100%;
        max-width: 320px;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .highlights-header h3 {
        font-size: 24px;
    }
}
/* ==========================================
           SIGNATURE EVENTS SECTION
========================================== */

.events-section {
    padding: 100px 7%;
    background: #f8f6f1;
}


/* ==========================================
            MAIN HEADING
========================================== */

.events-heading {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 70px;
}

.events-heading > span {
    display: block;
    font-size: 13px;
    letter-spacing: 4px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #a27b3d;
}

.events-heading h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 52px;
    font-weight: 500;
    margin: 0 0 18px;
    color: #222;
    line-height: 1.1;
}

.events-heading p {
    font-family: "Lora", serif;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}


/* ==========================================
            CATEGORY
========================================== */

.events-category {
    max-width: 1250px;
    margin: 0 auto 100px;
}

.category-heading {
    text-align: center;
    margin-bottom: 45px;
}

.category-heading span {
    display: block;
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 600;
    color: #a27b3d;
    margin-bottom: 8px;
}

.category-heading h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    font-weight: 500;
    color: #222;
    margin: 0;
    line-height: 1.2;
}


/* ==========================================
            WEEKLY EVENTS
========================================== */

.weekly-events-grid {
    display: grid;
    grid-template-columns: repeat(3, 280px);
    justify-content: center;
    gap: 25px;
}


/* ==========================================
            EVENT POSTER
========================================== */

.event-poster {
    width: 280px;
    background: #fff;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.event-poster:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}


/* ==========================================
            EVENT IMAGE
========================================== */

.event-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.event-poster:hover .event-image img {
    transform: scale(1.05);
}


/* ==========================================
            EVENT INFO
========================================== */

.event-info {
    padding: 22px 22px 24px;
}

.event-frequency {
    display: block;
    font-size: 20px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #a27b3d;
    margin-bottom: 8px;
}

.event-info h4 {
    font-family: "Cormorant Garamond", serif;
    font-size: 27px;
    font-weight: 600;
    color: #222;
    margin: 0 0 10px;
    line-height: 1.2;
}

.event-info p {
    font-family: "Lora", serif;
    font-size: 13px;
    line-height: 1.7;
    color: #666;
    margin: 0 0 18px;
}


/* ==========================================
            BUTTON
========================================== */

.event-btn {
    border: none;
    background: transparent;
    padding: 0;
    font-size: 12px;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: #222;
    cursor: pointer;
    transition: color 0.3s ease;
}

.event-btn span {
    margin-left: 8px;
    font-size: 17px;
    transition: margin-left 0.3s ease;
}

.event-btn:hover {
    color: #a27b3d;
}

.event-btn:hover span {
    margin-left: 14px;
}


/* ==========================================
            UPCOMING EVENTS
========================================== */

.upcoming-events-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.upcoming-event {
    display: grid;
    grid-template-columns: 40% 60%;
    background: #fff;
    min-height: 220px;
    max-height: 240px;
    overflow: hidden;
}


/* ==========================================
            REVERSE SECOND EVENT
========================================== */

.upcoming-event.reverse {
    grid-template-columns: 60% 40%;
}

.upcoming-event.reverse .upcoming-image {
    order: 2;
}

.upcoming-event.reverse .upcoming-content {
    order: 1;
}


/* ==========================================
            UPCOMING IMAGE
========================================== */

.upcoming-image {
    width: 100%;
    height: 240px;
    min-height: 240px;
    overflow: hidden;
}

.upcoming-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.upcoming-event:hover .upcoming-image img {
    transform: scale(1.04);
}


/* ==========================================
            UPCOMING CONTENT
========================================== */

.upcoming-content {
    display: flex;
    align-items: center;
    padding: 25px 35px;
    gap: 25px;
}


/* ==========================================
            DATE
========================================== */

.event-date {
    min-width: 65px;
    text-align: center;
    border-right: 1px solid #ddd;
    padding-right: 20px;
}

.event-date span {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-size: 40px;
    line-height: 1;
    color: #222;
}

.event-date small {
    display: block;
    font-size: 9px;
    letter-spacing: 2px;
    margin-top: 3px;
    color: #a27b3d;
}


/* ==========================================
            UPCOMING DETAILS
========================================== */

.upcoming-details {
    flex: 1;
}

.upcoming-details h4 {
    font-family: "Cormorant Garamond", serif;
    font-size: 27px;
    font-weight: 600;
    color: #222;
    margin: 0 0 8px;
    line-height: 1.2;
}

.upcoming-details p {
    font-family: "Lora", serif;
    font-size: 13px;
    line-height: 1.6;
    color: #666;
    margin: 0 0 15px;
}

.event-time {
    font-size: 12px !important;
    letter-spacing: 1px;
    color: #333 !important;
    margin-bottom: 10px !important;
}


/* ==========================================
            TABLET
========================================== */

@media (max-width: 1024px) {

    .events-section {
        padding: 80px 5%;
    }


    /* MAIN HEADING */

    .events-heading {
        margin-bottom: 60px;
    }

    .events-heading h2 {
        font-size: 46px;
    }


    /* CATEGORY */

    .events-category {
        margin-bottom: 80px;
    }

    .category-heading {
        margin-bottom: 35px;
    }

    .category-heading h3 {
        font-size: 38px;
    }


    /* WEEKLY EVENTS */

    .weekly-events-grid {
        grid-template-columns: repeat(3, 250px);
        gap: 20px;
    }

    .event-poster {
        width: 250px;
    }

    .event-image {
        height: 250px;
    }

    .event-info {
        padding: 20px;
    }

    .event-info h4 {
        font-size: 25px;
    }


    /* UPCOMING EVENTS */

    .upcoming-event {
        grid-template-columns: 40% 60%;
        min-height: 210px;
        max-height: 220px;
    }

    .upcoming-event.reverse {
        grid-template-columns: 60% 40%;
    }

    .upcoming-image {
        height: 220px;
        min-height: 220px;
    }

    .upcoming-content {
        padding: 20px 25px;
        gap: 20px;
    }

    .event-date {
        min-width: 60px;
        padding-right: 15px;
    }

    .event-date span {
        font-size: 38px;
    }

    .upcoming-details h4 {
        font-size: 25px;
    }

    .upcoming-details p {
        font-size: 12px;
        line-height: 1.5;
    }

}


/* ==========================================
            MOBILE
========================================== */

@media (max-width: 768px) {

    .events-section {
        padding: 65px 20px;
    }


    /* MAIN HEADING */

    .events-heading {
        margin-bottom: 55px;
    }

    .events-heading > span {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .events-heading h2 {
        font-size: 40px;
        line-height: 1.1;
    }

    .events-heading p {
        font-size: 14px;
        line-height: 1.7;
    }


    /* CATEGORY */

    .events-category {
        margin-bottom: 70px;
    }

    .category-heading {
        margin-bottom: 30px;
    }

    .category-heading span {
        font-size: 10px;
        letter-spacing: 2.5px;
    }

    .category-heading h3 {
        font-size: 35px;
    }


    /* ======================================
            WEEKLY EVENTS
    ====================================== */

    .weekly-events-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .event-poster {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .event-image {
        width: 100%;
        height: 260px;
    }

    .event-info {
        padding: 20px 22px 23px;
    }

    .event-frequency {
        font-size: 20px;
        margin-bottom: 7px;
    }

    .event-info h4 {
        font-size: 26px;
        margin-bottom: 9px;
    }

    .event-info p {
        font-size: 13px;
        line-height: 1.65;
        margin-bottom: 17px;
    }


    /* ======================================
            UPCOMING EVENTS
    ====================================== */

    .upcoming-events-list {
        gap: 20px;
    }

    .upcoming-event,
    .upcoming-event.reverse {
        display: flex;
        flex-direction: column;
        min-height: 0;
        max-height: none;
    }

    .upcoming-event.reverse .upcoming-image,
    .upcoming-event.reverse .upcoming-content {
        order: initial;
    }


    /* UPCOMING IMAGE */

    .upcoming-image {
        width: 100%;
        height: 200px;
        min-height: 200px;
    }


    /* UPCOMING CONTENT */

    .upcoming-content {
        display: flex;
        align-items: flex-start;
        padding: 22px 20px;
        gap: 18px;
    }


    /* DATE */

    .event-date {
        min-width: 55px;
        padding-right: 15px;
    }

    .event-date span {
        font-size: 34px;
    }

    .event-date small {
        font-size: 8px;
        letter-spacing: 1.5px;
    }


    /* UPCOMING DETAILS */

    .upcoming-details h4 {
        font-size: 25px;
        margin-bottom: 8px;
    }

    .upcoming-details p {
        font-size: 12px;
        line-height: 1.6;
        margin-bottom: 12px;
    }

    .event-time {
        font-size: 11px !important;
    }

}


/* ==========================================
            SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .events-section {
        padding: 55px 15px;
    }


    /* MAIN HEADING */

    .events-heading {
        margin-bottom: 45px;
    }

    .events-heading > span {
        font-size: 10px;
        letter-spacing: 2.5px;
    }

    .events-heading h2 {
        font-size: 34px;
    }

    .events-heading p {
        font-size: 13px;
    }


    /* CATEGORY */

    .events-category {
        margin-bottom: 60px;
    }

    .category-heading {
        margin-bottom: 25px;
    }

    .category-heading h3 {
        font-size: 31px;
    }


    /* WEEKLY EVENTS */

    .weekly-events-grid {
        gap: 20px;
    }

    .event-poster {
        max-width: 300px;
    }

    .event-image {
        height: 260px;
    }

    .event-info {
        padding: 18px 20px 21px;
    }

    .event-info h4 {
        font-size: 25px;
    }

    .event-info p {
        font-size: 12.5px;
        line-height: 1.65;
    }


    /* UPCOMING EVENTS */

    .upcoming-image {
        height: 200px;
        min-height: 200px;
    }

    .upcoming-content {
        padding: 22px 18px;
        gap: 15px;
    }

    .event-date {
        min-width: 52px;
        padding-right: 13px;
    }

    .event-date span {
        font-size: 32px;
    }

    .event-date small {
        font-size: 8px;
        letter-spacing: 1px;
    }

    .upcoming-details h4 {
        font-size: 24px;
    }

    .upcoming-details p {
        font-size: 12px;
        line-height: 1.6;
    }

    .event-time {
        font-size: 11px !important;
    }

}
/*=========================
       MEMBERSHIP
=========================*/

.membership{

    padding:100px 8%;

    background:#f8f8f8;

}

.membership-container{

    max-width:1000px;
    margin:auto;
    background:#fff;
    border-radius:25px;
    padding:70px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.membership-content{

    text-align:center;

}

.membership-content span{

    color:#C9A14A;

    letter-spacing:4px;

    font-weight:600;

}

.membership-content h2{

    font-size:30px;
    margin:15px 0 30px;

}

.membership-content p{

    max-width:750px;
    margin:0 auto 45px;
    line-height:1.9;
    font-size:20px;
    color:#555;

}

.membership-benefits{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-bottom:45px;

}

@media(max-width:768px)
{
    
.membership-container
{
    padding:35px 20px;
}

.membership-benefits
{
   grid-template-columns:1fr;
}

}

.benefit{

    background:white;

    padding:15px;

    border-radius:10px;

    box-shadow:0 5px 15px rgba(0,0,0,.08);

}

.membership-content .btn-primary{

    display:inline-block;

}
/*=========================
      WHY CHOOSE US
=========================*/

.why-us{

    padding:100px 8%;
    background:#ffffff;

}

.why-container{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:60px;

}
@media(max-width:768px){

.why-container{

grid-template-columns:1fr;

}

}

.why-card{

    position:relative;
    overflow:hidden;
    border-radius:15px;
    cursor:pointer;
    transition:.4s;

}

.why-card:hover{
    
    transform:translateY(-10px);

    box-shadow:0 15px 35px rgba(0,0,0,.18);

}

.icon{

    font-size:50px;
    margin-bottom:20px;

}

.why-card h3{

    margin-bottom:15px;
    font-size:24px;

}

.why-card p{

    color:#666;
    line-height:1.7;

}


/*--------------CONTACT--------------*/
.contact-section{
    padding:100px 8%;
    background:#f7f7f7;
}

.section-heading h2{
    font-family: "Libre Baskerville", serif;
    font-size:30px;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:35px;
    align-items:start;
}

.right-column{
    display:flex;
    flex-direction:column;
    gap:30px;
}

/* LEFT CARD */

.contact-card{
    background:#16304d;
    color:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
    display:flex;
    flex-direction:column;
    height:820px; /* Same height as map */
}

.contact-card h3{
    background:#c9a14a;
    color:#fff;
    text-align:center;
    padding:14px;
    margin:0;
    font-size:24px;
}

.contact-item{
    display:flex;
    gap:14px;
    padding:14px 20px;
    border-bottom:1px solid rgba(255,255,255,.12);
}

.contact-item:last-child{
    border-bottom:none;
}

.contact-item i{
    font-size:20px;
    width:24px;
    margin-top:3px;
}

.contact-item h4{
    font-size:17px;
    margin:0 0 4px;
}

.contact-item p{
    font-size:14px;
    line-height:1.4;
    margin:2px 0;
}

.contact-item a{
    display:inline-block;
    font-size:14px;
    margin:2px 0;
    color:#fff;
    text-decoration:none;
}

.contact-item a:hover{
    color:#c9a14a;
}

/* MAP */

.contact-map{
    position:relative;
}

.contact-map iframe{
    width:100%;
    height:300px;
    border:none;
    border-radius:15px;
    display:block;
}

.contact-map{
    position: relative;
}
.map-button-wrapper{
    text-align:center;
    margin-top:20px;
}

.directions-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;

    background:#c9a14a;
    color:#fff;
    text-decoration:none;

    padding:14px 32px;
    border-radius:40px;

    font-size:16px;
    font-weight:600;

    transition:.35s;
    box-shadow:0 12px 30px rgba(0,0,0,.18);
}

.directions-btn:hover{
    background:#16304d;
    transform:translateY(-3px);
    box-shadow:0 18px 35px rgba(0,0,0,.25);
}
/* MOBILE */

@media(max-width:991px){

.contact-wrapper{
    grid-template-columns:1fr;
}

.contact-card,
.contact-map{
    height:auto;
}

.contact-map iframe{
    height:450px;
}

}

@media(max-width:600px){

.contact-item{
    padding:18px;
}

.contact-card h3{
    font-size:24px;
}

.map-btn{
    left:50%;
    transform:translateX(-50%);
    width:220px;
    text-align:center;
}

}

/*=========================
      GET IN TOUCH
=========================*/

.contact-form-box{
    background:#fff;
    border-radius:15px;
    padding:35px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.contact-form-box h3{
    font-size:34px;
    color:#16304d;
    margin-bottom:8px;
}

.contact-form-box p{
    color:#777;
    margin-bottom:25px;
}

.contact-form-box input,
.contact-form-box textarea{

    width:100%;
    padding:15px 18px;
    margin-bottom:18px;

    border:1px solid #ddd;
    border-radius:10px;

    font-size:15px;
    outline:none;
    transition:.3s;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus{

    border-color:#c9a14a;
}

.contact-form-box button{

    width:100%;
    background:#16304d;
    color:#fff;

    border:none;
    padding:15px;

    border-radius:10px;

    font-size:17px;
    font-weight:600;
    cursor:pointer;

    transition:.3s;
}

.contact-form-box button:hover{

    background:#c9a14a;
}

@media(max-width:991px){

.contact-wrapper{
    grid-template-columns:1fr;
}

.right-column{
    margin-top:30px;
}

.contact-card{
    height:auto;
}

.contact-map iframe{
    height:350px;
}

}

/*=========================
          FOOTER
=========================*/

footer{
    background: linear-gradient(135deg,#0F2742,#081523);
    color:#fff;
    margin-top:80px;
}

.footer-container{
    width:90%;
    max-width:1400px;
    margin:auto;
    padding:70px 0;
    display:grid;
    grid-template-columns:2fr 1fr 1.3fr;
    gap:60px;
}

/*=========================
        HEADINGS
=========================*/

.footer-logo h3,
.footer-links h3,
.footer-contact h3{
    font-size:26px;
    color:#d4af37;
    margin-bottom:25px;
    font-weight:700;
    position:relative;
}

.footer-logo h3::after,
.footer-links h3::after,
.footer-contact h3::after{

    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:55px;
    height:3px;
    background:#d4af37;
    border-radius:20px;
}

/*=========================
        LOGO
=========================*/

.footer-logo img{
    width:95px;
    margin-bottom:20px;
}

.footer-logo p{
    color:#ddd;
    line-height:1.9;
    font-size:15px;
    max-width:350px;
}

/*=========================
      QUICK LINKS
=========================*/

.footer-links ul{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin:14px 0;
}

.footer-links a{
    color:#ddd;
    text-decoration:none;
    transition:.35s;
    font-size:16px;
}

.footer-links a:hover{
    color:#d4af37;
    padding-left:8px;
}

/*=========================
      CONTACT
=========================*/

.footer-contact p{
    display:flex;
    align-items:center;
    gap:14px;
    margin:18px 0;
    color:#ddd;
    font-size:15px;
    line-height:1.7;
}

.footer-contact i{
    color:#d4af37;
    font-size:18px;
    min-width:20px;
}

.footer-contact a{
    color:#ddd;
    text-decoration:none;
    transition:.3s;
}

.footer-contact a:hover{
    color:#d4af37;
}

/*=========================
      COPYRIGHT
=========================*/

.copyright{
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
    padding:22px;
    color:#ccc;
    font-size:14px;
    background:#07131f;
}

/*=========================
      RESPONSIVE
=========================*/

@media(max-width:991px){

.footer-container{
    grid-template-columns:1fr;
    gap:45px;
}

.footer-logo,
.footer-links,
.footer-contact{
    text-align:center;
}

.footer-logo p{
    margin:auto;
}

.footer-logo h3::after,
.footer-links h3::after,
.footer-contact h3::after{
    left:50%;
    transform:translateX(-50%);
}

.footer-contact p{
    justify-content:center;
}
}

/*=========================
      STICKY NAVBAR
=========================*/

header{

    transition:.4s;

}

header.sticky{

    position:fixed;

    background:white;

    box-shadow:0 5px 20px rgba(0,0,0,.1);

}

header.sticky .nav-links a{

    color:#222;

}

header.sticky .nav-links a:hover{

    color:#C9A14A;

}

header.sticky .navbar{

    padding:15px 0;

}

/*=========================
      BACK TO TOP
=========================*/

#topBtn{

    position:fixed;

    bottom:30px;

    right:30px;

    width:50px;

    height:50px;

    border:none;

    background:#C9A14A;

    color:white;

    font-size:22px;

    border-radius:50%;

    cursor:pointer;

    display:none;

    z-index:999;

    transition:0.3s;

}

#topBtn:hover{

    background:#0F2742;

}

.fade{

opacity:0;

transform:translateY(40px);

transition:1s;

}

.fade.show{

opacity:1;

transform:translateY(0);

}


/*=========================
      MOBILE MENU
=========================*/

.menu-toggle {
    display: none;
    font-size: 34px;
    color: white;
    cursor: pointer;
    line-height: 1;
    z-index: 1001;
}

header.sticky .menu-toggle {
    color: #222;
}


/*=========================
      TABLET / MOBILE
=========================*/

@media (max-width: 992px) {

    .menu-toggle {
        display: block;
        position: relative;
        z-index: 1001;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;

        background: white;

        display: none;
        flex-direction: column;

        align-items: center;
        justify-content: flex-start;

        text-align: center;

        padding: 15px 0 20px;
        margin: 0;

        box-shadow: 0 10px 20px rgba(0,0,0,.1);

        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        margin: 0;
        padding: 12px 0;
    }

    .nav-links li a {
        display: block;
        width: 100%;
        color: #222;
        text-decoration: none;
    }

}
/*=========================================
        AFFILIATED CLUBS
=========================================*/
/* LOCK BACKGROUND WHEN MODAL IS OPEN */

body.modal-open{
    overflow:hidden;
}

.affiliation-modal{

    width:95%;
    max-width:1250px;

    max-height:95vh;

    overflow:auto;

    border-radius:12px;

    padding:30px;

}

.club-subtitle{

    text-align:center;

    color:#666;

    margin-bottom:25px;

    font-size:15px;

}

/*=========================
        SEARCH
=========================*/

.club-search{

    display:flex;

    justify-content:center;

    margin-bottom:25px;

}

.club-search input{

    width:420px;

    padding:14px 22px;

    border:1px solid #ddd;

    border-radius:30px;

    font-size:15px;

    outline:none;

    transition:.3s;

}

.club-search input:focus{

    border-color:#16304d;

    box-shadow:0 0 12px rgba(22,48,77,.15);

}

/*=========================
        TABS
=========================*/

.club-tabs{

    display:flex;

    justify-content:center;

    gap:15px;

    margin-bottom:30px;

}

.club-tab{

    padding:12px 26px;

    border:none;

    border-radius:30px;

    background:#efefef;

    cursor:pointer;

    font-size:15px;

    font-weight:600;

    transition:.35s;

}

.club-tab:hover{

    background:#16304d;

    color:#fff;

}

.club-tab.active{

    background:#16304d;

    color:#fff;

}

/*=========================
        TABLE
=========================*/

.club-table-wrapper{

    border:1px solid #ddd;

    border-radius:10px;

    overflow-x:auto;

    max-height:60vh;

    overflow-y:auto;

    background:#fff;

}

.club-table{

    width:100%;

    border-collapse:collapse;

}

.club-table thead{

    position:sticky;

    top:0;

    z-index:5;

}

.club-table th{

    background:#d7d2f2;

    color:#16304d;

    padding:16px;

    text-align:left;

    font-size:15px;

    font-weight:700;

}

.club-table td{

    padding:15px;

    border-bottom:1px solid #ececec;

    font-size:14px;

    color:#444;

}

.club-table tbody tr:nth-child(even){

    background:#fafafa;

}

.club-table tbody tr:hover{

    background:#eef5ff;

}

.club-table::-webkit-scrollbar{

    width:8px;

}

.club-table-wrapper::-webkit-scrollbar-thumb{

    background:#16304d;

    border-radius:20px;

}

/*=========================
        MOBILE
=========================*/

@media(max-width:900px){

.club-tabs{

flex-wrap:wrap;

}

.club-search input{

width:100%;

}

.club-table-wrapper{

overflow-x:auto;

}

.club-table{

min-width:850px;

}

}
/*==========================
    ESTELA HALL MODAL
==========================*/

.hall-modal{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.75);

    overflow-y:auto;

    padding:40px 20px;

    justify-content:center;

    align-items:center;

    z-index:9999;
}

.hall-modal-content{

    width:95%;
    max-width:1200px;

    background:#fff;

    border-radius:20px;

    margin:auto;

    padding:35px;

    position:relative;

    max-height:calc(100vh - 80px);

    overflow-y:auto;

}
@keyframes popup{
    from{
        opacity:0;
        transform:scale(.9);
    }
    to{
        opacity:1;
        transform:scale(1);
    }
}

/* Close Button */

.hall-close{
    position:absolute;
    top:15px;
    right:25px;
    font-size:38px;
    cursor:pointer;
    color:#16304d;
    transition:.3s;
}

.hall-close:hover{
    color:#C9A14A;
}

/* Heading */

.hall-modal-content h2{
    font-size:40px;
    color:#16304d;
    margin-bottom:8px;
}

.hall-subtitle{
    color:#666;
    font-size:18px;
    margin-bottom:35px;
}
@media(max-width:768px){

.hall-modal{

    padding:15px;

}

.hall-modal-content{

    width:100%;

    margin:0;

    max-height:100%;

    border-radius:15px;

}
}

/* Hall View Details Button */

.hall-btn{
    display:inline-block;
    background:#C9A14A;
    color:#fff;
    border:none;
    border-radius:12px;
    padding:14px 30px;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s ease;
    text-decoration:none;
    box-shadow:0 8px 20px rgba(201,161,74,0.35);
}

.hall-btn:hover{
    background:#b89037;
    transform:translateY(-3px);
    box-shadow:0 12px 25px rgba(201,161,74,0.45);
}

/*==========================
      MAIN LAYOUT
==========================*/

.hall-details{
    display:grid;
    grid-template-columns:55% 45%;
    gap:35px;
    align-items:flex-start;
}

/*==========================
      LEFT GALLERY
==========================*/

.hall-gallery{
    width:100%;
}

.hall-main-image{
    width:100%;
    height:430px;
    object-fit:cover;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.hall-thumbs{
    display:flex;
    gap:12px;
    margin-top:15px;
}

.hall-thumbs img{
    width:90px;
    height:70px;
    object-fit:cover;
    border-radius:10px;
    cursor:pointer;
    transition:.3s;
    border:3px solid transparent;
}

.hall-thumbs img:hover{
    border-color:#C9A14A;
    transform:scale(1.05);
}

/*==========================
      RIGHT SIDE
==========================*/

.hall-info{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.hall-section{
    background:#f8f8f8;
    padding:20px;
    border-radius:15px;
}

.hall-section h3{
    color:#16304d;
    margin-bottom:15px;
    font-size:24px;
}

.hall-section ul{
    padding:0;
    margin:0;
    list-style:none;
}

.hall-section li{
    margin-bottom:12px;
    font-size:17px;
    color:#555;
    line-height:1.6;
}

/*==========================
      PRICE CARD
==========================*/

.hall-price{
    background:#16304d;
    color:#fff;
    border-radius:15px;
    padding:25px;
    text-align:center;
}

.hall-price span{
    font-size:18px;
}

.hall-price h1{
    font-size:42px;
    margin:10px 0;
    color:#C9A14A;
}

.hall-price p{
    font-size:16px;
}

/*==========================
      BUTTONS
==========================*/

.hall-buttons{
    display:flex;
    gap:15px;
}

.btn-primary,
.btn-secondary{
    flex:1;
    padding:15px;
    border-radius:10px;
    text-align:center;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-primary{
    background:#C9A14A;
    color:#fff;
}

.btn-primary:hover{
    background:#b68d35;
}

.btn-secondary{
    background:#16304d;
    color:#fff;
}

.btn-secondary:hover{
    background:#0d2338;
}

/*==========================
      TERMS
==========================*/

.hall-terms{
    margin-top:35px;
    padding:25px;
    background:#f8f8f8;
    border-radius:15px;
}

.hall-terms h3{
    color:#16304d;
    margin-bottom:15px;
}

.hall-terms ul{
    margin:0;
    padding-left:20px;
}

.hall-terms li{
    margin-bottom:10px;
    color:#555;
    line-height:1.6;
}
/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 1024px){

    .hall-modal-content{
        width:95%;
        padding:25px;
    }

    .hall-details{
        display:flex;
        flex-direction:column;
        gap:25px;
    }

    .hall-gallery,
    .hall-info{
        width:100%;
    }

    .hall-main-image{
        width:100%;
        height:350px;
        object-fit:cover;
    }

}

@media (max-width:768px){

    .hall-modal{
        padding:15px;
        align-items:flex-start;
    }

    .hall-modal-content{
        width:100%;
        padding:20px;
        margin:20px 0;
    }

    .hall-modal-content h2{
        font-size:30px;
        text-align:center;
    }

    .hall-subtitle{
        text-align:center;
        font-size:16px;
    }

    .hall-main-image{
        height:240px;
    }

    .hall-thumbs{
        justify-content:center;
        flex-wrap:wrap;
        gap:10px;
    }

    .hall-thumbs img{
        width:70px;
        height:60px;
    }

    .hall-section{
        padding:18px;
    }

    .hall-section h3{
        font-size:22px;
    }

    .hall-section li{
        font-size:15px;
    }

    .hall-price{
        padding:20px;
    }

    .hall-price h1{
        font-size:34px;
    }

    .hall-buttons{
        display:flex;
        flex-direction:column;
        gap:15px;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
    }

    .hall-terms{
        margin-top:25px;
        padding:20px;
    }
}

@media (max-width:480px){

    .hall-modal-content{
        padding:15px;
    }

    .hall-modal-content h2{
        font-size:26px;
    }

    .hall-main-image{
        height:200px;
    }

    .hall-thumbs img{
        width:60px;
        height:50px;
    }

    .hall-price h1{
        font-size:28px;
    }

    .hall-price span{
        font-size:16px;
    }

    .hall-price p{
        font-size:14px;
    }

}

/*================ IMAGE VIEWER ================*/

.image-viewer{

    display:none;

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.9);

    z-index:99999;

    justify-content:center;

    align-items:center;

}

.image-viewer img{

    max-width:90%;

    max-height:90%;

    border-radius:15px;

}

.viewer-close{

    position:absolute;

    top:20px;

    right:40px;

    font-size:50px;

    color:#fff;

    cursor:pointer;

}

.viewer-close:hover{

    color:#d4af37;

}


.parking-link{

    color:#16304d;
    text-decoration:none;
    font-weight:600;
    cursor:pointer;

}

.parking-link:hover{

    color:#C9A14A;

}

.parking-popup{

    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.85);
    justify-content:center;
    align-items:center;
    z-index:10000;

}

.parking-popup img{

    max-width:90%;
    max-height:90%;
    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,.4);

}

.parking-close{

    position:absolute;
    top:25px;
    right:35px;
    color:#fff;
    font-size:45px;
    cursor:pointer;

}

/*====================================
      ANNUAL REPORT MODAL
====================================*/

.report-modal{

    display:none;

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.75);

    z-index:99999;

    justify-content:center;

    align-items:center;

    padding:40px;

}

.report-content{

    width:90%;

    max-width:900px;

    background:#fff;

    border-radius:12px;

    padding:30px;

    position:relative;

    animation:popup .35s ease;

}

@keyframes popup{

    from{

        transform:scale(.8);

        opacity:0;

    }

    to{

        transform:scale(1);

        opacity:1;

    }

}

.close-report{

    position:absolute;

    right:25px;

    top:20px;

    font-size:34px;

    cursor:pointer;

    color:#16304d;

}

.report-content h2{

    text-align:center;

    margin-bottom:25px;

    color:#16304d;

}

.report-table{

    width:100%;

    border-collapse:collapse;

}

.report-table th{

    background:#d7d2f2;

    color:#16304d;

    padding:15px;

    text-align:left;

}

.report-table td{

    padding:15px;

    border-bottom:1px solid #eee;

}

.report-table tbody tr:nth-child(even){

    background:#f7f7f7;

}

.report-table a{

    color:#16304d;

    font-weight:600;

    text-decoration:none;

}

.report-table a:hover{

    color:#c9a14a;

}

@media(max-width:768px){

.report-content{

    width:95%;

    padding:20px;

    overflow-x:auto;

}

.report-table{

    min-width:600px;

}

}

/* Active Navigation */
.nav-links a.active{
    color:#d4af37;
    font-weight:700;
}

.nav-links a.active::after{
    width:100%;
}


/*=========================================
        SPORTS MODAL CARDS
=========================================*/

.sports-card{

    display:flex;

    align-items:center;

    gap:45px;

    margin-bottom:70px;

    padding-bottom:40px;

    border-bottom:1px solid #ddd;

}

.sports-image{

    flex:1;

}

.sports-image img{

    width:100%;

    height:320px;

    object-fit:cover;

    border-radius:12px;

    box-shadow:0 15px 35px rgba(0,0,0,.15);

}

.sports-details{

    flex:1;

}

.sports-details h2{

    font-family:"Libre Baskerville",serif;

    font-size:42px;

    color:#16304d;

    margin-bottom:20px;

}

.sports-details p{

    color:#555;

    line-height:1.9;

    margin-bottom:25px;

}

.sports-details ul{

    list-style:none;

    padding:0;

    margin-bottom:30px;

}

.sports-details li{

    margin-bottom:12px;

    color:#444;

    font-size:17px;

}

@media(max-width:900px){

.sports-card{

    flex-direction:column;

}

.sports-image img{

    height:250px;

}

}
/*==================================================
                    GYM MODAL
==================================================*/

.gym-modal {

    max-width: 1200px;
    width: 90%;
    padding: 40px;

}


/*==================================================
                GYM MAIN LAYOUT
==================================================*/

.gym-layout {

    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;

}


/*==================================================
                GYM MAIN IMAGE
==================================================*/

.gym-main-image {

    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;

}


/*==================================================
                GYM RIGHT CONTENT
==================================================*/

.gym-right h2 {

    font-size: 40px;
    color: #16304d;
    margin: 0 0 20px;

}


.gym-desc {

    color: #555;
    line-height: 1.8;
    margin: 0 0 25px;

}


/*==================================================
                GYM INFORMATION
==================================================*/

.gym-info {

    display: flex;
    gap: 50px;
    margin-bottom: 30px;

}


.gym-info h4 {

    color: #c7a04a;
    margin: 0 0 8px;

}


.gym-info p {

    margin: 0;
    color: #555;
    line-height: 1.5;

}


/*==================================================
                SECTION HR
==================================================*/

.gym-right hr {

    margin: 50px 0;

}


/*==================================================
                EQUIPMENT
==================================================*/

.gym-right h3 {

    color: #16304d;
    margin-bottom: 20px;

}


.gym-features {

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;

}


.gym-features ul {

    list-style: none;
    padding: 0;
    margin: 0;

}


.gym-features li {

    margin: 12px 0;
    color: #444;
    line-height: 1.5;

}


/*==================================================
            PERSONAL TRAINING SECTION
==================================================*/

.training-line {

    margin: 50px 0 30px !important;

}


.training-title {

    color: #16304d;
    margin-bottom: 20px;

}


/*==================================================
                TRAINING PLANS
==================================================*/

.trainer-plans {

    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 20px;

}


.trainer-plan {

    padding: 22px;
    background: #f8f6f2;
    border: 1px solid #e5ded3;
    border-radius: 5px;
    text-align: left;

}


.trainer-plan h4 {

    margin: 0;
    font-size: 20px;
    color: #333;

}


.plan-price {

    font-size: 22px;
    font-weight: 600;
    color: #9a7b50;
    margin: 12px 0 15px;

}


.trainer-plan ul {

    list-style: none;
    padding: 0;
    margin: 0;

}


.trainer-plan li {

    font-size: 13px;
    color: #666;
    padding: 7px 0;
    line-height: 1.5;

}


/*==================================================
                    GALLERY LINE
==================================================*/

.gallery-line {

    margin: 40px 0 25px;

}


/*==================================================
                    GALLERY TITLE
==================================================*/

.gallery-title {

    font-size: 28px;
    color: #16304d;
    margin: 0 0 20px;

}


/*==================================================
                    GYM GALLERY
==================================================*/

.gym-gallery {

    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;

}


.gym-gallery img {

    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: .3s;

}


.gym-gallery img:hover {

    transform: scale(1.05);

}


/*==================================================
                    TABLET
==================================================*/

@media (max-width: 1024px) {

    .gym-modal {

        width: 94%;
        padding: 30px;

    }


    .gym-layout {

        grid-template-columns: 1fr 1fr;
        gap: 25px;

    }


    .gym-main-image {

        height: 420px;

    }


    .gym-right h2 {

        font-size: 34px;

    }


    .gym-info {

        gap: 25px;

    }


    .gym-features {

        gap: 15px;

    }


    .gym-gallery {

        grid-template-columns: repeat(3, 1fr);

    }

}


/*==================================================
                    MOBILE
==================================================*/

@media (max-width: 768px) {

    /* MODAL */

    .gym-modal {

        width: 94%;
        max-width: none;
        padding: 22px;
        margin: 20px auto;

    }


    /* MAIN LAYOUT */

    .gym-layout {

        display: flex;
        flex-direction: column;
        gap: 25px;

    }


    /* MAIN IMAGE */

    .gym-main-image {

        width: 100%;
        height: 280px;
        border-radius: 8px;

    }


    /* RIGHT CONTENT */

    .gym-right {

        width: 100%;

    }


    .gym-right h2 {

        font-size: 32px;
        margin-bottom: 15px;

    }


    .gym-desc {

        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 20px;

    }


    /* INFORMATION */

    .gym-info {

        display: flex;
        flex-direction: column;
        gap: 18px;
        margin-bottom: 20px;

    }


    .gym-info h4 {

        font-size: 15px;

    }


    .gym-info p {

        font-size: 14px;

    }


    /* HR */

    .gym-right hr {

        margin: 35px 0;

    }


    /* SECTION HEADINGS */

    .gym-right h3 {

        font-size: 22px;
        margin-bottom: 15px;

    }


    /* EQUIPMENT */

    .gym-features {

        display: grid;
        grid-template-columns: 1fr;
        gap: 0;

    }


    .gym-features li {

        margin: 9px 0;
        font-size: 14px;

    }


    /* TRAINING */

    .training-line {

        margin: 35px 0 25px !important;

    }


    .training-title {

        font-size: 22px !important;
        margin-bottom: 15px !important;

    }


    /* TRAINING PLAN */

    .trainer-plans {

        grid-template-columns: 1fr;
        gap: 15px;

    }


    .trainer-plan {

        padding: 18px;

    }


    .trainer-plan h4 {

        font-size: 18px;

    }


    .plan-price {

        font-size: 20px;
        margin: 10px 0 12px;

    }


    .trainer-plan li {

        font-size: 13px;
        line-height: 1.5;
        padding: 6px 0;

    }


    /* GALLERY */

    .gallery-line {

        margin: 35px 0 20px;

    }


    .gallery-title {

        font-size: 23px;
        margin-bottom: 15px;

    }


    .gym-gallery {

        grid-template-columns: repeat(2, 1fr);
        gap: 10px;

    }


    .gym-gallery img {

        height: 130px;
        border-radius: 6px;

    }

}


/*==================================================
                SMALL MOBILE
==================================================*/

@media (max-width: 480px) {

    .gym-modal {

        width: 96%;
        padding: 17px;

    }


    .gym-main-image {

        height: 220px;

    }


    .gym-right h2 {

        font-size: 28px;

    }


    .gym-desc {

        font-size: 13px;

    }


    .gym-right h3 {

        font-size: 30px;

    }


    .gym-features li {

        font-size: 13px;

    }


    .trainer-plan {

        padding: 16px;

    }


    .trainer-plan h4 {

        font-size: 17px;

    }


    .plan-price {

        font-size: 19px;

    }


    .trainer-plan li {

        font-size: 12px;

    }


    .gym-gallery {

        grid-template-columns: repeat(2, 1fr);
        gap: 8px;

    }


    .gym-gallery img {

        height: 105px;

    }

}
/*=========================================
        SWIMMING POOL
=========================================*/

.swimming-layout {

    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;

}


/*=========================================
        POOL MAIN IMAGE
=========================================*/

.pool-left img {

    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;

}


/*=========================================
        POOL CONTENT
=========================================*/

.pool-content h2 {

    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    color: #16304d;
    margin: 0 0 20px;

}


.pool-desc {

    font-size: 17px;
    line-height: 1.9;
    color: #555;
    margin: 0 0 30px;

}


/*=========================================
        POOL INFORMATION
=========================================*/

.pool-info {

    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;

}


.pool-info h4 {

    color: #c7a04a;
    margin: 0 0 10px;
    font-size: 20px;

}


.pool-info p {

    margin: 6px 0;
    color: #555;
    line-height: 1.5;

}


/*=========================================
        POOL HIGHLIGHTS
=========================================*/

.pool-features {

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 20px;
    margin-bottom: 25px;

}


.pool-features ul {

    list-style: none;
    padding: 0;
    margin: 0;

}


.pool-features li {

    margin-bottom: 14px;
    color: #444;
    font-size: 16px;
    line-height: 1.5;

}


/*=========================================
        POOL POINTS
=========================================*/

.pool-points {

    margin-top: 20px;
    padding-left: 20px;
    color: #555;
    line-height: 1.9;

}


.pool-points li {

    margin-bottom: 10px;

}


/*=========================================
        POOL GALLERY
=========================================*/

.pool-gallery {

    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-top: 25px;

}


.pool-gallery img {

    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: .3s;

}


.pool-gallery img:hover {

    transform: scale(1.05);

}


/*=========================================
        TABLET
=========================================*/

@media (max-width: 1024px) {

    .swimming-layout {

        grid-template-columns: 1fr 1fr;
        gap: 25px;

    }


    .pool-left img {

        height: 420px;

    }


    .pool-content h2 {

        font-size: 36px;

    }


    .pool-desc {

        font-size: 15px;
        line-height: 1.7;

    }


    .pool-info {

        gap: 20px;

    }


    .pool-info h4 {

        font-size: 17px;

    }


    .pool-features {

        gap: 15px;

    }


    .pool-features li {

        font-size: 14px;

    }


    .pool-gallery {

        grid-template-columns: repeat(3, 1fr);

    }

}


/*=========================================
        MOBILE
=========================================*/

@media (max-width: 768px) {

    /* MAIN LAYOUT */

    .swimming-layout {

        display: flex;
        flex-direction: column;
        gap: 25px;

    }


    /* MAIN IMAGE */

    .pool-left {

        width: 100%;

    }


    .pool-left img {

        width: 100%;
        height: 280px;
        border-radius: 8px;

    }


    /* CONTENT */

    .pool-content {

        width: 100%;

    }


    .pool-content h2 {

        font-size: 32px;
        margin-bottom: 15px;

    }


    .pool-desc {

        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 22px;

    }


    /* INFORMATION */

    .pool-info {

        display: flex;
        flex-direction: column;
        gap: 18px;
        margin-bottom: 25px;

    }


    .pool-info h4 {

        font-size: 16px;
        margin-bottom: 7px;

    }


    .pool-info p {

        font-size: 14px;
        margin: 5px 0;

    }


    /* HIGHLIGHTS */

    .pool-content h3 {

        font-size: 22px;

    }


    .pool-features {

        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 15px;

    }


    .pool-features li {

        font-size: 14px;
        margin-bottom: 9px;

    }


    /* GALLERY LINE */

    .gallery-line {

        margin: 35px 0 20px;

    }


    .gallery-title {

        font-size: 23px;
        margin-bottom: 15px;

    }


    /* GALLERY */

    .pool-gallery {

        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-top: 20px;

    }


    .pool-gallery img {

        height: 130px;
        border-radius: 6px;

    }

}

/*=========================================
        SMALL MOBILE
=========================================*/

@media (max-width: 480px) {

    .swimming-layout {

        gap: 20px;

    }


    .pool-left img {

        height: 220px;

    }


    .pool-content h2 {

        font-size: 28px;

    }


    .pool-desc {

        font-size: 13px;
        line-height: 1.6;

    }


    .pool-info {

        gap: 15px;

    }


    .pool-info h4 {

        font-size: 15px;

    }


    .pool-info p {

        font-size: 13px;

    }


    .pool-content h3 {

        font-size: 20px;

    }


    .pool-features li {

        font-size: 13px;

    }


    .pool-gallery {

        gap: 8px;

    }


    .pool-gallery img {

        height: 105px;

    }

}
/*=====================================
        NH-17 RESTAURANT MODAL
======================================*/

.restaurant-modal {
    max-width: 1100px;
    width: 92%;
    padding: 35px;
    background: #fff;
    border-radius: 8px;
}


/*=====================================
        MAIN RESTAURANT LAYOUT
======================================*/

.restaurant-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: center;
}


/*=====================================
        RESTAURANT IMAGE
======================================*/

.restaurant-image-wrapper {
    width: 100%;
    height: 430px;
    overflow: hidden;
    border-radius: 6px;
}

.restaurant-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.5s ease;
}

.restaurant-main-image:hover {
    transform: scale(1.04);
}


/*=====================================
        RESTAURANT HEADING
======================================*/

.restaurant-heading {
    margin-bottom: 20px;
}

.restaurant-label {
    font-size: 12px;
    letter-spacing: 3px;
    color: #9a7b50;
    font-weight: 600;
}

.restaurant-heading h2 {
    margin: 8px 0 10px;
    font-size: 42px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #222;
}

.restaurant-line {
    width: 55px;
    height: 2px;
    background: #9a7b50;
}


/*=====================================
        DESCRIPTION
======================================*/

.restaurant-desc {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}


/*=====================================
        INFORMATION BOXES
======================================*/

.restaurant-info {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.restaurant-info-box {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #f8f6f2;
    border-radius: 5px;
}

.info-icon {
    font-size: 23px;
    color: #9a7b50;
}

.restaurant-info-box h4 {
    margin: 0 0 5px;
    font-size: 13px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.restaurant-info-box p {
    margin: 0;
    font-size: 13px;
    color: #777;
}


/*=====================================
        VIEW MENU BUTTON
======================================*/

.menu-button-wrapper {
    margin-top: 10px;
}

.view-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;

    padding: 14px 22px;

    background: #9a7b50;
    color: #fff;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    letter-spacing: 1px;

    border-radius: 3px;

    transition: all 0.3s ease;
}

.view-menu-btn:hover {
    background: #7d623d;
    color: #fff;
    transform: translateY(-2px);
}

.menu-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.view-menu-btn:hover .menu-arrow {
    transform: translateX(5px);
}


/*=====================================
        DIVIDER
======================================*/

.restaurant-divider {
    width: 100%;
    height: 1px;
    background: #e5e5e5;
    margin: 40px 0 30px;
}


/*=====================================
        GALLERY HEADING
======================================*/

.gallery-heading {
    margin-bottom: 20px;
}

.gallery-heading span {
    font-size: 11px;
    letter-spacing: 3px;
    color: #9a7b50;
    font-weight: 600;
}

.gallery-heading h3 {
    margin: 5px 0 0;
    font-size: 25px;
    font-weight: 500;
    color: #222;
}


/*=====================================
        RESTAURANT GALLERY
======================================*/

.restaurant-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.restaurant-gallery-item {
    height: 150px;
    overflow: hidden;
    border-radius: 4px;
}

.restaurant-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.restaurant-gallery-item img:hover {
    transform: scale(1.08);
}


/*=====================================
        MOBILE
======================================*/

@media (max-width: 768px) {

    .restaurant-modal {
        width: 94%;
        padding: 22px;
    }

    .restaurant-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .restaurant-image-wrapper {
        height: 260px;
    }

    .restaurant-heading h2 {
        font-size: 32px;
    }

    .restaurant-desc {
        font-size: 14px;
        line-height: 1.7;
    }

    .restaurant-info {
        flex-direction: column;
        gap: 10px;
    }

    .restaurant-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .restaurant-gallery-item {
        height: 130px;
    }

}

/*=========================================
        AWESOME SPA MODAL
=========================================*/

.spa-modal {
    width: 90%;
    max-width: 1100px;
    background: #ffffff;
    border-radius: 12px;
    padding: 35px;
    position: relative;

    /* FIX HORIZONTAL SCROLL */
    box-sizing: border-box;
    overflow-x: hidden;
}


/*=========================================
        SPA LAYOUT
=========================================*/

.spa-layout {
    display: grid;

    /* FIX: allow space for the gap */
    grid-template-columns: minmax(0, 45%) minmax(0, 55%);

    gap: 40px;
    align-items: center;

    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}


/*=========================================
        LEFT SIDE
=========================================*/

.spa-left {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.spa-image-wrapper {
    width: 100%;
    height: 420px;
    overflow: hidden;
    border-radius: 10px;
    box-sizing: border-box;
}

.spa-main-image {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.spa-main-image:hover {
    transform: scale(1.03);
}


/*=========================================
        RIGHT SIDE
=========================================*/

.spa-right {
    padding: 10px 20px;

    /* FIX HORIZONTAL OVERFLOW */
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.spa-heading {
    margin-bottom: 20px;
}

.spa-label {
    display: block;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 600;
}

.spa-heading h2 {
    font-size: 38px;
    margin: 0;
    font-weight: 600;
    word-wrap: break-word;
}

.spa-line {
    width: 60px;
    height: 2px;
    margin-top: 15px;
    background: #222;
}


/*=========================================
        DESCRIPTION
=========================================*/

.spa-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;

    /* PREVENT LONG TEXT OVERFLOW */
    overflow-wrap: break-word;
}


/*=========================================
        SPA INFORMATION
=========================================*/

.spa-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    width: 100%;
}

.spa-info-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f7f7f7;
    border-radius: 8px;

    width: 100%;
    box-sizing: border-box;
}

.info-icon {
    font-size: 25px;
    min-width: 30px;
    flex-shrink: 0;
}

.spa-info-box h4 {
    margin: 0 0 5px;
    font-size: 15px;
}

.spa-info-box p {
    margin: 0;
    font-size: 14px;
    color: #666;
}


/*=========================================
        VIEW SERVICES BUTTON
=========================================*/

.menu-button-wrapper {
    margin-top: 10px;
    max-width: 100%;
}

.view-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 14px 22px;
    background: #222;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 15px;
    transition: all 0.3s ease;

    box-sizing: border-box;
    max-width: 100%;
}

.view-menu-btn:hover {
    background: #444;
    transform: translateY(-2px);
}

.menu-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.view-menu-btn:hover .menu-arrow {
    transform: translateX(5px);
}


/*=========================================
        DIVIDER
=========================================*/

.spa-divider {
    width: 100%;
    height: 1px;
    background: #e5e5e5;
    margin-top: 35px;
}


/*=========================================
        CLOSE BUTTON
=========================================*/

.spa-modal .close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    z-index: 10;
}


/*=========================================
        MOBILE RESPONSIVE
=========================================*/

@media (max-width: 768px) {

    .spa-modal {
        width: 92%;
        padding: 20px;
        max-height: 90vh;

        /* VERTICAL SCROLL ONLY */
        overflow-y: auto;
        overflow-x: hidden;

        box-sizing: border-box;
    }

    .spa-layout {
        grid-template-columns: 1fr;
        gap: 25px;
        width: 100%;
    }

    .spa-left,
    .spa-right {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .spa-image-wrapper {
        height: 280px;
        width: 100%;
    }

    .spa-right {
        padding: 0 5px;
    }

    .spa-heading h2 {
        font-size: 30px;
    }

    .spa-desc {
        font-size: 14px;
        line-height: 1.7;
    }

    .spa-info-box {
        padding: 12px;
    }

    .view-menu-btn {
        width: 100%;
        box-sizing: border-box;
    }

}


/*=========================================
        SMALL MOBILE
=========================================*/

@media (max-width: 480px) {

    .spa-modal {
        width: 94%;
        padding: 15px;

        overflow-x: hidden;
    }

    .spa-image-wrapper {
        height: 230px;
    }

    .spa-heading h2 {
        font-size: 26px;
    }

    .spa-label {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .spa-desc {
        font-size: 13px;
    }

    .spa-info-box h4 {
        font-size: 14px;
    }

    .spa-info-box p {
        font-size: 13px;
    }

}
/*=========================================
        DISCLAIMER POPUP
=========================================*/

.disclaimer-overlay{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,.75);

    display:none;

    justify-content:center;
    align-items:center;

    z-index:99999;

    padding:20px;

}

.disclaimer-box{

    width:95%;
    max-width:750px;

    max-height:90vh;

    background:#fff;

    border-radius:12px;

    padding:35px;

    box-shadow:0 10px 40px rgba(0,0,0,.3);

    overflow-y:auto;

}

.disclaimer-box h2{

    text-align:center;

    color:#16304d;

    margin-top:0;

    margin-bottom:25px;

}

.disclaimer-content{

    color:#444;

    font-size:14px;

    line-height:1.7;

}

.disclaimer-content p{

    margin-bottom:15px;

}

.disclaimer-btn{

    display:block;

    margin:25px auto 0;

    padding:13px 30px;

    border:none;

    border-radius:30px;

    background:#16304d;

    color:#fff;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.disclaimer-btn:hover{

    background:#0d2034;

}

/* MOBILE */

@media(max-width:600px){

    .disclaimer-box{

        padding:25px;

        max-height:90vh;

    }

    .disclaimer-box h2{

        font-size:22px;

    }

    .disclaimer-content{

        font-size:13px;

        line-height:1.6;

    }

    .disclaimer-btn{

        width:100%;

    }

}

/*=====================================
        STEAM & SAUNA
======================================*/

.steam-sauna-section {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.steam-sauna-section h3 {
    font-size: 25px;
    margin-bottom: 10px;
    font-weight: 600;
}

.steam-sauna-section > p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.steam-sauna-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.steam-sauna-info > div {
    padding: 18px;
    border-radius: 8px;
    background: #f7f7f7;
}

.steam-sauna-info h4 {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
}

.steam-sauna-info p {
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
    color: #666;
}


/*=====================================
        STEAM & SAUNA - MOBILE
======================================*/

@media (max-width: 768px) {

    .steam-sauna-section {
        margin-top: 25px;
        padding-top: 20px;
    }

    .steam-sauna-section h3 {
        font-size: 20px;
    }

    .steam-sauna-section > p {
        font-size: 13px;
        line-height: 1.6;
    }

    .steam-sauna-info {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .steam-sauna-info > div {
        padding: 15px;
    }

    .steam-sauna-info h4 {
        font-size: 15px;
    }

    .steam-sauna-info p {
        font-size: 13px;
    }

}