@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap');
@import url('https://fonts.googleapis.com/css?family=Comfortaa');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI', sans-serif;
}
label {display: none;}
.ct {text-align:center;}
.title1, .title1 a {font-size:42px;color:#3c4f5e;text-decoration:none; line-height:50px;  margin-bottom:30px; font-weight:bold; margin-top:10px; font-family: "Libre Baskerville", serif;}
.cnt {text-decoration:none;  text-align:center;}
.subt { font-family: 'Dancing Script', cursive; color:#fff; font-size:28px; line-height:36px; padding:8px 0;}
.wel { font-family: "Libre Baskerville", serif; color:#3c4f5e; font-size:23px; line-height:60px; font-weight:600;}
.white {color:#fff;  font-size:25px; line-height:28px; padding-bottom:8px; font-weight:normal;}
.title2, .title2 a { font-size:30px;color:#3c4f5e;text-decoration:none; line-height:40px;  margin-bottom:20px; font-weight:bold; margin-top:10px;font-family: "Libre Baskerville", serif;}
.title3, .title3 a  {font-size:28px;color:#fff;text-decoration:none; line-height:40px; margin-bottom:10px; font-weight:bold; font-family: "Libre Baskerville", serif;}
.title4, .title4 a {font-size:25px; font-weight:bold;color:#235784;text-decoration:none; text-align:left; margin:20px 0; font-family: "Libre Baskerville", serif;  transition: color 0.3s ease;}

.title4 a:hover {
    color: #333; /* Change to your preferred color */
}

.title5, .title5 a {text-decoration:none; margin:0 auto; font-weight:bold; font-size:23px; color:#fff; padding-bottom:10px; font-family: "Libre Baskerville", serif;}
.title6 {text-decoration:none; margin:0 auto; font-weight:bold; font-size:21px; color:#fff; text-align:center; line-height:54px; font-family: "Libre Baskerville", serif; }


/* ================= HEADER ================= */
header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:1000;
    transition:all 0.4s ease;
}

header.transparent{
    background:linear-gradient(to bottom, rgba(0,0,0,0.65), rgba(0,0,0,0));
}

header.shrink{
    background:#333;
}

/* LEFT SIDE LOGO */
.site-logo{
    position:absolute;
    top:10px;
    left:40px;
    z-index:9999;
}

.site-logo img{
    height:90px;
    transition:all 0.4s ease;
}

header.shrink .site-logo img{
    height:70px;
}

/* TOP HEADER */
.top-header{
    display:flex;
    align-items:center;
    justify-content:center;
    padding:10px 0;
    position:relative;
}

.header-left,
.header-right{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
}

.header-left{
    left:220px;
    color:#fff;
    font-size:14px;
}

.header-left a{
    color:#fff;
    text-decoration:none;
    margin-left:6px;
}

/* CENTER IMAGE */
.header-center img{
    height:56px;
    transition:all 0.4s ease;
}

header.shrink .header-center img{
    height:45px;
}

.header-right{
    right:220px;
}

.book-btn{
    background:#fff;
    color:#333;
    padding:10px 22px;
    border-radius:30px;
    font-weight:600;
    text-decoration:none;
    transition:all 0.4s ease;
}

.book-btn:hover{
    background:#6C61B5;
    color:#fff;
    box-shadow:0 8px 20px rgba(0,0,0,0.3);
}

/* MOBILE */
@media(max-width:991px){

    .site-logo{
        left:15px;
        top:10px;
    }

    .site-logo img{
        height:65px;
    }

    .header-left,
    .header-right{
        position:static;
        transform:none;
        text-align:center;
        margin:5px 0;
    }

    .top-header{
        flex-direction:column;
        padding-top:80px;
    }

    .header-center img{
        height:80px;
    }

    header.shrink .header-center img{
        height:60px;
    }
}

/* ================= NAV ================= */
nav{
    
    
}

.nav-container{ border-bottom:1px solid #ccc;
    max-width:1200px;
    margin:auto;
    padding:14px 30px;
    display:flex;
    justify-content:center;
    position:relative;
}

.nav-menu{
    display:flex;
    gap:32px;
    align-items:center;
}

.nav-menu a{
    color:#fff; font-size:16px;
    text-decoration:none;
    font-weight:600;
}

/* Dropdown */
.dropdown{
    position:relative;
}

.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;
    background:#023482;
    min-width:180px;
    display:none;
    flex-direction:column;
    box-shadow:0 10px 30px rgba(0,0,0,0.25);
}

.dropdown-menu a{
    padding:12px 16px;
    border-bottom:1px solid rgba(255,255,255,0.15);
}

.dropdown:hover .dropdown-menu{
    display:flex;
}

/* Hamburger */
.hamburger{
    display:none;
    position:absolute;
    right:20px;
    color:#fff;
    font-size:26px;
    cursor:pointer;
}


/* ================= SLIDER ================= */
.slider{
    height:100vh;
    position:relative;
    overflow:hidden;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transform:scale(1.1);
    transition:opacity 1s ease, transform 6s ease;
}

.slide.active{
    opacity:1;
    transform:scale(1);
}

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

.slide::after{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.35);
}

.slide-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:#fff;
    z-index:2;
    animation:fadeUp 1.2s ease;
}

.slide-content h1{
    font-size:52px;
    margin-bottom:15px;
}

.slide-content p{
    font-size:18px;
}

@keyframes fadeUp{
    from{opacity:0; transform:translate(-50%,-40%);}
    to{opacity:1; transform:translate(-50%,-50%);}
}

/* Slider buttons */
.slider-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:rgba(255,255,255,0.8);
    border:none;
    padding:12px 16px;
    cursor:pointer;
    z-index:2;
}

.prev{left:20px;}
.next{right:20px;}

/* ================= MOBILE ================= */
@media(max-width:768px){
    .nav-menu{
        position:relative;
        top:60px;
        left:0;
        width:100%;
        background:#333;
        flex-direction:column;
        padding:20px;
        display:none;
    }

    .nav-menu.active{
        display:flex;
    }

    .hamburger{
        display:block;
    }

    .slide-content h1{
        font-size:32px;
    }
}
.data1 {width:76%; margin:0 auto;  padding:2% 0; }
.data1 p {font-size:17px; color:#424242; font-weight:normal; line-height:30px; text-align:left;}
.data1 p a {color:#0078B7; text-decoration:none; font-size:17px;}
.hotel { float:right; margin:0 0 10px 60px; width:52%;overflow: hidden; margin-bottom:20px; box-shadow:0px 0px 30px 0px rgb(168 168 168 / 30%);
        } 
        .hotel img { 
            width: 100%; 
            transition: 0.5s all ease-in-out; 
        }     
        .hotel:hover img { 
            transform: scale(1.2); 
        } 
#w2b-StoTop{display: block;position: fixed;top:90%;padding: 10px; color:#fff; font-size:13px; right:0; margin-right:20px; text-decoration:none; cursor:pointer; background:#ff7403;}
#w2b-StoTop a{color:#fff; text-decoration:none; font-size:13px;}
.collapsible {
 background-color: #fff;
  color: #0078B7; font-weight:bold;
  cursor: pointer;
  padding:8px 0px; font-family: "Libre Baskerville", serif;
  width:100%; margin:0 auto; float:none;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}

.active, .collapsible:hover {
  background-color:none; color:#0078B7;
}

.addtx {
  padding: 0 0;
  display: none;
  overflow: hidden;
  
}			

.rom { width:35%; font-size:15px; color:#111010;  margin:18px 22px; float:left;}
.rom ul li{list-style:circle; line-height:28px;}
.rom ul li a{color:#111010; text-decoration:none; list-style:circle;}

/* Section */
.explore-section {
  max-width: 1200px;
  margin: auto;     font-size: 19px;
    line-height: 1.8;
    color: #555;
  padding: 80px 20px;
}

/* Rows */
.explore-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
  margin-bottom: 60px;
}

.explore-row.reverse {
  grid-template-columns: 1fr 1fr;
}

/* Content */


.explore-content p, .explore-content p a, .explore-section p a {
  font-size: 19px;
  line-height: 1.8;
  color: #555; text-decoration:none;
  margin-bottom: 16px;
  max-width: 480px;
}

/* Button */
.learn-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 22px;
  border: 1px solid #5a2a57;
  color: #5a2a57;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  transition: 0.3s ease;
}

.learn-btn:hover {
  background: #5a2a57;
  color: #fff;
}

/* Image */
.explore-image img {
  width: 100%;
  height: 100%;
  max-height: 600px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .explore-row,
  .explore-row.reverse {
    grid-template-columns: 1fr;
  }

  .explore-content h2 {
    font-size: 26px;
  }

  .explore-image img {
    max-height: 280px;
  }

  .explore-row {
    margin-bottom: 20px;
  }
}
/* ===== Scroll Animation Base ===== */
.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease;
}

.animate.show {
  opacity: 1;
  transform: translateY(0);
}

/* Slide Directions */
.slide-left {
  transform: translateX(-60px);
}

.slide-right {
  transform: translateX(60px);
}

.slide-left.show,
.slide-right.show {
  transform: translateX(0);
}

/* Image subtle zoom */
.zoom {
  transform: scale(1.05);
}

.zoom.show {
  transform: scale(1);
}

.hotel-amenities {

    text-align: center;
    margin-bottom:32px;
    padding: 25px 0 25px;
    position: relative; margin:2% 0;}
	
	
.ftx { float:left; width:96%; margin:0 auto;} 
.ft{width:20%; float:left; margin:12px 10px;}
.ftimg{ width:40px; height:40px; margin:0 auto; margin-bottom:20px;}
.ft p{font-size:16px; color:#000; text-align:center; font-weight:normal; margin-bottom:12px;  line-height:26px;}
.am { float:left; width:44%; font-size:18px; color:#000; font-weight:normal; line-height:30px; margin:4% 0 0 4%;}
.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: #fff;
  transition: all 0.4s ease;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
}

.amenity-item:hover .icon-circle {
  background: #0160a6;
  color: #fff;
  box-shadow: 0 0 25px rgba(227,6,19,0.6);
}

.attraction-section {
  background: url('images/beach.jpg') center center / cover no-repeat;
  min-height: 520px;
  position: relative;
  display: flex;
  align-items: center;
}

.attraction-overlay {
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  display: flex; margin-left: 58%;
    margin-top: 20%;
  align-items: center;
}

.attraction-content {
  max-width: 700px;
  padding: 60px 20px;
  margin-left: 8%;
  color: #ffffff;
}

.attraction-content h2 {
  font-size: 42px;
  font-family: Georgia, serif;
  margin-bottom: 10px;
}

.attraction-content h4 {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #f2f2f2;
}

.attraction-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #eaeaea;
}

/* Responsive */
@media (max-width: 768px) {
  .attraction-section {
    min-height: 420px;
  }

  .attraction-content {
    margin-left: 0;
    text-align: center;
  }

  .attraction-content h2 {
    font-size: 30px;
  }
}

/* Section */
.rooms-section {
  padding: 80px 20px;
  background: #f8f8f8;
}

.rooms-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.rooms-header {
  text-align: center;
  max-width: 800px;
  margin: auto;
  margin-bottom: 50px;
}

.rooms-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #2c2c2c;
}

.rooms-header p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

/* Grid */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Room Card */
.room-card {
  position: relative;
  height: 360px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* Dark overlay always visible */
.room-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

/* Content */
.room-content {
  position: absolute;
  bottom: 30px;
  left: 20px;
  right: 20px;
  z-index: 2;
  color: #fff;
}

.room-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

/* Button hidden initially */
.room-btn {
  display: inline-block;
  padding: 10px 22px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s ease;
}

/* Hover effect */
.room-card:hover .room-btn {
  opacity: 1;
  transform: translateY(0);
}

.room-btn:hover {
  background: #fff;
  color: #000;
}

/* Scroll Animation */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .rooms-grid {
    grid-template-columns: 1fr;
  }

  .rooms-header h2 {
    font-size: 28px;
  }

  .room-card {
    height: 280px;
  }
}


#footbg { width:100%; background:#596772; }
#footer  {width:86%; margin:0 auto;  line-height:30px; color:#fff;  padding-top:3%;}
#footer p{ font-size:14px; color:#f5f5f5; font-weight:normal;}
#footer p a{text-decoration:none; color:#fff;}
.footer-col {float:right; width:34%; text-align:left;  font-size:15px; font-weight:normal; }
.footer-co {float:left; width:26%; text-align:Center; }
.footer-col p,  .footer-col p a{ font-size:14px; font-weight:normal; text-decoration:none; color:#fff;}

#lastbg { width:100%;  background:#333; text-align:Center;}
.last  {width:86%; margin:0 auto; padding:1% 0%; line-height:30px; color:#ededed;}
.last p, .last p a{line-height:26px; font-size:14px; line-height:26px; padding:5px 0; color:#ededed; text-decoration:none; font-weight:200;}

.amenity {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

/* Grid Layout */
.amenity ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Desktop: 2 columns */
  gap: 12px 20px;
}

/* List Item */
.amenity li {
  font-size: 18px; padding:10px 0;
  color: #555;
  display: flex;
  align-items: center;
}

/* Icon */
.amenity li i {
      color: #333;
  margin-right: 10px;
  font-size: 23px;
  min-width: 20px;
}

/* Optional custom bullet (if not using icon) */
.amenity-list li::before {
  content: "";
  display: none; /* hide since using icon */
}

/* ðŸ“± Mobile (1 column) */
@media (max-width: 767px) {
  .amenity ul {
    grid-template-columns: 1fr;
  }

  .amenity li {
    font-size: 15px;
  }
}

/* ðŸ“² Tablet (2 columns) */
@media (min-width: 768px) and (max-width: 1024px) {
  .amenity ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ðŸ’» Large Screen (3 columns optional) */
@media (min-width: 1200px) {
  .amenity ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

.col2 { float:LEFT; margin:15px 35px; width:38%;}

.col2 ul {
   padding: 0;

}

.col2 ul li {
  font-size: 17px; list-style:circle; color:#555;
  margin-bottom: 26px; text-align:left;
  gap: 10px;
}
.col2 ul li a{ color:#235784; text-decoration:none;  transition: color 0.3s ease;}

.col2 ul li a{ color:#235784; text-decoration:none;  transition: color 0.3s ease;}

.col2 ul li a:hover {
    color: #333; /* Change to your preferred color */
}

.fq{text-align:left; text-decoration: none; color:#333; font-weight:bold;  font-size:21px;  line-height:34px; margin-top:6px; list-style:none;}
.fqa{font-size:18px; color:#424242; font-weight:normal; line-height:28px; text-align:left;}
.fqa a{font-size:18px; color:#6C61B5; text-decoration:none;}		


.attractions {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 15px;
}

.attractions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.attraction-card {
  background: #ffffff;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.attraction-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.attraction2-content {
  padding: 22px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.attraction2-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.attraction2-content p {
  font-size: 17px;
  line-height: 1.7;
  color: #555;
}

/* Desktop 2-Column Layout */
@media (min-width: 768px) {
  .attractions-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
  }
}
.top-pd {margin-top:8%;}

#reserve { float:none; width:100%; margin:0 auto; position:absolute; z-index:999; bottom:-70px}
.reserve { color:#fff; font-size:27px;  float:left;  font-weight:normal; text-align:left; padding:15px 12px; margin-right:26px; font-family: 'Segoe UI', sans-serif;}
.imenu { width:74%;  margin:0 auto; padding:12px 15px; background: rgba(51,51,51,0.8); float:none; border-radius: 4px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); font-family: 'Segoe UI', sans-serif;}
.check1{ margin:11px 0px; float:left; width:14%; font-weight:normal;}
.check2{ margin:10px 10px; float:left; width:11%; font-weight:normal;}
.chk {font-size:12px; color:#424669; line-height:24px;}
.message1{ font-size:14px; padding:10px 11px; margin:0 auto; border-bottom:#424669 solid 1px; color: #424669; border-radius: 4px; width:90%; font-weight:normal;  background:#f2f2f2; font-family: 'Segoe UI', sans-serif;}
.message2{ font-size:14px; padding:9px 10px; margin:0 auto; width:90%; color: #424669; border-radius: 4px; font-weight:normal; background:#f2f2f2; border-bottom:#424669 solid 1px; font-family: 'Segoe UI', sans-serif;}

input[type="submit"]
.palace-button, input[type="submit"], input#searchsubmit { border-radius: 30px;
background:linear-gradient(45deg,#6C61B5,#5f579b); border:none; color:#fff; font-size: 16px; font-family: 'Segoe UI', sans-serif; padding:10px 22px; font-weight:normal; letter-spacing:1px;}
::-webkit-input-placeholder {
   color: #333333;
}

:-moz-placeholder { /* Firefox 18- */
   color: #333333;  
}

::-moz-placeholder {  /* Firefox 19+ */
   color: #333333;  
}

:-ms-input-placeholder {  
   color: #333333;  
}
.map1{ font-size:12px;
padding:10px;  font-family: 'Segoe UI', sans-serif;
width:50%; 
margin-right:15px; background:#fff;
border: 1px double #929292;
color:#444;
float:left; border-radius: 20px;
}

.am-icon {
    width: 28px;
    height: 28px;
    margin-right: 10px;
    vertical-align: middle;
}

html {
    scroll-behavior: smooth;
  }

  #scrollTopBtn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    border: none;
    outline: none;
    background:#692E6F;
    color: #fff;
    font-size: 22px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
  }

  #scrollTopBtn:hover {
    background: #9C5493; color: #000;
    transform: translateY(-4px);
  }

  @media (max-width: 767px) {
    #scrollTopBtn {
      width: 45px;
      height: 45px;
      font-size: 20px;
      bottom: 20px;
      right: 20px;
    }
  }

/* =========================================================
   ALL-DEVICE RESPONSIVE OVERRIDES
   Shared across the complete Chisholm's Motor Inn website.
   ========================================================= */
:root {
  --compact-header-height: 76px;
  --site-content-width: 1200px;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden !important;
  touch-action: none;
}

img,
picture,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
}

iframe {
  max-width: 100%;
}

input,
select,
textarea,
button {
  max-width: 100%;
  font: inherit;
}

/* Inner-page content must always clear the fixed desktop header. */
.top-pd,
.explore-section.top-pd {
  margin-top: 0 !important;
  padding-top: 175px !important;
}

/* The gallery has no hero image behind the transparent header. */
body.gallery-page header,
body.gallery-page header.transparent {
  background: #333 !important;
}

body.gallery-page .title1 {
  text-align: center;
  overflow-wrap: anywhere;
}

.title1,
.title1 a {
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.2;
}

.wel {
  font-size: clamp(19px, 2.5vw, 23px);
  line-height: 1.4;
}

.explore-section,
.rooms-container,
.attractions,
.data1,
#footer,
.last {
  max-width: var(--site-content-width);
}

.data1 {
  width: min(92%, var(--site-content-width));
}

/* Responsive photo gallery grid. VisualLightBox still handles opening images. */
#vlightbox1 {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: 100% !important;
  max-width: var(--site-content-width);
  margin: 0 auto !important;
  padding: 0 !important;
}

#vlightbox1 > a.vlightbox1 {
  display: block !important;
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
  background: #f2f2f2;
}

#vlightbox1 img.sm {
  display: block !important;
  width: 100% !important;
  height: 225px !important;
  margin: 0 !important;
  object-fit: cover;
  transition: transform 0.35s ease;
}

#vlightbox1 > a.vlightbox1:hover img.sm,
#vlightbox1 > a.vlightbox1:focus-visible img.sm {
  transform: scale(1.04);
}

#vlightbox1 > a.vlightbox1:focus-visible {
  outline: 3px solid #235784;
  outline-offset: 3px;
}

/* Flexible footer instead of fixed-width floated columns. */
#footer {
  width: min(92%, var(--site-content-width));
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.footer-co,
.footer-col {
  float: none !important;
  min-width: 0;
}

.footer-co {
  width: 24%;
}

.footer-col {
  width: 33%;
}

.last {
  width: min(92%, var(--site-content-width));
}

.ftlogo img {
  width: min(220px, 100%) !important;
  height: auto;
}

/* Prevent wide legacy sections from creating horizontal scrolling. */
.hotel,
.ftx,
.imenu,
.amenity,
.attractions-grid,
.rooms-grid,
.explore-row,
.attraction-card,
.attraction-img,
.attraction2-content,
.room-card,
.map1 {
  max-width: 100%;
}

.hamburger {
  border: 0;
  background: transparent;
  font-family: inherit;
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 1199px) {
  #vlightbox1 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .nav-menu {
    gap: 20px;
  }

  .header-left {
    left: 170px;
  }

  .header-right {
    right: 35px;
  }
}

/* Phone and tablet navigation use one consistent compact header. */
@media (max-width: 991px) {
  header,
  header.transparent,
  header.shrink {
    min-height: var(--compact-header-height) !important;
    height: var(--compact-header-height) !important;
    background: #333 !important;
  }

  .site-logo {
    position: absolute !important;
    top: 8px !important;
    left: 15px !important;
    z-index: 10003 !important;
  }

  .site-logo img,
  header.shrink .site-logo img {
    width: auto !important;
    height: 60px !important;
  }

  nav,
  .nav-container {
    width: 100% !important;
    max-width: none !important;
    height: var(--compact-header-height) !important;
  }

  .nav-container {
    margin: 0 !important;
    padding: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.3) !important;
  }

  .hamburger {
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: absolute !important;
    top: 16px !important;
    right: 15px !important;
    width: 44px !important;
    height: 44px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid rgba(255,255,255,0.8) !important;
    border-radius: 5px;
    background: rgba(0,0,0,0.24) !important;
    color: #fff !important;
    font-size: 25px !important;
    cursor: pointer;
    z-index: 10005 !important;
  }

  .hamburger:hover,
  .hamburger:focus-visible {
    background: rgba(255,255,255,0.16) !important;
  }

  .hamburger:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
  }

  /* Older pages use a div hamburger; this converts the icon to X when open. */
  .nav-menu.active + .hamburger .fa-bars::before {
    content: "\f00d" !important;
  }

  .nav-menu {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    width: min(88vw, 380px) !important;
    height: 100vh !important;
    height: 100dvh !important;
    margin: 0 !important;
    padding: 82px 22px 30px !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    overscroll-behavior: contain;
    background: #333 !important;
    box-shadow: -10px 0 30px rgba(0,0,0,0.35);
    transform: translateX(105%);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    z-index: 10004 !important;
  }

  .nav-menu.active {
    transform: translateX(0) !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .nav-menu a {
    display: flex !important;
    align-items: center;
    width: 100% !important;
    min-height: 48px;
    padding: 14px 10px !important;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    color: #fff !important;
    font-size: 17px !important;
    line-height: 1.35;
    text-align: left;
    position: relative;
    z-index: 1;
  }

  .nav-menu a:hover,
  .nav-menu a:focus-visible,
  .nav-menu a[aria-current="page"] {
    background: rgba(255,255,255,0.12) !important;
    outline: none;
  }

  .dropdown,
  .dropdown-menu {
    position: static !important;
    width: 100% !important;
  }

  .dropdown-menu {
    box-shadow: none !important;
  }

  /* Hide duplicated location/text logo row and keep Book Now usable. */
  .top-header {
    position: absolute !important;
    top: 0 !important;
    right: 70px !important;
    left: 90px !important;
    width: auto !important;
    height: var(--compact-header-height) !important;
    min-height: var(--compact-header-height) !important;
    margin: 0 !important;
    padding: 0 !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-end !important;
    pointer-events: none;
    z-index: 10002;
  }

  .header-left,
  .header-center {
    display: none !important;
  }

  .header-right {
    display: block !important;
    position: static !important;
    transform: none !important;
    margin: 0 !important;
    pointer-events: auto;
  }

  .book-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 14px !important;
    font-size: 13px !important;
    line-height: 1.2;
    white-space: nowrap;
  }

  /* Reliable fixed-header clearance for every inner page using top-pd. */
  .top-pd,
  .explore-section.top-pd {
    margin-top: 0 !important;
    padding-top: calc(var(--compact-header-height) + 34px) !important;
  }

  .explore-section {
    width: 100%;
    padding-right: 20px !important;
    padding-left: 20px !important;
  }

  .explore-row,
  .explore-row.reverse {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .explore-content p,
  .explore-content p a,
  .explore-section p a {
    max-width: none;
  }

  .hotel {
    float: none !important;
    width: 100% !important;
    margin: 0 0 24px !important;
  }

  .rom,
  .col2,
  .am {
    float: none !important;
    width: 100% !important;
    margin: 20px 0 !important;
  }

  .ftx {
    float: none !important;
    width: 100% !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .ft {
    float: none !important;
    width: calc(50% - 24px) !important;
    margin: 12px !important;
  }

  .attraction-section {
    min-height: 440px;
  }

  .attraction-overlay {
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    align-items: center !important;
  }

  .attraction-content {
    width: 100%;
    max-width: 760px;
    margin: 0 auto !important;
    padding: 50px 24px !important;
  }

  .rooms-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  #reserve {
    position: static !important;
    width: 100% !important;
    margin: 0 auto !important;
  }

  .imenu {
    float: none !important;
    width: min(94%, 760px) !important;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 10px;
  }

  .reserve {
    float: none !important;
    width: 100%;
    margin: 0 !important;
    text-align: center;
  }

  .check1,
  .check2 {
    width: calc(35% - 10px) !important;
    margin:10px 10px;
  }


  .map1 {
    float: none !important;
    width: 100% !important;
    margin: 0 0 12px !important;
  }

  #vlightbox1 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  #vlightbox1 img.sm {
    height: 210px !important;
  }

  #footer {
    width: min(92%, var(--site-content-width));
    gap: 24px;
  }

  .footer-co {
    width: 100% !important;
    text-align: center !important;
  }

  .footer-col {
    width: calc(50% - 12px) !important;
    text-align: left !important;
  }

  #cookieConsent {
    padding: 14px 18px !important;
    font-size: 14px;
    line-height: 1.5;
  }

  #acceptCookies {
    min-height: 40px;
    margin: 10px 0 0 0 !important;
  }
}

@media (max-width: 600px) {
  .title1,
  .title1 a {
    font-size: 29px !important;
    line-height: 1.25 !important;
  }

  .wel {
    display: inline-block;
    font-size: 19px !important;
    line-height: 1.35 !important;
    margin-bottom: 5px;
  }

  .explore-section,
  .rooms-section,
  .attractions {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }

  .rooms-grid {
    grid-template-columns: 1fr !important;
  }

  .room-card {
    height: 280px !important;
  }

  .ft {
    width: 100% !important;
    margin: 10px 0 !important;
  }

  .check1,
  .check2 {
    width: 100% !important; margin:8px 30px;
  }

  #vlightbox1 img.sm {
    height: 180px !important;
  }

  .footer-col {
    width: 100% !important;
    text-align: center !important;
  }

  .footer-col p,
  .footer-col p a {
    text-align: center;
  }

  .last {
    width: 94%;
  }
}

@media (max-width: 420px) {
  .top-header {
    right: 64px !important;
    left: 78px !important;
  }

  .book-btn {
    min-height: 36px;
    padding: 7px 9px !important;
    font-size: 11px !important;
  }

  .site-logo img,
  header.shrink .site-logo img {
    height: 56px !important;
  }

  #vlightbox1 {
    grid-template-columns: 1fr;
  }

  #vlightbox1 img.sm {
    height: auto !important;
    aspect-ratio: 4 / 3;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
