/* Modern Root variables for Trendy Look */
:root {
    --primary-gold: #6C5128;
    --dark-matte: #235784;
    --dark-accent: #1e2225;
    --light-bg: #f9f9fb;
	--light-gray: #f0eff0;
	 --blue: #1a4b8c;
	 --white: #ffffff;
    --body-text: #4e545a;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --glass-effect: rgba(255, 255, 255, 0.85);
}

/* Reset and Fluid Layout Properties */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-body);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--light-bg);
    color: var(--body-text);
    overflow-x: hidden;
}
.ct {text-align:center;}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Tag Styles */
.section-tag {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 10px;
}
.section-tag.center { text-align: center; }
h2.center { text-align: center; margin-bottom: 30px; }

/* -----------------------------------------
   HEADER COMPONENT (Dynamic Flex Layout)
----------------------------------------- */
.main-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 15px 40px;
    background: var(--glass-effect);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 2000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-address {
    font-size: 13px;
    color: var(--body-text);
    font-weight: 500;
}

/* Toggle Menu Bars Animation Setup */
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.menu-toggle .bar {
    width: 24px;
    height: 2px;
    background-color: var(--dark-matte);
    transition: all 0.3s ease;
}
.menu-toggle.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active .bar:nth-child(2) { opacity: 0; }
.menu-toggle.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Centered Logo Look */
.header-center {
    text-align: center;
}
.brand-logo {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    color: var(--dark-matte);
    text-decoration: none;
    letter-spacing: -0.5px;
}
.sub-brand {
    color: var(--primary-gold);
    font-weight: 300;
    font-size: 18px;
    margin-left: 2px;
}

.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
}
.header-phone {
    text-decoration: none;
    color: var(--dark-matte);
    font-weight: 600;
    font-size: 14px;
}
.btn-book-now {
    background-color: var(--dark-matte);
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.btn-book-now:hover {
    background-color: var(--primary-gold);
    transform: translateY(-2px);
}

/* Overlay Navigation Panel */
.mobile-nav {
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    background: var(--dark-matte);
    height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1999;
}
.mobile-nav.open {
    height: calc(100vh - 75px);
    opacity: 1;
    visibility: visible;
}
.mobile-nav ul {
    list-style: none;
    padding: 40px;
}
.mobile-nav ul li { margin-bottom: 25px; }
.mobile-nav ul li a {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 32px;
    text-decoration: none;
    transition: color 0.3s;
}
.mobile-nav ul li a:hover { color: var(--primary-gold); }

/* -----------------------------------------
   SLIDER/HERO SECTION
----------------------------------------- */
.hero-slider {
    height: 90vh;
    width: 100%;
    position: relative;
    background-color: var(--dark-matte);
}
.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.slide-content h1 {
    font-family: var(--font-heading);
    font-size: 64px;
    color: #fff;
    font-weight: 400;
    margin: 15px 0 25px 0;
    max-width: 800px;
}
.slide-content p {
    color: rgba(255,255,255,0.85);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 35px auto;
}
.badge {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(5px);
    color: #fff;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.btn-trendy {
    display: inline-block;
    padding: 14px 36px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    transition: all 0.3s;
}
.btn-trendy:hover {
    background: #fff;
    color: var(--dark-matte);
}

/* -----------------------------------------
   WELCOME & EXTERIOR SECTION
----------------------------------------- */
.welcome-section {
    padding: 100px 0;
}
.welcome-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}
.t1 {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--dark-matte);
    margin-bottom: 25px;
    line-height: 1.2;
}
.welcome-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}
.image-reveal-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}
.image-reveal-frame img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}
.image-reveal-frame:hover img {
    transform: scale(1.05);
}

/* -----------------------------------------
   AMENITIES COMPONENT
----------------------------------------- */
.amenities-section{
    background:#fff;
    padding:80px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.amenities-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    gap:60px;
    align-items:center;
}

.amenities-left{
    flex:1;
}

.amenity-box{
    background:#fff;
    padding:25px;
    border-radius:10px;
    margin-bottom:20px;
    display:flex;
    align-items:flex-start;
    gap:18px;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
    transition:0.3s;
}

.amenity-box:hover{
    transform:translateY(-5px);
}

.amenity-icon{
    font-size:26px;
    color:#1b6ca8;
    background:#eef6fb;
    width:55px;
    height:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
}

.amenity-text-heading{
    margin:0;
    font-size:18px;
    color:#222;
}

.amenity-text p{
    margin:6px 0 0;
    font-size:14px;
    color:#666;
}

.amenities-right{
    flex:1;
}

.amenities-right span{
    letter-spacing:3px;
    font-size:13px;
    color:#6C5128;
    text-transform:uppercase;
}

.t2{
    font-size:42px;
    margin:10px 0 20px;
    color:#111;
    font-family:serif;
}

.amenities-right p{
    font-size:16px;
    line-height:1.8;
    color:#555;
}

/* Responsive */

@media (max-width:900px){

.amenities-container{
    flex-direction:column;
}

.amenities-right h2{
    font-size:32px;
}

}

/* -----------------------------------------
   ROOMS COMPONENT
----------------------------------------- */
.rooms-section {
    padding: 100px 0;
}
.rooms-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}
.room-box {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
}
.room-picture {
    position: relative;
    overflow: hidden;
    height: 240px;
}
.room-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.room-box:hover .room-picture img {
    transform: scale(1.08);
}
.room-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-gold);
    color: #fff;
    padding: 4px 10px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 2px;
}
.room-details {
    padding: 25px;
}
.t5 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--dark-matte);
    margin-bottom: 10px;
}
.room-details p {
    font-size: 14px;
    line-height: 1.6;
}

  .room-features { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
  .room-features li {
    font-size: 0.75rem; color: var(--gray); font-weight: 400;
    background: var(--light-gray); padding: 4px 10px; border-radius: 2px;
  }
  .room-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid #e5e7eb; }
  .room-price { font-size: 0.78rem; color: var(--gray); }
  .room-price strong { font-size: 1.3rem; color: var(--navy); font-weight: 700; }
  .btn-sm {
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--blue); text-decoration: none;
    border: 1.5px solid var(--blue); padding: 8px 16px; border-radius: 3px;
    transition: background 0.2s, color 0.2s;
  }
  .btn-sm:hover { background: var(--blue); color: var(--white); }
/* -----------------------------------------
   ATTRACTIONS GRID COMPONENT
----------------------------------------- */
.attractions-section {
    padding: 100px 0;
    background-color: var(--dark-matte);
    color: #fff;
}
.t3 { color: #fff;  text-align: center; margin-bottom: 30px;     font-family: serif; font-size: 2.17em; }
.attraction-flex {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.attractions-section p { text-align:center; padding:6px 80px; font-size:17px; margin-bottom:12px; line-height:24px;}
.attraction-card {
    position: relative;
    height: 350px;
    border-radius: 6px;
    overflow: hidden;
}
.attraction-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.attraction-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    transition: background 0.3s;
}
.attraction-card:hover .attraction-overlay {
    background: linear-gradient(to top, rgba(195, 155, 98, 0.85), transparent);
}
.t4 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 5px;
}
.attraction-overlay span {
    font-size: 12px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* -----------------------------------------
   GALLERY & TESTIMONIAL DUAL SECTION
----------------------------------------- */
.gallery-testimonial-section {
    padding: 100px 0;
    background: #fff;
}
.footer-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.gallery-block h3, .testimonial-block h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    margin-bottom: 30px;
    color: var(--dark-matte);
}
.interactive-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.g-thumb {
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}
.g-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.g-thumb:hover img { transform: scale(1.1); }

.testimonial-slider {
    background: var(--light-bg);
    padding: 30px;
    border-left: 3px solid var(--primary-gold);
    border-radius: 0 8px 8px 0;
}
.quote {
    font-style: italic;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}
.author {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-gold);
}

/* -----------------------------------------
   FOOTER COMPONENT
----------------------------------------- */
.luxury-footer {
    background: var(--dark-matte);
    padding: 40px 0;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-links a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--primary-gold); }

/* -----------------------------------------
   RESPONSIVE MEDIA QUERIES
----------------------------------------- */
@media (max-width: 992px) {
    .main-header {
        grid-template-columns: auto 1fr;
        padding: 15px 20px;
    }
    .header-center {
        grid-column: 2;
        grid-row: 1;
        text-align: right;
        padding-right: 20px;
    }
    .header-right .header-phone, .header-address {
        display: none; /* Clean up layout on small viewpoints */
    }
    .header-right {
        grid-column: 1 / span 2;
        grid-row: 2;
        justify-content: center;
        padding-top: 10px;
        width: 100%;
        display: none; /* Hide standard bar links, handle via toggler */
    }
    .main-header {
        display: flex;
        justify-content: space-between;
    }
    .welcome-grid, .footer-split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .slide-content h1 {
        font-size: 40px;
    }
}

.hotel-footer{
background:#235784; 
color:#ffffff;
padding:60px 20px 30px;
border-top:#c89b3c solid 4px;
}

.footer-container{
max-width:1200px;
margin:auto;
}

/* Logo */

.footer-logo{
text-align:center;
margin-bottom:40px;
}

.footer-logo img{
max-width:160px;
}

/* Grid */

.footer-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
margin-bottom:40px;
}

.ft1, .ft1 a {
margin-bottom:15px; font-family: var(--font-heading);
font-size:20px;
}

.footer-col p{
font-size:14px; font-family: var(--font-body);
line-height:1.6;
margin-bottom:10px;
color:#e3e6ff;
}

.footer-col a{
color:#ffffff;
text-decoration:none;
}

.footer-col a:hover{
text-decoration:underline;
}

/* Navigation */

.footer-nav{
list-style:none;
padding:0;
margin:0;
}

.footer-nav li{
margin-bottom:8px;
}

.footer-nav a{
color:#e3e6ff;
font-size:14px;
}

/* Bottom */

.footer-bottom{
text-align:center;
border-top:1px solid rgba(255,255,255,0.2);
padding-top:20px;
font-size:14px;
color:#e3e6ff;
}

.footer-bottom a {color:#e3e6ff; text-decoration:none;}

.footer-links a, .footer-links p a{
color:#ffffff;
margin:0 5px;
}

/* Mobile */

@media (max-width:900px){

.footer-grid{
grid-template-columns:1fr;
text-align:center;
}

.footer-nav{
display:inline-block;
text-align:left;
}

}
#w2b-StoTop{display: block;position: fixed;top:90%;padding: 10px; color:#fff; font-size:14px; right:0; margin-right:20px; text-decoration:none; cursor:pointer; background:#1a4b8c;}
#w2b-StoTop a{color:#fff; text-decoration:none; font-size:14px;}
.smo{ width:90%; float:left; padding:10px 0;}
.social-icons {
            display: flex;
            gap: 12px; margin-top:10px;
        }
        .social-icons a {
            text-decoration: none;
            color: white;
            width: 34px;
            height: 34px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
        }
        .social-icons a.facebook { background-color: #3b5998; }
        .social-icons a.twitter { background-color: #1da1f2; }
        .social-icons a.instagram { background-color: #e4405f; }
        	.social-icons a.blog { background-color:#F57C00 }
        .social-icons a.youtube { background-color: #ff0000; }
label { display:none;}

.fq{text-align:left; text-decoration: none; color:#031C1A; font-weight:bold;  font-size:18px;  line-height:34px; margin-top:6px; list-style:none;}
.fqa{font-size:16px; color:#424242; font-weight:normal; line-height:28px; text-align:left;}
.fqa a{font-size:16px; color:#c89b3c; text-decoration:none;}

.top { margin-top:50px;}
.ada { width:100%; margin:0 auto; padding:12px 0; text-align:center; color:#000; font-size:19px; background:#f0eff0; line-height:32px;}
.ada a { color:#000; text-decoration:none;}

.vid { float:none; width:98%;  margin:0 auto;  position: relative;    height: 0;
    padding-bottom:70%;  }
 
.vid iframe {
    width: 100% !important; height:100% !important;
	position: absolute;
   top: 0;
    left: 0;
  }
  
 .amenitypg {
      width:40%; float:left; 
      margin: 10px 10px 0 60px;
      padding: 20px;  color: #1A2730; opacity: .78;
      
    }
  
    .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: #1A2730; padding:8px 0;
      display: flex;
      align-items: center; text-align:left;
    }
    .amenitypg li i {
       color: #1A2730;
      margin-right: 10px;
      font-size: 20px;
      min-width: 20px;
      text-align: center;
    }
.amenitypg-list li {
  position: relative;
  padding-left: 12px;
  margin-bottom: 10px;
}

.amenitypg-list li::before {
  content: "";
  position: absolute;
  left: 0;
   color: #1A2730; /* Blue checkmark */
  font-size: 17px;
}
.col1 {  width:40%; float:left; text-align:left; padding: 20px;  font-size: 16px;  color: #1A2730; opacity: .78; margin-left:30px; }
.col1 ul li {list-style:circle; line-height:36px;}
.col1 ul li a {color: #1A2730; opacity: .78; text-decoration:none; list-style:none;}	


input[type="submit"]
.palace-button, input[type="submit"], input#searchsubmit {
background-color:#0097fb; border:none; color:#fff; font-size: 16px; font-family: 'Plus Jakarta Sans', sans-serif; padding:8px 32px; font-weight:normal;  border-radius:6px; 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: 'Poppins', sans-serif;
width:50%;
margin-right:15px; background:#fff;
border: 1px double #929292;
color:#444;
float:left; border-radius: 20px;
}

.fq{text-align:left; text-decoration: none; color:#031C1A; font-weight:normal;  font-size:21px;  line-height:34px; margin-top:6px; list-style:none;}
.fqa{font-size:16px; color:#424242; font-weight:normal; line-height:28px; text-align:left;}
.fqa a{font-size:16px; color:#1A6B9A; text-decoration:none;} 

.att2 {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 15px;
}

.att2-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.att2-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%;
}

.att2-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.att2-content {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.title7 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.title3 {
  font-size: 23px;
  margin-bottom: 12px;
  color: #333; text-align:center;
}

.att2-content p {
  font-size: 16px; text-align:Left;
  line-height: 1.7;
  color: #555;
}

/* Desktop 2-Column Layout */
@media (min-width: 768px) {
  .att2-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
  }
}