 :root {
    --gold: #c8a96e;
    --gold-light: #e8d5a8;
    --navy: #0d1b2a;
    --navy-mid: #1a2e45;
    --navy-light: #243b55;
    --cream: #f9f4ed;
    --white: #ffffff;
    --text-muted: #8a9bb0;
    --transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--navy);
    overflow-x: hidden;
  }

  /* ── TOPBAR ── */
  .topbar {
    background: var(--navy);
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--gold-light);
    letter-spacing: 0.05em;
  }
  .topbar a { color: var(--gold-light); text-decoration: none; }
  .topbar a:hover { color: var(--gold); }
  .topbar-left { display: flex; gap: 24px; align-items: center; }
  .topbar-right { display: flex; gap: 20px; align-items: center; }
  .topbar-divider { color: var(--gold); opacity: 0.4; }

  /* ── NAV ── */
  nav {
    position: fixed; top: 36px; left: 0; right: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 40px;
    transition: all 0.4s var(--transition);
    /*background: transparent;*/
	background: rgb(13 27 42 / 53%);
  }
  nav.scrolled {
    top: 0;
    background: rgba(13, 27, 42, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  }
  .nav-logo img {
    height: 44px;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s;
  }
  .nav-logo img:hover { opacity: 0.8; }
  .nav-links {
    display: flex; gap: 36px; list-style: none;
  }
  .nav-links a {
    color: var(--white); text-decoration: none;
    font-size: 15px; font-weight: 500; letter-spacing: 0.08em;
    text-transform: uppercase; position: relative; padding-bottom: 4px;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 1px; background: var(--gold);
    transition: width 0.3s var(--transition);
  }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    background: var(--gold); color: var(--navy);
    padding: 12px 30px; font-size: 14px; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    text-decoration: none; border: none; cursor: pointer;
    transition: all 0.3s var(--transition);
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  }
  .nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(200,169,110,0.35); }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
  .hamburger span { width: 26px; height: 2px; background: var(--white); transition: all 0.3s; display: block; }

  /* ── SLIDESHOW / HERO ── */
  .hero {
    position: relative; height: 100vh; min-height: 600px;
    overflow: hidden; display: flex; align-items: flex-end;
  }
  .slides-wrapper {
    position: absolute; inset: 0;
  }
  .slide {
    position: absolute; inset: 0;
    background-size: cover; 
	background-position: center;
    opacity: 0; transform: scale(1.08);
    transition: opacity 1.2s var(--transition), transform 7s linear;
  }
  .slide.active {
    opacity: 1; transform: scale(1);
  }
  .slide-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(13,27,42,0.88) 0%, rgba(13,27,42,0.35) 50%, rgba(13,27,42,0.1) 100%);
  }

  /* Actual hotel photos from TripAdvisor CDN */
.slide-1  { background-image: url('../images/Hotel-exterior1_1.webp'); }
.slide-2  { background-image: url('../images/Exterior2_1.webp'); }
.slide-3  { background-image: url('../images/LobbyInterior1_1.webp'); }
.slide-4  { background-image: url('../images/LobbyInterior2_1.webp'); }
.slide-5  { background-image: url('../images/SuitesSpecialtyRooms7_1.webp'); }
.slide-6  { background-image: url('../images/StandardRoomsBedroom.avif'); }
.slide-7  { background-image: url('../images/SuitesSpecialtyRooms-1.webp'); }
.slide-8  { background-image: url('../images/BusinessCenter1_1.avif'); }
.slide-9  { background-image: url('../images/BreakfastArea1_1.avif'); }
.slide-10 { background-image: url('../images/BreakfastArea2_1.avif'); }
.slide-11 { background-image: url('../images/PoolCourtyard1_1.webp'); }


  .hero-content {
    position: relative; z-index: 2;
    padding: 0 80px 100px;
    max-width: 780px;
    animation: heroIn 1.4s var(--transition) both;
  }
  @keyframes heroIn {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero-eyebrow {
    color: var(--gold); font-size: 10px; font-weight: 600;
    letter-spacing: 0.25em; text-transform: uppercase;
    margin-bottom: 12px; display: flex; align-items: center; gap: 12px;
  }
  .hero-eyebrow::before {
    content: ''; width: 32px; height: 1px; background: var(--gold);
  }
  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4.2vw, 62px);
    color: var(--white); line-height: 1.08;
    font-weight: 300; margin-bottom: 16px;
  }
  .hero-title em { font-style: italic; color: var(--gold-light); }
  .hero-subtitle {
    color: rgba(255,255,255,0.72); font-size: 14px; font-weight: 300;
    line-height: 1.7; margin-bottom: 32px; max-width: 460px;
  }
  .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--gold); color: var(--navy);
    padding: 15px 36px; font-size: 12px; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    text-decoration: none; cursor: pointer;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    transition: all 0.3s var(--transition);
    display: inline-flex; align-items: center; gap: 10px;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(200,169,110,0.4); }
  .btn-outline {
    border: 1px solid rgba(255,255,255,0.5); color: var(--white);
    padding: 15px 36px; font-size: 12px; font-weight: 500;
    letter-spacing: 0.14em; text-transform: uppercase;
    text-decoration: none; background: transparent;
    transition: all 0.3s var(--transition);
    display: inline-flex; align-items: center; gap: 10px;
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

  /* Slide dots */
  .slide-dots {
    position: absolute; bottom: 40px; right: 80px;
    z-index: 3; display: flex; gap: 10px;
  }
  .dot {
    width: 28px; height: 2px; background: rgba(255,255,255,0.3);
    cursor: pointer; transition: all 0.3s;
  }
  .dot.active { background: var(--gold); width: 48px; }

  /* Scroll indicator */
  .scroll-hint {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    z-index: 3; color: rgba(255,255,255,0.5); font-size: 11px;
    letter-spacing: 0.15em; text-transform: uppercase;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    animation: bounce 2.5s infinite;
  }
  .scroll-hint::after { content: ''; width: 1px; height: 40px; background: rgba(255,255,255,0.3); }
  @keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

  /* ── BOOKING BAR ── */
  .booking-bar {
    background: var(--navy);
    padding: 0 80px;
    position: relative; z-index: 5;
  }
  .booking-inner {
    display: flex; align-items: stretch; gap: 0;
    background: var(--navy-mid);
    border-top: 2px solid var(--gold);
  }
  .booking-field {
    flex: 1; padding: 22px 28px;
    border-right: 1px solid rgba(255,255,255,0.06);
    display: flex; flex-direction: column; gap: 6px;
  }
  .booking-field label {
    color: var(--gold); font-size: 10px;
    letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
  }
  .booking-field input, .booking-field select {
    background: transparent; border: none; outline: none;
    color: var(--white); font-size: 15px;
    font-family: 'DM Sans', sans-serif; font-weight: 400;
    width: 100%; cursor: pointer;
  }
  .booking-field select option { background: var(--navy-mid); }
  .booking-submit {
    background: var(--gold); padding: 0 48px;
    border: none; cursor: pointer;
    color: var(--navy); font-size: 12px; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    transition: all 0.3s; white-space: nowrap;
    clip-path: polygon(12px 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  .booking-submit:hover { background: var(--gold-light); }
  .booking-submit:disabled { opacity: 0.55; cursor: not-allowed; }

  /* field error highlight */
  .booking-field.has-error input,
  .booking-field.has-error select {
    border-bottom: 2px solid #e05555 !important;
    padding-bottom: 2px;
  }
  .field-error {
    font-size: 10px; color: #ff7a7a;
    letter-spacing: 0.04em; min-height: 12px;
    margin-top: 2px; display: block;
  }

  /* date inputs — colored calendar icon */
  input[type="date"] {
    color-scheme: dark;
  }
  input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(0.7) sepia(1) saturate(3) hue-rotate(5deg);
    cursor: pointer; opacity: 0.8;
  }
  input[type="date"]::-webkit-calendar-picker-indicator:hover { opacity: 1; }

  /* toast */
  .booking-toast {
    position: absolute; bottom: calc(100% + 12px); left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: #1e3a24; border: 1px solid #4caf7a;
    color: #7dffaa; padding: 12px 28px; font-size: 13px;
    letter-spacing: 0.06em; white-space: nowrap;
    opacity: 0; pointer-events: none;
    transition: opacity 0.35s, transform 0.35s;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    z-index: 10;
  }
  .booking-toast.error-toast {
    background: #3a1e1e; border-color: #cf5656; color: #ffaaaa;
  }
  .booking-toast.show {
    opacity: 1; transform: translateX(-50%) translateY(0);
  }

  /* pulse on error */
  @keyframes shake {
    0%,100% { transform: translateX(0); }
    20%      { transform: translateX(-5px); }
    40%      { transform: translateX(5px); }
    60%      { transform: translateX(-4px); }
    80%      { transform: translateX(4px); }
  }
  .booking-inner.shake { animation: shake 0.45s ease; }

  /* ── SECTION SHARED ── */
  section { padding: 100px 80px; }
  .section-tag {
    color: var(--gold); font-size: 11px; font-weight: 600;
    letter-spacing: 0.25em; text-transform: uppercase;
    display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
  }
  .section-tag::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 300; line-height: 1.1;
    color: var(--navy); margin-bottom: 20px;
  }
  .section-title em { font-style: italic; }
  .section-lead {
    font-size: 16px; line-height: 1.8; color: #4a5568;
    max-width: 580px; font-weight: 300;
  }

  /* fade-in on scroll */
  .reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.15s; }
  .reveal-delay-2 { transition-delay: 0.3s; }
  .reveal-delay-3 { transition-delay: 0.45s; }

  /* ── WELCOME ── */
  .welcome {
    background: var(--cream);
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    align-items: center;
  }
  .welcome-images {
    position: relative; height: 560px;
  }
  .welcome-img-main {
    position: absolute; top: 0; left: 0;
    width: 75%; height: 80%;
    background: url('https://dynamic-media-cdn.tripadvisor.com/media/photo-o/31/a2/95/d2/hotel-exterior.jpg?w=800&h=600&s=1') center/cover;
    box-shadow: 20px 20px 60px rgba(13,27,42,0.18);
  }
  .welcome-img-accent {
    position: absolute; bottom: 0; right: 0;
    width: 55%; height: 55%;
    background: url('https://dynamic-media-cdn.tripadvisor.com/media/photo-o/31/a2/95/df/breakfast-room.jpg?w=600&h=400&s=1') center/cover;
    border: 6px solid var(--cream);
    box-shadow: 10px 10px 40px rgba(13,27,42,0.12);
  }
  .welcome-badge {
    position: absolute; top: 50%; left: 60%;
    transform: translate(-50%, -50%);
    width: 90px; height: 90px;
    background: var(--gold);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    box-shadow: 0 8px 30px rgba(200,169,110,0.4);
    z-index: 2;
  }
  .welcome-badge span:first-child { font-size: 28px; font-weight: 700; color: var(--navy); line-height: 1; }
  .welcome-badge span:last-child { font-size: 9px; letter-spacing: 0.1em; color: var(--navy); text-transform: uppercase; }
  .welcome-text { padding: 20px 0; }
  .welcome-stats {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px;
  }
  .stat-card {
    padding: 24px; border-left: 2px solid var(--gold);
    background: var(--white);
  }
  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px; font-weight: 300; color: var(--navy); line-height: 1;
    margin-bottom: 4px;
  }
  .stat-label { font-size: 12px; color: #8a9bb0; letter-spacing: 0.08em; }

  /* ── AMENITIES ── */
  .amenities { background: var(--navy); }
  .amenities .section-title { color: var(--white); }
  .amenities .section-tag { color: var(--gold); }
  .amenities .section-lead { color: rgba(255,255,255,0.6); }
  .amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2px; margin-top: 60px;
  }
  .amenity-card {
    background: var(--navy-mid);
    padding: 40px 32px;
    position: relative; overflow: hidden;
    transition: all 0.4s var(--transition); cursor: default;
  }
  .amenity-card::before {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 100%; height: 2px; background: var(--gold);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s var(--transition);
  }
  .amenity-card:hover { background: var(--navy-light); transform: translateY(-4px); }
  .amenity-card:hover::before { transform: scaleX(1); }
  .amenity-icon {
    font-size: 36px; margin-bottom: 20px;
    display: block;
  }
  .amenity-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; color: var(--white);
    font-weight: 400; margin-bottom: 10px;
  }
  .amenity-desc { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; }

  /* ── ROOMS ── */
  .rooms { background: var(--white); }
  .rooms-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 28px; margin-top: 60px;
  }
  .room-card {
    background: var(--cream);
    overflow: hidden; position: relative;
    transition: transform 0.4s var(--transition), box-shadow 0.4s;
  }
  .room-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(13,27,42,0.12); }
  .room-img {
    height: 240px; overflow: hidden;
  }
  .room-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s var(--transition);
  }
  .room-card:hover .room-img img { transform: scale(1.07); }
  .room-body { padding: 28px; }
  .room-type {
    font-size: 10px; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--gold);
    font-weight: 600; margin-bottom: 10px;
  }
  .room-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px; color: var(--navy); font-weight: 400;
    margin-bottom: 10px;
  }
  .room-desc { font-size: 13px; color: #6b7c93; line-height: 1.7; margin-bottom: 20px; }
  .room-features {
    display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 24px;
  }
  .room-feature {
    font-size: 11px; color: var(--navy-mid);
    letter-spacing: 0.06em;
    display: flex; align-items: center; gap: 5px;
  }
  .room-footer {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 20px; border-top: 1px solid rgba(13,27,42,0.08);
  }
  .room-price { font-family: 'Cormorant Garamond', serif; font-size: 28px; color: var(--navy); }
  .room-price small { font-family: 'DM Sans', sans-serif; font-size: 12px; color: #8a9bb0; }
  .room-btn {
    font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--navy); font-weight: 600; text-decoration: none;
    display: flex; align-items: center; gap: 6px;
    border-bottom: 1px solid var(--navy); padding-bottom: 2px;
    transition: all 0.3s;
  }
  .room-btn:hover { color: var(--gold); border-color: var(--gold); }

  /* ── ATTRACTIONS ── */
  .attractions { background: var(--cream); }
  .attractions-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    align-items: start; margin-top: 60px;
  }
  .attraction-map {
    height: 400px; background: var(--navy-mid);
    overflow: hidden; position: relative;
  }
  .attraction-map iframe {
    width: 100%; height: 100%; border: none; filter: grayscale(20%) contrast(1.1);
  }
  .attraction-list { display: flex; flex-direction: column; gap: 0; }
  .attraction-item {
    display: flex; gap: 20px; align-items: flex-start;
    padding: 24px 0; border-bottom: 1px solid rgba(13,27,42,0.08);
    transition: all 0.3s;
  }
  .attraction-item:hover .attraction-icon { background: var(--gold); color: var(--navy); }
  .attraction-icon {
    min-width: 48px; height: 48px;
    background: var(--white); display: flex;
    align-items: center; justify-content: center;
    font-size: 20px; transition: all 0.3s;
  }
  .attraction-info h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; font-weight: 400; color: var(--navy); margin-bottom: 4px;
  }
  .attraction-info p { font-size: 16px; color: #6b7c93; line-height: 1.6; }
  .attraction-dist { font-size: 11px; color: var(--gold); font-weight: 600; letter-spacing: 0.08em; margin-top: 4px; }

  /* ── TESTIMONIALS ── */
  .testimonials { background: var(--navy); padding: 80px; }
  .testimonials .section-title { color: var(--white); }
  .testimonials .section-tag { color: var(--gold); }
  .testimonials-slider {
    display: flex; gap: 28px; margin-top: 60px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -ms-overflow-style: none; scrollbar-width: none;
    padding-bottom: 10px;
  }
  .testimonials-slider::-webkit-scrollbar { display: none; }
  .testimonial-card {
    min-width: 360px; background: var(--navy-mid);
    padding: 40px; scroll-snap-align: start;
    border-top: 2px solid var(--gold); flex-shrink: 0;
  }
  .stars { color: var(--gold); font-size: 14px; margin-bottom: 20px; letter-spacing: 2px; }
  .testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; font-style: italic; color: rgba(255,255,255,0.85);
    line-height: 1.6; margin-bottom: 24px;
  }
  .testimonial-author { font-size: 13px; color: var(--gold); font-weight: 600; letter-spacing: 0.1em; }
  .testimonial-date { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 4px; }

  /* ── CTA BANNER ── */
  .cta-banner {
    position: relative; padding: 120px 80px;
    text-align: center; overflow: hidden;
    background: url('https://dynamic-media-cdn.tripadvisor.com/media/photo-o/31/a2/95/d2/hotel-exterior.jpg?w=1400&h=800&s=1') center/cover fixed;
  }
  .cta-banner::before {
    content: ''; position: absolute; inset: 0;
    background: rgba(13,27,42,0.85);
  }
  .cta-inner { position: relative; z-index: 1; }
  .cta-banner .section-tag { justify-content: center; }
  .cta-banner .section-title { color: var(--white); text-align: center; margin: 0 auto 20px; }
  .cta-banner p { color: rgba(255,255,255,0.7); font-size: 16px; margin-bottom: 40px; }
  .cta-phone {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px; color: var(--gold); margin-bottom: 30px;
    font-weight: 300;
  }

  /* ── FOOTER ── */
  footer {
    background: #060e18;
    padding: 60px 60px 0;
  }
  .footer-grid {
  
    display:flex; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 100px; padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .footer-brand img {
    height: 40px; filter: brightness(0) invert(1);
    opacity: 0.8; margin-bottom: 20px;
  }
  .footer-brand p {
    font-size: 18px; color: rgba(255,255,255,0.45);
    line-height: 1.8; max-width: 300px;
  }
  .footer-col h5 {
    color: var(--gold); font-size: 24px;
    letter-spacing: 0.22em; text-transform: uppercase;
    font-weight: 600; margin-bottom: 20px;
  }
  /*.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }*/
  
  .hotel-policy ul{
    display: block;
    list-style: none;
    padding: 0;
}

.hotel-policy ul li{
    margin-bottom: 10px;
}
  .footer-col ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 30px;
    list-style: none;
    padding: 0;
}

  .footer-col-1 ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 30px;
    list-style: none;
    padding: 0;
}
  .hotel-policy ul{
    display: block;
    list-style: none;
    padding: 0;
	color: rgba(255, 255, 255, 0.45);
}

.hotel-policy ul li{
    margin-bottom: 10px;
}
  
  
  .footer-col ul a {
    color: rgba(255,255,255,0.45);     font-size: 18px;
    text-decoration: none; transition: color 0.2s;
  }
  .footer-col ul a:hover { color: var(--gold); }
  
  .footer-contact h5{
    color: #d4af6d;
    font-size: 20px;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 35px;
    font-weight: 600;
}


  .footer-contact-item {
     /* display: flex;*/
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
  }
  
  .contact-icon{
    color: #ff4f8b;
    font-size: 18px;
    min-width: 22px;
    margin-top: 4px;
}


  .footer-contact-item span:first-child { color: var(--gold); font-size: 16px; min-width: 20px; }
  .footer-contact-item p {   
  margin: 0;
    color: rgba(255,255,255,0.72);
    font-size: 16px;
    line-height: 1.9;
    font-weight: 400; 
	}
  .footer-contact-item a {    color: rgba(255,255,255,0.72);
    text-decoration: none;
    transition: 0.3s ease; }
  .footer-contact-item a:hover {     color: #d4af6d; }
  /*.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding: 24px 0;
  }*/

  .footer-bottom{
    padding-top: 25px;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.15);
    text-align: center;
}


.footer-bottom p{
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.75);
    margin-bottom: 10px;
}
  
  .footer-bottom a{
    color: #d4af6d;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-bottom a:hover{
    color: #fff;
}
  

  
  .footer-socials { display: flex;
    gap: 18px;
    margin-top: 0px; }
  .social-btn {
width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.35s ease;;
  }
  .social-btn:hover {     border-color: #d4af6d;
    color: #d4af6d;
    transform: translateY(-4px); }

  /* ── MOBILE NAV MENU ── */
  .mobile-menu {
    display: none; position: fixed; inset: 0;
    background: var(--navy); z-index: 2000;
    flex-direction: column; align-items: center; justify-content: center;
    gap: 32px;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    color: var(--white); text-decoration: none;
    font-size: 28px; font-family: 'Cormorant Garamond', serif;
    font-style: italic; transition: color 0.2s;
  }
  .mobile-menu a:hover { color: var(--gold); }
  .mobile-close {
    position: absolute; top: 24px; right: 28px;
    color: var(--gold); font-size: 32px; cursor: pointer;
    background: none; border: none;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 1100px) {
    section { padding: 80px 48px; }
    nav { padding: 18px 48px; }
    .hero-content { padding: 0 48px 80px; }
    .booking-bar { padding: 0 48px; }
    .rooms-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .cta-banner { padding: 100px 48px; }
    .footer { padding: 60px 48px 0; }
  }

  @media (max-width: 800px) {
    .topbar { padding: 8px 24px; font-size: 11px; display: block; }
	.topbar-left {
    display: flex;
    gap: 24px;
    align-items: center;
    display: block;
}

.footer-grid {
    display: block!important;
	
	
	}
 
 

    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .hero-content { padding: 0 24px 80px; }
    .slide-dots { right: 24px; }
    .booking-bar { padding: 0 24px; }
    .booking-inner { flex-direction: column; }
    .booking-field { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .booking-submit { padding: 18px; clip-path: none; }
    section { padding: 60px 24px; }
    .welcome { grid-template-columns: 1fr; }
    .welcome-images { height: 320px; }
    .welcome-stats { grid-template-columns: 1fr 1fr; }
    .rooms-grid { grid-template-columns: 1fr; }
    .attractions-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
    footer { padding: 60px 24px 0; }

    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .cta-banner { padding: 80px 24px; }
    .testimonials { padding: 60px 24px; }
    .testimonial-card { min-width: 280px; }
    .cta-phone { font-size: 30px; }
  }
  
  
  .footer-business-info{
    margin-top: 10px;
}

.footer-hotel-name{
    font-size: 22px;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.4;
    font-weight: 600;
}

.footer-hotel-desc{
    color: rgba(255,255,255,0.65);
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-contact-row{
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 0px;
}

.footer-icon{
    color: #d4af6d;
    font-size: 18px;
    min-width: 22px;
    margin-top: 2px;
}

.footer-contact-row p{
    margin: 0;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    font-size: 16px;
}

.footer-contact-row a{
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-contact-row a:hover{
    color: #d4af6d;
}

/* Mobile Responsive */
@media(max-width:768px){

 .footer-contact h5{
        font-size: 18px;
        letter-spacing: 4px;
    }

    .footer-hotel-name{
        font-size: 18px;
    }

    .footer-contact-row p{
        font-size: 15px;
    }
	
	    .footer-contact-item p{
        font-size: 15px;
        line-height: 1.8;
    }

    .social-btn{
        width: 42px;
        height: 42px;
    }

}




  /* ── COOKIE BANNER ── */
  .cookie-bar {
       position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #222;
    color: #fff;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(100%);
    transition: 0.4s;
    z-index: 9999;
  }
  .cookie-bar.visible { transform: translateY(0); }
  .cookie-bar p { margin: 0; flex: 1; }
  .cookie-bar a { color: var(--gold); text-decoration: underline; }
  .cookie-accept {
    background: var(--gold); color: var(--navy);
    border: none; cursor: pointer; white-space: nowrap;
    padding: 10px 28px; font-size: 13px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    transition: all 0.3s var(--transition); flex-shrink: 0;
  }
  .cookie-accept:hover { background: var(--gold-light); }
  @media (max-width: 600px) {
    .cookie-bar { flex-direction: column; padding: 16px 24px; text-align: center; }
  }
  
  /* Back To Top */
#backToTop{
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg,#d4af6d,#b9924c);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* Show Button */
#backToTop.show{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Hover Effect */
#backToTop:hover{
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 15px 30px rgba(0,0,0,0.35);
}

/* Floating Animation */
@keyframes floatBtn{
    0%{ transform: translateY(0); }
    50%{ transform: translateY(-6px); }
    100%{ transform: translateY(0); }
}

#backToTop.show{
    animation: floatBtn 2s ease-in-out infinite;
}


