@import url('https://fonts.googleapis.com/css2?family=Bree+Serif&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');


  :root {
    --sky: #87CEEB;
    --sky-light: #C8E8F8;
    --ocean: #1A6B9A;
    --ocean-deep: #0D4A70;
    --ocean-mid: #2A8BBE;
    --foam: #EAF6FF;
    --sand: #F5E6C8;
    --gold: #C8963E;
    --white: #FFFFFF;
    --nav-h: 80px;
  }

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
        font-family: "Nunito", sans-serif;
    background: var(--foam);
    color: var(--ocean-deep);
    overflow-x: hidden;
  }

  /* ── NAVBAR ─────────────────────────────────────── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-h);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 28px;
    background: linear-gradient(180deg, rgba(10,50,80,.88) 0%, rgba(10,50,80,.6) 100%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(135,206,235,.18);
    transition: background .4s;
  }
  nav.scrolled {
    background: rgba(10,50,80,.97);
  }

  /* LEFT – hamburger + address */
  .nav-left {
    display: flex;
    align-items: center;
    gap: 18px;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
    outline: none;
  }
  .hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--sky-light);
    border-radius: 2px;
    transition: transform .35s, opacity .35s, width .35s;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav-address {
    font-family: 'Jost', sans-serif;
    font-size: .72rem;
    font-weight: 300;
    letter-spacing: .08em;
    color: var(--sky-light);
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .nav-address svg { flex-shrink: 0; opacity: .75; }

  /* CENTER – logo */
  .nav-logo {
    text-align: center;
    cursor: pointer;
    text-decoration: none;
  }
  .nav-logo .brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--white);
    line-height: 1.1;
    display: block;
  }
  .nav-logo .brand em {
    font-style: italic;
    color: var(--sky);
  }
  .nav-logo .sub {
    font-family: 'Jost', sans-serif;
    font-size: .6rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--sky-light);
    margin-top: 3px;
    display: block;
    opacity: .8;
  }

  /* RIGHT – phone + book now */
  .nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: flex-end;
  }
  .nav-phone {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .04em;
    color: var(--sky-light);
    text-decoration: none;
    transition: color .25s;
  }
  .nav-phone:hover { color: var(--white); }
  .nav-phone svg { opacity: .8; }

  .btn-book {
    background: linear-gradient(135deg, var(--gold), #E8A84A);
    color: var(--white);
    font-family: 'Jost', sans-serif;
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 10px 22px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(200,150,62,.45);
    white-space: nowrap;
  }
  .btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(200,150,62,.6);
  }

  /* ── MOBILE MENU OVERLAY ────────────────────────── */
  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: linear-gradient(160deg, var(--ocean-deep) 0%, #0a3250 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s;
    padding-top: var(--nav-h);
  }
  .mobile-menu.open { opacity: 1; pointer-events: all; }
  .mobile-menu a {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--white);
    text-decoration: none;
    padding: 14px 0;
    letter-spacing: .05em;
    position: relative;
    transition: color .25s;
  }
  .mobile-menu a::after {
    content: '';
    position: absolute;
    bottom: 10px; left: 50%; right: 50%;
    height: 1px;
    background: var(--sky);
    transition: left .3s, right .3s;
  }
  .mobile-menu a:hover { color: var(--sky); }
  .mobile-menu a:hover::after { left: 0; right: 0; }
  .mobile-menu .menu-divider {
    width: 40px; height: 1px;
    background: rgba(135,206,235,.25);
    margin: 8px 0;
  }
  .menu-contact {
    margin-top: 40px;
    text-align: center;
  }
  .menu-contact a {
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    color: var(--sky-light) !important;
    font-weight: 300;
    padding: 6px 0 !important;
  }
  .menu-contact a:hover { color: var(--white) !important; }
  .menu-contact a::after { display: none !important; }

  /* ── HERO SLIDER ─────────────────────────────────── */
  .hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
  }

  .slides {
    position: absolute;
    inset: 0;
  }

  .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    background-size: cover;
    background-position: center;
  }
  .slide.active { opacity: 1; }

  /* SVG-based background scenes */
  .slide-1 img, .slide-2 img, .slide-3 img, .slide-4 img {  width: 100%;  height: 100vh; object-fit: cover; display: block; }

  .slide-scene {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  /* Overlay */
  .slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5,25,50,.25) 0%, rgba(5,25,50,.15) 40%, rgba(5,25,50,.55) 100%);
    z-index: 1;
  }

  /* Hero content */
  .hero-content {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 24px;
    padding-top: var(--nav-h);
  }

  .slide-badge {
    font-family: 'Jost', sans-serif;
    font-size: .68rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--sky);
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .8s .3s, transform .8s .3s;
  }
  .hero-content.visible .slide-badge { opacity: 1; transform: translateY(0); }

  .slide-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    max-width: 800px;
    text-shadow: 0 2px 40px rgba(0,0,0,.4);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .9s .5s, transform .9s .5s;
  }
  .hero-content.visible .slide-title { opacity: 1; transform: translateY(0); }

  .slide-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1rem, 2.2vw, 1.4rem);
    color: var(--sky-light);
    margin-top: 14px;
    font-weight: 300;
    letter-spacing: .04em;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .8s .7s, transform .8s .7s;
  }
  .hero-content.visible .slide-sub { opacity: 1; transform: translateY(0); }

  .hero-cta {
    margin-top: 38px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .8s .9s, transform .8s .9s;
  }
  .hero-content.visible .hero-cta { opacity: 1; transform: translateY(0); }

  .btn-primary {
    background: linear-gradient(135deg, var(--gold), #E8A84A);
    color: var(--white);
    font-family: 'Jost', sans-serif;
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 16px 38px;
    border-radius: 40px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 6px 30px rgba(200,150,62,.5);
    transition: transform .2s, box-shadow .2s;
  }
  .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 40px rgba(200,150,62,.65); }

  .btn-outline {
    background: transparent;
    color: var(--white);
    font-family: 'Jost', sans-serif;
    font-size: .8rem;
    font-weight: 400;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 14px 36px;
    border-radius: 40px;
    border: 1.5px solid rgba(255,255,255,.55);
    cursor: pointer;
    text-decoration: none;
    backdrop-filter: blur(6px);
    transition: background .25s, border-color .25s;
  }
  .btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

  /* Slider nav dots */
  .slider-dots {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 10px;
  }
  .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    border: none;
    cursor: pointer;
    transition: background .3s, transform .3s;
    padding: 0;
  }
  .dot.active { background: var(--white); transform: scale(1.3); }

  /* Slider arrows */
  .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: rgba(255,255,255,.12);
    border: 1.5px solid rgba(255,255,255,.3);
    color: var(--white);
    width: 46px; height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: background .25s;
  }
  .slider-arrow:hover { background: rgba(255,255,255,.22); }
  .slider-arrow.prev { left: 24px; }
  .slider-arrow.next { right: 24px; }
  
  .about-section {
  position: relative; background:#fff; 
  padding: 30px 20px;
  text-align: center;
  color: #262626;
  overflow: hidden;
}

/* BLUR LAYER */
.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
 
  filter: blur(8px);
  transform: scale(1.1); /* prevents edge cut after blur */
  z-index: 0;
}

/* LIGHT OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* CONTENT ABOVE BLUR */
.content-box {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  backdrop-filter: blur(4px); /* optional glass effect */
  padding: 20px;
  border-radius: 10px;
}

/* HEADINGS */
.title1 {
  font-size:36px;
  margin-bottom: 10px;  font-family:'Cormorant Garamond',serif;
}

.title2 {
  letter-spacing: 2px;  font-family:'Cormorant Garamond',serif;
    font-size: 18px;
    color: #777;
  margin-bottom: 40px;
}

/* TEXT */
.content-box p {
  font-size: 19px; font-weight:normal;
  line-height: 1.8; font-family: "Nunito", sans-serif; color:#333;
  margin-bottom: 15px;
}

.content-box p a { color:#1A6B9A; text-decoration:none;
}


/* READ MORE CONTENT */
.more-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
}

/* BUTTON */
.read-btn {
  margin-top: 15px;  font-size: 19px; font-weight:lighter; font-family: 'Jost', sans-serif; letter-spacing:1px;
  padding: 10px 25px;
  border-radius: 30px;
  border: none;
  background:#87CEEB;
  color: #fff;
  cursor: pointer;
  transition: 0.4s;
}

.read-btn:hover {
 background:#333;
  color: #fff;
}

/* MOBILE */
@media(max-width:768px) {
  .content-box h2 {
    font-size: 28px;
  }

  .content-box p {
    font-size: 14px;
  }
}

/* SECTION */

.amenities-section{
    position:relative;
    padding:120px 6%;
    overflow:hidden;
    text-align:center;
    background:
    linear-gradient(rgba(247,251,255,0.82), rgba(247,251,255,0.88)),
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=1974&auto=format&fit=crop') center/cover no-repeat;
}

/* Sand Overlay */

.amenities-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:url('https://www.transparenttextures.com/patterns/sandpaper.png');
    opacity:0.18;
}

/* Content */

.amenities-content{
    position:relative;
    z-index:2;
    max-width:1400px;
    margin:auto;
}

/* Subtitle */

.subtitle{
    color:#2d5d87;
    letter-spacing:4px;
    font-size:15px;
    text-transform:uppercase;
    margin-bottom:20px;
    display:inline-block;
    position:relative;
}

.subtitle::before,
.subtitle::after{
    content:"";
    position:absolute;
    top:50%;
    width:80px;
    height:1px;
    background:#cbb38a;
}

.subtitle::before{
    left:-95px;
}

.subtitle::after{
    right:-95px;
}

/* Heading */

.amenities-content h2{
    font-family:'Cormorant Garamond',serif;
    font-size:42px;
    line-height:1.2;
    color:#2f5577;
    max-width:950px;
    margin:0 auto 70px;
    font-weight:600;
}

/* Amenities Grid */

.amenities-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:35px;
    align-items:start;
}

/* Item */

.amenity-item{
    transition:0.4s ease;
}

.amenity-circle{
    width:170px;
    height:170px;
    margin:auto;
    border-radius:50%;
    overflow:hidden;
    border:6px solid rgba(255,255,255,0.9);
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
    position:relative;
    transition:0.6s ease;
}

/* Hover Roll Effect */

.amenity-item:hover .amenity-circle{
    transform:rotate(12deg) scale(1.08);
}

.amenity-circle img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.6s ease;
}

.amenity-item:hover img{
    transform:scale(1.15);
}

/* Title */

.amenity-item h3{
    margin-top:22px;
    font-family:'Cormorant Garamond',serif;
    font-size:34px;
    color:#2f5577;
    font-weight:600;
}

/* Description */

.amenity-item p{
    margin-top:8px;
    color:#666;
    font-size:14px;
    line-height:1.7;
    padding:0 10px;
}

/* Responsive */

@media(max-width:991px){

    .amenities-content h2{
        font-size:52px;
    }

    .amenity-circle{
        width:150px;
        height:150px;
    }
}

@media(max-width:768px){

    .amenities-section{
        padding:90px 5%;
    }

    .amenities-content h2{
        font-size:40px;
        margin-bottom:50px;
    }

    .subtitle::before,
    .subtitle::after{
        display:none;
    }

    .amenities-grid{
        grid-template-columns:repeat(2,1fr);
        gap:30px;
    }

    .amenity-circle{
        width:130px;
        height:130px;
    }

    .amenity-item h3{
        font-size:26px;
    }
}

@media(max-width:480px){

    .amenities-grid{
        grid-template-columns:1fr;
    }

    .amenities-content h2{
        font-size:34px;
    }
}

/* =========================
ROOM SECTION
========================= */

.room-section{
    padding:100px 5%;
    position:relative;
    overflow:hidden; background:#f5f7fa;
}

.room-title{
    text-align:center;
    margin-bottom:60px;
}

.room-title span{
    color:#8ea8bb;
    letter-spacing:3px;
    text-transform:uppercase;
    font-size:14px;
    font-weight:600;
}

.room-title h2{
    font-size:52px;
    color:#111;
    margin-top:12px;
    font-family:'Playfair Display',serif;
}

/* =========================
SLIDER
========================= */

.room-slider{
    display:flex;
    gap:30px;
    overflow-x:auto;
    scroll-behavior:smooth;
    scrollbar-width:none;
    padding-bottom:20px;
}

.room-slider::-webkit-scrollbar{
    display:none;
}

/* =========================
ROOM CARD
========================= */

.room-card{
    flex:0 0 calc(33.33% - 20px);
    min-height:560px;
    border-radius:30px;
    overflow:hidden;
    position:relative;
    background:#000;
    transition:0.5s;
}

.room-card:hover{
    transform:translateY(-10px);
}

.room-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.7s;
}

.room-card:hover img{
    transform:scale(1.08);
}

/* OVERLAY */

.room-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
    rgba(0,0,0,0.95) 10%,
    rgba(0,0,0,0.3) 55%,
    rgba(0,0,0,0.1) 100%);
}

/* CONTENT */

.room-content{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:35px;
    color:#fff;
}

.room-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:15px;
}

.room-top span{
    background:rgba(255,255,255,0.15);
    padding:8px 16px;
    border-radius:30px;
    font-size:13px;
    backdrop-filter:blur(10px);
}

.room-price{
    font-size:22px;
    font-weight:600;
}

.room-content h3{
    font-size:34px;
    line-height:1.2;
    margin-bottom:15px;
    font-family:'Playfair Display',serif;
}

.room-content p{
    font-size:15px;
    line-height:1.8;
    color:#f1f1f1;
    margin-bottom:22px;
}

/* FEATURES */

.room-features{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:25px;
}

.room-features div{
    display:flex;
    align-items:center;
    gap:8px;
    background:rgba(255,255,255,0.14);
    padding:9px 14px;
    border-radius:30px;
    font-size:13px;
}

.room-features i{
    color:#d5e7f3;
}

/* BUTTON */

.room-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 28px;
    background:#c8d7e2;
    color:#111;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:0.4s;
}

.room-btn:hover{
    background:#fff;
    transform:translateX(5px);
}

/* =========================
BOTTOM NAVIGATION
========================= */

.slider-nav{
    display:flex;
    justify-content:center;
    gap:18px;
    margin-top:45px;
}

.nav-btn{
    width:65px;
    height:65px;
    border:none;
    border-radius:50%;
    background:#d7e3eb;
    color:#1d1d1d;
    font-size:22px;
    <!-- cursor:pointer; -->
    transition:0.4s;
}

.nav-btn:hover{
    background:#9eb6c6;
    color:#fff;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1100px){

    .room-card{
        flex:0 0 calc(50% - 15px);
    }

    .room-title h2{
        font-size:42px;
    }
}

@media(max-width:768px){

    .room-section{
        padding:70px 20px;
    }

    .room-title h2{
        font-size:34px;
    }

    .room-card{
        flex:0 0 100%;
        min-height:500px;
        border-radius:22px;
    }

    .room-content{
        padding:25px;
    }

    .room-content h3{
        font-size:28px;
    }

    .room-top{
        flex-direction:column;
        align-items:flex-start;
        gap:10px;
    }

    .room-btn{
        width:100%;
        justify-content:center;
    }

    .nav-btn{
        width:55px;
        height:55px;
        font-size:18px;
    }
}

.majestic-attraction-section{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
    font-family:Arial, sans-serif;
}

.majestic-attraction-item{
    position:absolute;
    width:100%;
    height:100%;
    background-size:cover;
    background-position:center;
    opacity:0;
    transition:1s ease;
}

.majestic-attraction-item.active-attraction{
    opacity:1;
    z-index:1;
}

.majestic-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
}

.majestic-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    width:90%;
    max-width:850px;
    color:#fff;
    z-index:2;
}

.majestic-content span{
    display:inline-block;     font-family: "Nunito", sans-serif;
    margin-bottom:15px;
    font-size:14px;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#7fd9ff;
}

.majestic-content h2{
    font-size:60px; font-family:'Playfair Display',serif;
    margin-bottom:20px;
    line-height:1.2;
}

.majestic-content p{
    font-size:18px;     font-family: "Nunito", sans-serif;
    line-height:1.8;
    color:#f1f1f1;
}

/* Buttons */

.majestic-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:60px;
    height:60px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,0.18);
    color:#fff;
    font-size:26px;
    cursor:pointer;
    z-index:5;
    transition:0.4s;
    backdrop-filter:blur(4px);
}

.majestic-btn:hover{
    background:#00aaff;
}

.majestic-prev{
    left:25px;
}

.majestic-next{
    right:25px;
}

/* Dots */

.majestic-dots{
    position:absolute;
    bottom:35px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:12px;
    z-index:5;
}

.majestic-dot{
    width:14px;
    height:14px;
    border-radius:50%;
    background:rgba(255,255,255,0.5);
    cursor:pointer;
    transition:0.4s;
}

.majestic-dot.active-dot{
    background:#00bfff;
    transform:scale(1.2);
}

/* Mobile */

@media(max-width:768px){

    .majestic-attraction-section{
        height:90vh;
    }

    .majestic-content h2{
        font-size:38px;
    }

    .majestic-content p{
        font-size:15px;
    }

    .majestic-btn{
        width:45px;
        height:45px;
        font-size:20px;
    }

    .majestic-prev{
        left:15px;
    }

    .majestic-next{
        right:15px;
    }

}

/* ── FOOTER ───────────────────────────────────────── */
  footer {
    background: #050f1a;
    padding: 50px 5%;
    color: rgba(200,232,248,.55);
  }
  .footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 36px;
  }
  .footer-brand .brand, .footer-brand .brand a{
    font-family: 'Playfair Display', serif; text-decoration:none;
    font-size: 1.4rem;
    color: var(--white);
    display: block;
    margin-bottom: 10px;
  }
  .footer-brand .brand em { font-style: italic; color: var(--sky); }
  .footer-brand p, .footer-brand p a { font-size: .9rem; line-height: 1.7; text-decoration:none; color: rgba(200,232,248,.55); }
  footer h5 {
    font-family: 'Jost', sans-serif;
    font-size: .98rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--sky-light);
    margin-bottom: 16px;
  }
  footer ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  footer ul li a {
    color: rgba(200,232,248,.55);
    text-decoration: none;
    font-size: .95rem;
    transition: color .25s;
  }
  footer ul li a:hover { color: var(--sky-light); }
  .footer-bottom {
    border-top: 1px solid rgba(135,206,235,.08);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: .75rem;
  }
  .footer-bottom a { color: var(--sky-light); text-decoration: none; }

  /* ── RESPONSIVE ───────────────────────────────────── */
  @media (max-width: 900px) {
    .about-grid, .location-grid, .contact-grid { grid-template-columns: 1fr; }
    .about-visual { height: 300px; }
    .rooms-grid { grid-template-columns: 1fr 1fr; }
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: 1fr 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
    .gal-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
    .nav-address { display: none; }
    .nav-phone .phone-text { display: none; }
  }

  @media (max-width: 600px) {
    :root { --nav-h: 68px; }
    .rooms-grid, .reviews-grid { grid-template-columns: 1fr; }
    .amenities-grid { grid-template-columns: 1fr 1fr; }
    .book-bar { padding: 20px; }
    .book-field input, .book-field select { min-width: 120px; }
    .nav-logo .brand { font-size: 1.1rem; }
    .btn-book { padding: 8px 16px; font-size: .7rem; }
    .form-row { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .slider-arrow { display: none; }
    section { padding: 60px 0; }
  }

 .amenitypg {
      width:40%; float:left; 
      margin: 10px 10px 0 60px;
      padding: 20px; 
      
    }
  
    .amenitypg ul {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 15px 30px;
    }
    .amenitypg li {
      font-size: 17px;
      color: #333; padding:8px 0;
      display: flex;
      align-items: center; text-align:left;
    }
    .amenitypg li i {
       color: #333;
      margin-right: 10px;
      font-size: 18px;
      min-width: 20px;
      text-align: center;
    }
.amenitypg-list li {
  position: relative;
  padding-left: 8px;
  margin-bottom: 10px;
}

.amenitypg-list li::before {
  content: "";
  position: absolute;
  left: 0;
   color: #333; /* Blue checkmark */
  font-size: 17px;
}
.col1 {  width:40%; float:left; text-align:left; padding: 20px;  font-size: 17px;  color: #333; margin-left:30px; }
.col1 ul li {list-style:circle; line-height:36px;}
.col1 ul li a {color: #333; text-decoration:none; list-style:none;}	

.top { margin-top:60px;}

.map1{ font-size:16px; margin-top:14px;
padding:12px;  font-family: "Libre Baskerville", serif;
width:75%; 
margin-right:15px; background:#fff;
border: 1px double #929292;
color:#444;
float:left; 
}
label { display:none;}
 