@charset "utf-8";
/* CSS Document */
 /* ─────────────────────────────── RESET & VARS */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --green:   #154734;
    --green-d: #0d2e21;
    --green-l: #1e6349;
    --gold:    #ffce51;
    --orange:  #ed8b00;
    --white:   #ffffff;
    --off-white: #f8f5ef;
    --gray-light: #f0ede7;
    --gray: #888;
    --text: #1a1a1a;
    --shadow: 0 4px 30px rgba(0,0,0,.15);
    --radius: 8px;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Nunito Sans', sans-serif;
    --nav-h: 72px;
    --top-h: 38px;
  }
  html { scroll-behavior: smooth; }
  body { font-family: var(--font-body); color: var(--text); background: var(--white); overflow-x: hidden; }

  /* ─────────────────────────────── TOPBAR */
  .topbar {
    background: var(--green-d);
    height: var(--top-h);
    display: flex; align-items: center;
    padding: 0 24px;
    position: relative; z-index: 200;
  }
  .topbar-inner {
    max-width: 1280px; width: 100%; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px;
  }
  .topbar a, .topbar span {
    font-size: 12.5px; color: rgba(255,255,255,.82);
    text-decoration: none; font-weight: 400; letter-spacing: .02em;
    display: flex; align-items: center; gap: 5px;
    transition: color .2s;
  }
  .topbar a:hover { color: var(--gold); }
  .topbar-left { display: flex; gap: 20px; flex-wrap: wrap; }
  .topbar-right { display: flex; gap: 16px; align-items: center; }
  .topbar-divider { color: rgba(255,255,255,.25); font-size: 12px; }
  .icon { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }

  /* ─────────────────────────────── NAV */
  .navbar {
    position: sticky; top: 0; z-index: 100;
    background: var(--green);
    height: var(--nav-h);
    box-shadow: 0 2px 20px rgba(0,0,0,.25);
    transition: background .3s, box-shadow .3s;
  }
  .navbar.scrolled { background: var(--green-d); box-shadow: 0 4px 30px rgba(0,0,0,.4); }
  .nav-inner {
    max-width: 1280px; width: 100%; margin: 0 auto;
    height: 100%; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .logo-wrap { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
  .logo-wrap svg { height: 40px; width: auto; }
  .logo-tagline {
    margin-left: 14px; padding-left: 14px;
    border-left: 1px solid rgba(255,255,255,.25);
    color: rgba(255,255,255,.75); font-size: 11px; line-height: 1.4;
    font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  }
  .nav-links {
    display: flex; align-items: center; gap: 4px;
    list-style: none;
  }
  .nav-links a {
    color: rgba(255,255,255,.88); text-decoration: none;
    font-size: 13.5px; font-weight: 600; letter-spacing: .04em;
    padding: 8px 14px; border-radius: 5px;
    transition: color .2s, background .2s;
    text-transform: uppercase;
  }
  .nav-links a:hover { color: var(--gold); background: rgba(255,255,255,.08); }
  .nav-cta {
    background: var(--gold) !important; color: var(--green-d) !important;
    border-radius: 5px !important; font-weight: 700 !important;
    transition: background .2s, transform .2s !important;
  }
  .nav-cta:hover { background: var(--orange) !important; transform: translateY(-1px); }
  .hamburger {
    display: none; background: none; border: none; cursor: pointer;
    flex-direction: column; gap: 5px; padding: 8px;
  }
  .hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--white); border-radius: 2px;
    transition: transform .3s, opacity .3s;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  
  
.mobile-nav {
  display: flex;                    /* always rendered */
  position: fixed; inset: 0;
  top: calc(var(--top-h) + var(--nav-h));
  background: var(--green-d); z-index: 99; padding: 24px;
  flex-direction: column; gap: 4px;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  visibility: hidden;               /* hide without breaking transition */
}
.mobile-nav.open {
  transform: translateX(0);
  visibility: visible;
}


  .mobile-nav a {
    color: var(--white); text-decoration: none; font-size: 16px;
    font-weight: 600; padding: 14px 16px; border-radius: 6px;
    letter-spacing: .04em; text-transform: uppercase;
    transition: background .2s, color .2s;
  }
  .mobile-nav a:hover { background: rgba(255,255,255,.1); color: var(--gold); }
  .mobile-nav .nav-cta-m {
    background: var(--gold); color: var(--green-d) !important;
    margin-top: 12px; text-align: center; border-radius: 6px;
  }

  /* ─────────────────────────────── SLIDESHOW */
  .slideshow {
    position: relative; width: 100%; overflow: hidden;
    height: 680px;
  }
  @media(max-width:768px){ .slideshow { height: 480px; }    .logo-tagline {display: none;} }
  @media(max-width:480px){ .slideshow { height: 360px; } }

  .slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1.2s ease;
    display: flex; align-items: flex-end;
  }
  .slide.active { opacity: 1; }
.slide-1 {
    background-image: linear-gradient(135deg, #154734 0%, #1e6349 40%, #0d2e21 100%),
    url('images/hotel-exteriore.jpg');

    background-blend-mode: multiply;
}
  .slide-2 { background-image: linear-gradient(135deg, #0d2e21 0%, #154734 60%, #ed8b00 150%),
    url('images/hotel-exteriore.jpg');
    background-blend-mode: multiply; }
  .slide-3 { background-image: linear-gradient(135deg, #1e3a2f 0%, #154734 50%, #0d2e21 100%),
    url('images/hotel-exteriore.jpg');
    background-blend-mode: multiply; }
  .slide-4 { background-image: linear-gradient(135deg, #0d2e21 0%, #1e6349 60%, #154734 100%),
    url('images/hotel-exteriore.jpg');
    background-blend-mode: multiply; }
	
	  .slide-5 { background-image: linear-gradient(135deg, #0d2e21 0%, #1e6349 60%, #154734 100%),
    url('images/hotel-exteriore.jpg');
    background-blend-mode: multiply; }
	
	  .slide-6 { background-image: linear-gradient(135deg, #0d2e21 0%, #1e6349 60%, #154734 100%),
    url('images/hotel-exteriore.jpg');
    background-blend-mode: multiply; }
	
	  .slide-7 { background-image: linear-gradient(135deg, #0d2e21 0%, #1e6349 60%, #154734 100%),
    url('images/hotel-exteriore.jpg');
    background-blend-mode: multiply; }
	
	  .slide-8 { background-image: linear-gradient(135deg, #0d2e21 0%, #1e6349 60%, #154734 100%),
    url('images/hotel-exteriore.jpg');
    background-blend-mode: multiply; }
	
	
	  .slide-9 { background-image: linear-gradient(135deg, #0d2e21 0%, #1e6349 60%, #154734 100%),
    url('images/hotel-exteriore.jpg');
    background-blend-mode: multiply; }
	
	  .slide-10 { background-image: linear-gradient(135deg, #0d2e21 0%, #1e6349 60%, #154734 100%),
    url('images/hotel-exteriore.jpg');
    background-blend-mode: multiply; }
	
	
	.slide-content h1,
.slide-content p,
.slide-content .slide-badge {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
	
	
	
	

  .slide-content {
	   text-align: center !important;
  align-items: center !important;
  margin: 0 auto !important;
  
  
  
 /*  position: relative; z-index: 2; padding: 48px 60px;
    max-width: 700px;
    transform: translateY(20px); opacity: 0; transition: transform .8s .3s, opacity .8s .3s;*/
  }
  .slide.active .slide-content { transform: translateY(0); opacity: 1; }
  .slide-badge {
    display: inline-block; background: var(--gold);
    color: var(--green-d); font-size: 11px; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    padding: 5px 14px; border-radius: 3px; margin-bottom: 18px;
  }
  .slide-content h1 {
    font-family: var(--font-display); font-size: clamp(28px, 4.5vw, 54px);
    color: var(--white); line-height: 1.15; font-weight: 700;
    margin-bottom: 14px; text-shadow: 0 2px 20px rgba(0,0,0,.4);
  }
  .slide-content p {
    color: rgba(255,255,255,.82); font-size: clamp(14px, 1.8vw, 17px);
    line-height: 1.6; max-width: 500px; margin-bottom: 24px;
  }
  .slide-btn {
    display: inline-block; background: var(--gold);
    color: var(--green-d); font-weight: 700; font-size: 14px;
    letter-spacing: .06em; text-transform: uppercase;
    padding: 13px 28px; border-radius: 5px; text-decoration: none;
    transition: background .2s, transform .2s;
  }
  .slide-btn:hover { background: var(--orange); transform: translateY(-2px); }

  /* Overlay gradient bottom */
  .slideshow::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 60%; pointer-events: none;
    background: linear-gradient(to top, rgba(13,46,33,.95) 0%, transparent 100%);
    z-index: 1;
  }

  /* Slide controls */
  .slide-controls {
    position: absolute; bottom: 28px; right: 40px; z-index: 10;
    display: flex; gap: 10px;
  }
  .slide-dot {
    width: 9px; height: 9px; border-radius: 50%;
    background: rgba(255,255,255,.35); cursor: pointer;
    transition: background .3s, transform .3s; border: none;
  }
  .slide-dot.active { background: var(--gold); transform: scale(1.3); }
  .slide-arrow {
    position: absolute; top: 50%; z-index: 10; transform: translateY(-50%);
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
    color: var(--white); width: 48px; height: 48px; border-radius: 50%;
    cursor: pointer; font-size: 20px; transition: background .2s;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(4px);
  }
  .slide-arrow:hover { background: rgba(255,206,81,.35); }
  .slide-arrow.prev { left: 20px; }
  .slide-arrow.next { right: 20px; }
  @media(max-width:480px){
    .slide-arrow { width: 36px; height: 36px; font-size: 16px;}
    .slide-content { padding: 100px 24px; }
	.topbar-left { display: none;}
	
	.booking-grid {
    display: block;
    grid-template-columns: repeat(5, 1fr) auto;
    gap: 12px;
    align-items: end;
}
	
	.slide-content p {
    color: rgba(255, 255, 255, .82);
    font-size: clamp(14px, 1.8vw, 17px);
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 24px;
    display: none;
}


  }
  
  

  /* ─────────────────────────────── BOOKING WIDGET */
  .booking-bar {
    background: var(--white);
    box-shadow: 0 8px 40px rgba(0,0,0,.18);
    border-radius: 12px;
    margin: -50px auto 0;
    position: relative; z-index: 20;
    max-width: 1080px; width: calc(100% - 48px);
    padding: 30px 32px;
  }
  .booking-bar h3 {
    font-family: var(--font-display); font-size: 20px; color: var(--green);
    margin-bottom: 20px; font-weight: 600;
    display: flex; align-items: center; gap: 10px;
  }
  .booking-bar h3::after {
    content: ''; flex: 1; height: 1px; background: var(--gray-light);
  }
  .booking-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr) auto;
    gap: 12px; align-items: end;
  }
  @media(max-width:960px){ .booking-grid { grid-template-columns: 1fr 1fr 1fr; } }
  @media(max-width:600px){ .booking-grid { grid-template-columns: 1fr 1fr; } }
  @media(max-width:380px){ .booking-grid { grid-template-columns: 1fr; } }

  .field-group { display: flex; flex-direction: column; gap: 6px; }
  .field-group label {
    font-size: 11px; font-weight: 700; color: var(--green);
    letter-spacing: .08em; text-transform: uppercase;
  }
  .field-group input, .field-group select {
    height: 46px; border: 1.5px solid #ddd; border-radius: 6px;
    padding: 0 12px; font-size: 14px; font-family: var(--font-body);
    color: var(--text); background: var(--off-white);
    transition: border-color .2s, box-shadow .2s; outline: none;
    width: 100%; cursor: pointer;
  }
  .field-group input:focus, .field-group select:focus {
    border-color: var(--green); box-shadow: 0 0 0 3px rgba(21,71,52,.12);
  }
  .field-group.error input, .field-group.error select { border-color: #c0392b; }
  .field-error {
    font-size: 11px; color: #c0392b; font-weight: 600;
    display: none; margin-top: 2px;
  }
  .field-group.error .field-error { display: block; }

  .book-btn {
    height: 46px; padding: 0 28px;
    background: var(--green); color: var(--white);
    font-size: 14px; font-weight: 700; letter-spacing: .06em;
    text-transform: uppercase; border: none; border-radius: 6px;
    cursor: pointer; white-space: nowrap;
    transition: background .2s, transform .15s;
    display: flex; align-items: center; gap: 8px;
  }
  .book-btn:hover { background: var(--orange); transform: translateY(-2px); }
  .book-btn:active { transform: translateY(0); }
  @media(max-width:960px){ .book-btn { grid-column: 1 / -1; justify-content: center; height: 50px; font-size: 15px; } }

  /* ─────────────────────────────── SECTIONS GENERAL */
  section { padding: 50px 24px; }
  .container { max-width: 1200px; margin: 0 auto; }
  .section-label {
    font-size: 12px; font-weight: 700; letter-spacing: .14em;
    text-transform: uppercase; color: var(--orange);
    display: block; margin-bottom: 10px;
  }
  
  .section-label-2 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #13402f;
    display: block;
    margin-bottom: 10px;
}

  .section-title {
    font-family: var(--font-display); font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 700; color: var(--green); line-height: 1.2;
    margin-bottom: 16px;
  }
  .section-sub {
    font-size: 18px; color: #555; line-height: 1.7;
    max-width: 580px; margin-bottom: 21px;
	    font-weight: 900;
  }
  .divider {
    width: 56px; height: 3px; background: var(--gold);
    border-radius: 2px; margin: 16px 0 24px;
  }

  /* ─────────────────────────────── WELCOME */
  .welcome { background: var(--white); padding-top: 60px; }
  .welcome-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center;
  }
  @media(max-width:768px){ .welcome-grid { grid-template-columns: 1fr; gap: 36px; } }
  .welcome-img-wrap {
    position: relative;
  }
  .welcome-img-main {
    width: 100%; height: 420px; object-fit: cover;
    border-radius: 12px; display: block;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-l) 100%);
  }
  .welcome-img-accent {
    position: absolute; bottom: -24px; right: -24px;
    width: 52%; height: 200px; border-radius: 10px; border: 5px solid var(--white);
    background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
    box-shadow: 0 12px 40px rgba(0,0,0,.2);
    overflow: hidden;
  }
  @media(max-width:480px){
    .welcome-img-accent { display: none; }
  }
  .stat-row {
    display: flex; gap: 32px; margin-top: 32px;
    flex-wrap: wrap;
  }
  .stat { text-align: center; }
  .stat-num {
    font-family: var(--font-display); font-size: 36px;
    font-weight: 700; color: var(--green); line-height: 1;
  }
  .stat-label { font-size: 12px; color: var(--gray); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-top: 4px; }

  /* Placeholder image using CSS */
  .img-hotel {
    width: 100%; height: 100%; display: flex; align-items: center;
    justify-content: center; flex-direction: column; gap: 12px;
    color: rgba(255,255,255,.6);
  }
  .img-hotel svg { width: 56px; height: 56px; opacity: .5; }

  /* ─────────────────────────────── AMENITIES */
  .amenities { 
  
  
  
  background: var(--off-white); 
  
  
  overflow: hidden;
    position: relative;
    z-index: 1;
    background: no-repeat url(../img/double-bed.jpg);
    background-attachment: fixed !important;
    background-position: center center;
  background-size: cover;
    background-repeat: no-repeat;

  
  
}
  .amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px; margin-top: 8px;
  }
  .amenity-card {
    background: var(--white); border-radius: 10px;
    padding: 28px 22px; text-align: center;
    box-shadow: 0 2px 16px rgba(0,0,0,.06);
    transition: transform .3s, box-shadow .3s;
    animation: fadeUp .6s ease both;
  }
  .amenity-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0,0,0,.12); }
  .amenity-icon {
    width: 60px; height: 60px; border-radius: 50%;
    /*background: linear-gradient(135deg, var(--green), var(--green-l));*/
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px; color: var(--gold); font-size: 30px;
  }
  .amenity-card h4 {
    font-family: var(--font-display); font-size: 17px; font-weight: 600;
    color: var(--green); margin-bottom: 8px;
  }
  .amenity-card p { font-size: 13.5px; color: #666; line-height: 1.6; }

  /* ─────────────────────────────── ATTRACTIONS */
  .attractions { background: var(--green); overflow: hidden; 
    overflow: hidden;
    position: relative;
    z-index: 1;
    background: no-repeat url(../img/attraction.jpg);
    background-attachment: fixed !important;
    background-position: center center;
  background-size: cover;
    background-repeat: no-repeat;
  
  
  
  }
  .attractions .section-title { color: var(--white); }
  .attractions .section-label { color: var(--gold); }
  .attractions .section-sub { color: rgba(255,255,255,.75); }
  .attractions .divider { background: var(--gold); }
  .attr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px; margin-top: 8px;
  }
  .attr-card {
    border-radius: 10px; overflow: hidden;
    background: #0000009e;
    border: 1px solid rgba(255,255,255,.1);
    transition: transform .3s, background .3s;
    animation: fadeUp .6s ease both;
  }
  .attr-card:hover { transform: translateY(-5px); background: rgba(255,255,255,.1); }
  .attr-img {
    height: 170px;
    background: linear-gradient(135deg, var(--green-l), var(--green-d));
    display: flex; align-items: center; justify-content: center;
    font-size: 48px;
  }
  .attr-body { padding: 20px;     color: #fff; }
  .attr-body h4 {
    font-family: var(--font-display); color: var(--white);
    font-size: 18px; margin-bottom: 6px;
  }
  .attr-body p { font-size: 13.5px; color: rgba(255,255,255,.7); line-height: 1.6; margin-bottom: 12px; }


  
  .attr-dist {
    display: inline-flex; align-items: center; gap: 5px;
    background: rgba(255,206,81,.15); color: var(--gold);
    font-size: 12px; font-weight: 700; letter-spacing: .06em;
    padding: 4px 10px; border-radius: 20px;
  }

  /* ─────────────────────────────── ROOMS CTA */
  .rooms-cta {
    background: linear-gradient(135deg, var(--green-d) 0%, var(--green) 100%);
	
	   overflow: hidden;
    position: relative;
    z-index: 1;
    background: no-repeat url(../img/contact.jpg);
    background-attachment: fixed !important;
    background-position: center center;
  background-size: cover;
    background-repeat: no-repeat;
	
	
    text-align: center; padding: 80px 24px;
    position: relative; overflow: hidden;
  }
  .rooms-cta::before {
    content: ''; position: absolute; top: -80px; left: -80px;
    width: 300px; height: 300px; border-radius: 50%;
    background: rgba(255,206,81,.06);
  }
  .rooms-cta::after {
    content: ''; position: absolute; bottom: -60px; right: -60px;
    width: 260px; height: 260px; border-radius: 50%;
    background: rgba(237,139,0,.08);
  }
  .rooms-cta .section-title { color: var(--white); }
  .rooms-cta .section-label { color: var(--gold); }
  .rooms-cta p { color: rgba(255,255,255,.78); font-size: 17px; max-width: 540px; margin: 0 auto 32px; line-height: 1.7; }
  .btn-gold {
    display: inline-block; background: var(--gold); color: var(--green-d);
    font-weight: 700; font-size: 15px; letter-spacing: .06em; text-transform: uppercase;
    padding: 15px 36px; border-radius: 6px; text-decoration: none;
    transition: background .2s, transform .2s; position: relative; z-index: 1;
  }
  .btn-gold:hover { background: var(--orange); transform: translateY(-2px); }

  /* ─────────────────────────────── FOOTER */
  footer {
    background: var(--green-d); color: rgba(255,255,255,.8);
    padding: 60px 24px 0;
  }
  .footer-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
  }
  @media(max-width:900px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
  @media(max-width:520px){ .footer-grid { grid-template-columns: 1fr; gap: 28px; } }
  .footer-logo { margin-bottom: 18px; }
  .footer-logo svg { height: 34px; width: auto; }
  /* Make SVG light for dark background */
  .footer-logo svg .cls-1 { fill: #fff; }
  .footer-logo svg .cls-2 { fill: var(--gold); }
  .footer-logo svg .cls-3 { fill: var(--orange); }
  .footer-about { font-size: 13.5px; line-height: 1.7; color: rgba(255,255,255,.65); margin-bottom: 20px; }
  .footer-social { display: flex; gap: 10px; }
  .social-btn {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.7); text-decoration: none; font-size: 14px;
    transition: background .2s, color .2s;
  }
  .social-btn:hover { background: var(--gold); color: var(--green-d); }
  .footer-col h5 {
    font-size: 16px; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 18px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul li a {
    color: rgba(255,255,255,.65); text-decoration: none;
    font-size: 13.5px; transition: color .2s;
    display: flex; align-items: center; gap: 6px;
  }
  .footer-col ul li a:hover { color: var(--gold); }
  .footer-contact { font-size: 13.5px; color: rgba(255,255,255,.65); line-height: 1.8; }
  .footer-contact a { color: var(--gold); text-decoration: none; }
  .footer-contact a:hover { color: var(--orange); }
  .footer-map {
    width: 100%; height: 140px; border-radius: 8px;
    background: linear-gradient(135deg, #1e3a2f, #0d2e21);
    display: flex; align-items: center; justify-content: center;
    margin-top: 12px; overflow: hidden; position: relative;
    border: 1px solid rgba(255,255,255,.1);
  }
  .footer-map-label { font-size: 12px; color: rgba(255,255,255,.5); }
  .footer-bottom {
    max-width: 1200px; margin: 40px auto 0;
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 20px 0;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 12px;
  }
  .footer-bottom p { font-size: 12px; color: rgba(255,255,255,.4); }
  .footer-bottom a { color: rgba(255,255,255,.5); text-decoration: none; font-size: 12px; }
  .footer-bottom a:hover { color: var(--gold); }
  .footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }

  /* ─────────────────────────────── ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; } to { opacity: 1; }
  }
  .reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity .7s ease, transform .7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: .1s; }
  .reveal-delay-2 { transition-delay: .2s; }
  .reveal-delay-3 { transition-delay: .3s; }

  /* ─────────────────────────────── TOAST */
  .toast {
    position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(80px);
    background: #c0392b; color: #fff; font-size: 14px; font-weight: 600;
    padding: 14px 24px; border-radius: 8px; box-shadow: 0 8px 30px rgba(0,0,0,.25);
    z-index: 9999; transition: transform .3s ease; white-space: nowrap;
  }
  .toast.show { transform: translateX(-50%) translateY(0); }
  .toast.success { background: var(--green); }

  /* ─────────────────────────────── STICKY NAV SCROLL HIDE */
  .navbar-wrap { position: sticky; top: 0; z-index: 100; }
/* ════ VALIDATION MODAL ════ */
.val-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 16px;
  backdrop-filter: blur(2px);
  animation: valFadeIn 0.18s ease;
}
.val-overlay.open {
  display: flex;
}
@keyframes valFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.val-modal {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.22), 0 4px 16px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 400px;
  overflow: hidden;
  animation: valSlideUp 0.22s cubic-bezier(0.34,1.26,0.64,1);
  font-family: 'Nunito Sans', 'Segoe UI', sans-serif;
}
@keyframes valSlideUp {
  from { transform: translateY(24px) scale(0.97); opacity: 0; }
  to   { transform: translateY(0)    scale(1);    opacity: 1; }
}

/* Header bar — matches the hotel green */
.val-modal-header {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--green, #154734);
  color: #ffffff;
  padding: 14px 20px 13px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.val-icon {
  width: 20px;
  height: 20px;
  fill: #ffce51;
  flex-shrink: 0;
}

/* Body */
.val-modal-body {
  padding: 26px 24px 18px;
  border-bottom: 1px solid #f0f0f0;
}
.val-modal-body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: #1a1a1a;
  font-weight: 400;
}

/* Footer */
.val-modal-footer {
  padding: 14px 20px 16px;
  display: flex;
  justify-content: flex-end;
}

/* OK button — pill style matching screenshot */
.val-ok-btn {
  background: transparent;
  color: var(--green, #154734);
  border: 2px solid var(--green, #154734);
  border-radius: 100px;
  padding: 8px 34px;
  font-family: 'Nunito Sans', 'Segoe UI', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, transform 0.12s ease,
              box-shadow 0.18s ease;
  outline: none;
}
.val-ok-btn:hover {
  background: var(--green, #154734);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(21,71,52,0.28);
}
.val-ok-btn:active {
  transform: scale(0.96);
}
.val-ok-btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(21,71,52,0.35);
}

/* Highlight the field that triggered the error */
.field-group.error input,
.field-group.error select {
  border-color: #d9534f !important;
  box-shadow: 0 0 0 3px rgba(217,83,79,0.18) !important;
}


#more-text {
  display: none;
}

#readBtn {
  margin-top: 10px;
  padding: 10px 20px;
  border: none;
  background: #c19b76;
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
  font-size: 14px;
}

#readBtn:hover {
  background: #a67c52;
}


.welcome-img-main{
    background: url('../img/hotel-exterior.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    min-height: 400px;
    overflow: hidden;
    border-radius: 12px;
}

.welcome-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.welcome-content{
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.hotel-name{
    display: block;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: .05em;
    margin-bottom: 8px;
}

.hotel-location{
    font-size: 14px;
    opacity: .9;
}



.welcome-img-accent{
    width: 60%;
    height: 50%;
}

.welcome-accent-bg{
    width: 100%;
    height: 100%;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: url('../img/lobby-area-3.jpg') center center/cover no-repeat;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.welcome-accent-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

.welcome-accent-content{
    position: relative;
    z-index: 2;
    text-align: center;
}

.welcome-icon{
    width: 36px;
    height: 36px;
    fill: rgba(255,255,255,.85);
}

.welcome-text{
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    margin-top: 8px;
    letter-spacing: .06em;
    display: block;
    line-height: 1.5;
}


.cookie-policy-link {
    margin-top: 10px;
}

.cookie-policy-link a {
    color: #fff;
    text-decoration: none;
}

.cookie-policy-link a:hover {
    text-decoration: underline;
}

/* Cookie Consent Box */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #222;
    color: #fff;
    padding: 15px 20px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    font-size: 14px;
}

.cookie-consent button {
    background: #c59d5f;
    color: #fff;
    border: none;
    padding: 8px 18px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
}

.cookie-consent button:hover {
    opacity: 0.9;
}

/* ─── BACK TO TOP ─── */
#backToTop {
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 9999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green-d);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .3s, visibility .3s, transform .3s, background .2s;
}
#backToTop.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#backToTop:hover {
  background: var(--orange);
}
#backToTop svg {
  width: 20px;
  height: 20px;
}

.img-fluid

{
	    height: 32px;
    width: auto;
}



/* ─── VIDEO COMING SOON ─── */
.video-section {
  background: var(--off-white);
  padding: 72px 24px;
}
.video-container {
  max-width: 900px;
  margin: 0 auto;
}
.video-placeholder {
  background: var(--green-d);
  border-radius: 16px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,.2);
}
/* Subtle animated background pulse */
.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,206,81,.08) 0%, transparent 70%);
  animation: videoPulse 3s ease-in-out infinite;
}
@keyframes videoPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.05); }
}
.video-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 2px solid rgba(255,206,81,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.video-icon-wrap svg {
  width: 56px;
  height: 56px;
}
.video-coming-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--green-d);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 3px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.video-placeholder h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 36px);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.video-placeholder p {
  color: rgba(255,255,255,.7);
  font-size: 15px;
  line-height: 1.7;
  max-width: 480px;
  position: relative;
  z-index: 1;
}

@media (max-width: 480px) {
  .video-placeholder {
    min-height: 300px;
    padding: 36px 20px;
  }
}


/* --- Inner Page Hero Section Styles --- */
.inner-hero-section {
    position: relative;
    width: 100%;
    height: 420px; /* Adjusted slightly for a cleaner inner-page balance */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #05261C; /* Fallback brand green */
}

/* Forces the HTML image to act like a full-bleed cover background */
.inner-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

/* Semi-transparent dark green gradient overlay matching the layout aesthetic */
.inner-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Subtle gradient blending from the brand dark green to a softer transparent tint */
    background: linear-gradient(135deg, rgba(5, 38, 28, 0.85) 0%, rgba(10, 53, 40, 0.5) 100%);
    z-index: 2;
}

/* Holds the text layers neatly centered in front of the image */
.inner-hero-container {
    position: relative;
    z-index: 3;
    width: 1200px;
    max-width: 100%;
    padding: 0 24px;
    box-sizing: border-box;
    text-align: center;
}

/* Clean, crisp header styling matching the serif/display style of the site */
.inner-hero-title {
    color: #ffffff;
    font-family: 'Georgia', serif; /* Matches your layout's elegant headline font */
    font-size: 46px;
    font-weight: 600;
    text-transform: capitalize; /* Changed from uppercase to match "Hotel Amenities" style */
    margin: 0 0 16px 0;
    letter-spacing: 0.5px;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.4);
}

/* Breadcrumbs section for visual navigation and SEO health */
.inner-hero-breadcrumbs {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.25); /* Subtle backing to guarantee readability over images */
    padding: 6px 16px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
}

.inner-hero-breadcrumbs a {
    color: #E6B022; /* High-contrast matching brand gold */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}

.inner-hero-breadcrumbs a:hover {
    color: #ffffff;
    text-decoration: none;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.4);
    user-select: none;
}

.breadcrumb-current {
    color: #ffffff;
    font-weight: 400;
}

/* Responsive adjustments for mobile phone viewports */
@media (max-width: 768px) {
    .inner-hero-section {
        height: 260px; /* Balanced height for mobile headers */
    }
    
    .inner-hero-title {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .inner-hero-breadcrumbs {
        font-size: 13px;
        padding: 4px 12px;
    }
}


/* --- Comprehensive Inner Page Amenities Styles --- */
.amenities-detail-section {
    padding: 40px 20px;
    background-color: #fcfbfa; /* Soft off-white to contrast the dark hero background */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.amenities-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Main Top Header formatting */
.amenities-main-header {
    text-align: center;
    max-width: 1280px;
    margin: 0 auto 50px auto;
}

.amenities-subtitle {
    display: block;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #E6B022; /* Brand Gold */
    font-weight: 700;
    margin-bottom: 8px;
}

.amenities-main-header h2 {
    font-family: 'Georgia', serif;
    font-size: 38px;
    color: #05261C; /* Dark Forest Green */
    margin: 0 0 16px 0;
    font-weight: 600;
}

.amenities-lead-desc {
    font-size: 16px;
    color: #556655;
    line-height: 1.6;
}

/* Three-column card layout grid */
.amenities-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.amenity-group-card {
    background: #ffffff;
    border: 1px solid rgba(5, 38, 28, 0.08);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(5, 38, 28, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amenity-group-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(5, 38, 28, 0.07);
}

.card-header-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 2px solid rgba(230, 176, 34, 0.2); /* Soft Gold underline */
    padding-bottom: 14px;
    margin-bottom: 20px;
}

.card-icon {
    font-size: 22px;
}

.card-header-wrapper h3 {
    font-family: 'Georgia', serif;
    font-size: 20px;
    color: #05261C;
    margin: 0;
}

/* Bullet list customized formatting */
.amenity-item-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.amenity-item-list li {
    font-size: 15px;
    color: #33443a;
    padding: 10px 0 10px 24px;
    border-bottom: 1px dashed rgba(0,0,0,0.06);
    position: relative;
}

.amenity-item-list li:last-child {
    border-bottom: none;
}

/* Golden dot layout instead of default bullets */
.amenity-item-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #E6B022;
    font-weight: bold;
}

.amenity-item-list li.highlight-pet {
    font-weight: 600;
    color: #05261C;
}

/* --- Unique Box Style Layout for ADA Accessibility Items --- */
.accessibility-showcase-box {
    background-color: #05261C; /* Brand Dark Green Box */
    color: #ffffff;
    border-radius: 16px;
    padding: 45px;
    box-shadow: 0 20px 40px rgba(5, 38, 28, 0.15);
}

.accessibility-title-block {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.access-badge {
    background-color: rgba(230, 176, 34, 0.2);
    color: #E6B022;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 12px;
}

.accessibility-title-block h3 {
    font-family: 'Georgia', serif;
    font-size: 28px;
    margin: 0 0 12px 0;
    color: #ffffff;
}

.accessibility-title-block p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.5;
}

.accessibility-sub-grids {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.access-column h4 {
    font-size: 16px;
    color: #E6B022; /* Gold accents */
    margin: 0 0 15px 0;
    font-weight: 600;
    border-left: 3px solid #E6B022;
    padding-left: 10px;
}

.accessible-checked-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accessible-checked-list li {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.accessible-checked-list li::before {
    content: "•";
    color: #E6B022;
    font-size: 18px;
    position: absolute;
    left: 0;
    top: -2px;
}

/* Responsive adjustments for Tablets and Mobile devices */
@media (max-width: 992px) {
    .amenities-grid-wrapper, 
    .accessibility-sub-grids {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .amenities-detail-section {
        padding: 50px 15px;
    }
    
    .amenities-main-header h2 {
        font-size: 28px;
    }
    
    .amenities-grid-wrapper, 
    .accessibility-sub-grids {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .accessibility-showcase-box {
        padding: 25px;
    }
}


/* --- Comprehensive Attractions Page Styles --- */
.attractions-detail-section {
    padding: 90px 20px;
    background-color: #fdfdfc;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.attractions-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* Page Section Header */
.attractions-main-header {
    text-align: center;
    max-width: 1280px;
    margin: 0 auto 70px auto;
}

.attractions-subtitle {
    display: block;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #E6B022; /* Brand Accent Gold */
    font-weight: 700;
    margin-bottom: 10px;
}

.attractions-main-header h2 {
    font-family: 'Georgia', serif;
    font-size: 38px;
    color: #05261C; /* Brand Deep Green */
    margin: 0 0 18px 0;
    font-weight: 600;
    line-height: 1.3;
}

.attractions-lead-desc {
    font-size: 16px;
    color: #55665a;
    line-height: 1.6;
}

/* Asymmetrical Alternating Layout Feed */
.attractions-feed {
    display: flex;
    flex-direction: column;
    gap: 80px; /* Space between rows */
}

.attraction-row {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* Classes to invert item positioning every other row */
.attraction-row.reverse {
    flex-direction: row-reverse;
}

.attraction-image-block {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(5, 38, 28, 0.08);
    height: 380px;
}

.attraction-image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.attraction-row:hover .attraction-image-block img {
    transform: scale(1.04);
}

.attraction-text-block {
    flex: 1;
    padding: 20px 0;
}

.attraction-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #05261C;
    background-color: rgba(230, 176, 34, 0.15); /* Light Gold tint backing */
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.attraction-text-block h3 {
    font-family: 'Georgia', serif;
    font-size: 28px;
    color: #05261C;
    margin: 0 0 16px 0;
    font-weight: 600;
}

.attraction-text-block p {
    font-size: 15px;
    color: #44554a;
    line-height: 1.6;
    margin: 0 0 24px 0;
}

/* Premium Text Link with transition animations */
.attraction-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #E6B022;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.attraction-link span {
    transition: transform 0.2s ease;
}

.attraction-link:hover {
    color: #05261C;
    border-color: #05261C;
}

.attraction-link:hover span {
    transform: translateX(4px);
}

/* Responsive UI adjustments for mobile and tablets */
@media (max-width: 992px) {
    .attraction-row, 
    .attraction-row.reverse {
        gap: 30px;
    }
    .attraction-image-block {
        height: 300px;
    }
    .attraction-text-block h3 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .attractions-detail-section {
        padding: 50px 15px;
    }
    .attractions-main-header {
        margin-bottom: 40px;
    }
    .attractions-main-header h2 {
        font-size: 28px;
    }
    .attractions-feed {
        gap: 50px;
    }
    .attraction-row, 
    .attraction-row.reverse {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    .attraction-image-block {
        height: 240px;
    }
    .attraction-text-block {
        padding: 0;
    }
}


/* --- Things To Do Quick Directory Grid --- */
.directory-amenities-section {
    padding: 60px 20px 90px 20px;
    background-color: #f6f8f6; /* Slightly deeper tint to create separation from the rows above */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.directory-container {
    max-width: 1140px;
    margin: 0 auto;
}

/* 2-Column Responsive Grid Arrangement */
.directory-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.directory-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 24px rgba(5, 38, 28, 0.03);
    border: 1px solid rgba(5, 38, 28, 0.05);
}

/* Makes the final sports element stretch seamlessly across both columns */
.directory-card.reveal-full-width {
    grid-column: span 2;
    background: #ffffff;
    border-left: 4px solid #E6B022; /* Clean gold left accent line */
}

.dir-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding-bottom: 12px;
}

.dir-icon {
    font-size: 20px;
}

.dir-card-header h3 {
    font-family: 'Georgia', serif;
    font-size: 20px;
    color: #05261C;
    margin: 0;
}

.dir-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dir-list li {
    font-size: 15px;
    color: #33443a;
    padding: 8px 0 8px 20px;
    position: relative;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.04);
}

.dir-list li:last-child {
    border-bottom: none;
}

/* Gold dot replacing standard bullets */
.dir-list li::before {
    content: "•";
    position: absolute;
    left: 4px;
    color: #E6B022;
    font-weight: bold;
    font-size: 16px;
    top: 5px;
}

/* Soft tag styling for regional out-of-town malls */
.dir-dist-tag {
    font-size: 12px;
    color: #889988;
    font-style: italic;
    margin-left: 4px;
}

/* Splitting lists into two clean sub columns inside full width items */
.dir-list.split-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 20px;
}

/* Tablet & Mobile responsive break points */
@media (max-width: 768px) {
    .directory-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .directory-card.reveal-full-width {
        grid-column: span 1;
    }
    
    .dir-list.split-columns {
        grid-template-columns: 1fr;
    }
}

/* --- Corporate Split-Screen Location Feature Module --- */
.location-section-hero {
    width: 100%;
    background-color: #fcfbfa; /* Soft off-white canvas backdrop to align with other inner pages */
    padding: 80px 20px;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.location-wrapper-hero {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: stretch;
}

/* Left Content Column Card Styling */
.location-info-box {
    flex: 1;
    background-color: #ffffff;
    border: 1px solid rgba(5, 38, 28, 0.08); /* Soft brand green tint line */
    border-radius: 12px;
    padding: 45px 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(5, 38, 28, 0.02);
}

.contact-main-title {
    color: #05261C; /* Brand deep green tone */
    font-family: 'Georgia', serif; /* Elegant serif display heading */
    font-size: 42px;
    font-weight: 600;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.contact-main-title span {
    color: #E6B022; /* Highlights the hotel name in brand gold */
}

.location-info-box p {
    color: #44554a;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 24px 0;
}

/* Coordinates Layout Panel subsegment */
.coordinates-area, .directions-area {
    margin-bottom: 28px;
}

.location-info-box h4 {
    margin: 0 0 14px 0;
    color: #05261C;
    font-family: 'Georgia', serif;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-info-box h4 i {
    color: #E6B022; /* Map marker icon switched to gold */
}

.coordinates-area ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 16px;
}

.coordinates-area li {
    color: #33443a;
    font-size: 15px;
    background-color: #fdfdfc;
    border: 1px solid rgba(5, 38, 28, 0.1);
    padding: 8px 16px;
    border-radius: 6px;
}

.coordinates-area strong {
    color: #05261C;
}

/* Interactive Input Router Form Styling */
.directions-area form {
    display: flex;
    gap: 12px;
    width: 100%;
    margin-top: 15px;
}

.directions-area input[type="text"] {
    flex-grow: 1;
    padding: 14px 18px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 15px;
    outline: none;
    color: #333333;
    background-color: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.directions-area input[type="text"]:focus {
    border-color: #05261C;
    box-shadow: 0 0 0 3px rgba(5, 38, 28, 0.08);
}

.directions-area button {
    background-color: #05261C; /* Primary brand dark green button */
    color: #ffffff;
    border: none;
    padding: 0 28px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.directions-area button:hover {
    background-color: #E6B022; /* Transitions smoothly to brand gold on focus */
}

/* Right Map Block Frame Container Layer */
.location-map-box {
    flex: 1.1;
    min-height: 480px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(5, 38, 28, 0.08);
    box-shadow: 0 12px 35px rgba(5, 38, 28, 0.05);
}

/* Responsive Adaptive Layout Viewport adjustments */
@media (max-width: 992px) {
    .location-section-hero {
        padding: 50px 15px;
    }

    .location-wrapper-hero {
        flex-direction: column; /* Collapses elements into a stacked card configuration layout */
        gap: 30px;
    }
    
    .location-map-box {
        height: 420px;
        min-height: 420px;
    }
}

@media (max-width: 640px) {
    .location-info-box {
        padding: 35px 20px;
    }

    .contact-main-title {
        font-size: 32px;
    }
    
    .coordinates-area ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .directions-area form {
        flex-direction: column;
        gap: 10px;
    }
    
    .directions-area button {
        padding: 14px 0;
        text-align: center;
    }
}

/* --- Corporate Contact Section Styles --- */
.contact-page-section {
    width: 100%;
    background-color: #fcfbfa; /* Matches the clean off-white inner page canvas look */
    padding: 80px 20px;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-page-container {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
}

/* Page Intro Top Section Header Text Rules */
.contact-section-header {
    text-align: center;
    max-width: 1280px;
    margin: 0 auto 60px auto;
}

.contact-section-title {
    color: #05261C; /* Brand deep green */
    font-family: 'Georgia', serif;
    font-size: 42px;
    font-weight: 600;
    margin: 0 0 18px 0;
    line-height: 1.3;
}

.contact-section-desc {
    color: #44554a;
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
}

/* Clean Info Grid System Layout - Reconfigured for 2 Balanced Columns */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 balanced columns matching your content */
    gap: 30px;
    align-items: stretch;
    max-width: 900px; /* Constrains columns beautifully to prevent looking stretched on desktop */
    margin: 0 auto;
}

.detail-info-block {
    background-color: #ffffff;
    border: 1px solid rgba(5, 38, 28, 0.08);
    border-radius: 12px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    box-shadow: 0 10px 30px rgba(5, 38, 28, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detail-info-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(5, 38, 28, 0.07);
}

.block-icon-wrapper {
    width: 65px;
    height: 65px;
    background-color: rgba(230, 176, 34, 0.15); /* Light premium brand gold tint */
    color: #05261C; /* Dark green icon */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin-bottom: 24px;
    flex-shrink: 0;
}

.block-text h3 {
    margin: 0 0 14px 0;
    color: #05261C;
    font-family: 'Georgia', serif;
    font-size: 22px;
    font-weight: 600;
}

.block-text p {
    margin: 0;
    color: #33443a;
    font-size: 16px;
    line-height: 1.6;
}

.contact-phone-link {
    color: #E6B022; /* High contrast brand gold link */
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    margin-top: 8px;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-phone-link:hover {
    color: #05261C;
    border-color: #05261C;
    text-decoration: none;
}

/* Responsive Adaptive Layout Parameters */
@media (max-width: 768px) {
    .contact-page-section {
        padding: 50px 15px;
    }

    .contact-section-header {
        margin-bottom: 40px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr; /* Single column stack seamlessly for smartphone screens */
        gap: 20px;
    }
    
    .contact-section-title {
        font-size: 30px;
    }
    
    .detail-info-block {
        padding: 30px 20px;
    }
}

/* --- Premium Editorial Sitemap Grid Styles --- */
.sitemap-page-section {
    width: 100%;
    background-color: #fcfbfa; /* Clean off-white canvas background used across your inner pages */
    padding: 80px 20px;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.sitemap-page-container {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
}

/* Section Header Styles */
.sitemap-section-header {
    text-align: center;
    max-width: 1280px;
    margin: 0 auto 60px auto;
}

.sitemap-section-title {
    color: #05261C; /* Brand premium deep green */
    font-family: 'Georgia', serif;
    font-size: 42px;
    font-weight: 600;
    margin: 0 0 18px 0;
    line-height: 1.3;
}

.sitemap-section-desc {
    color: #44554a;
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
}

/* Core Navigation Grid Structural Framework */
.sitemap-navigation-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Columns on Wide Desktop views */
    gap: 25px;
    align-items: stretch;
}

/* Individual Category Panel Cards */
.sitemap-index-card {
    background-color: #ffffff;
    border: 1px solid rgba(5, 38, 28, 0.08);
    border-top: 4px solid #05261C; /* Clean brand deep green top indicator strip */
    border-radius: 8px;
    padding: 30px 20px;
    box-sizing: border-box;
    box-shadow: 0 10px 30px rgba(5, 38, 28, 0.02);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-top-color 0.25s ease;
}

.sitemap-index-card:hover {
    transform: translateY(-4px);
    border-top-color: #E6B022; /* Transitions header accent line to brand gold on hover */
    box-shadow: 0 12px 30px rgba(5, 38, 28, 0.07);
}

/* Card Header Section Layout */
.card-category-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(5, 38, 28, 0.08);
    padding-bottom: 14px;
    margin-bottom: 20px;
}

.card-category-indicator i {
    font-size: 18px;
    color: #05261C; /* Main deep green icon styling */
    transition: color 0.2s ease;
}

.sitemap-index-card:hover .card-category-indicator i {
    color: #E6B022; /* Icon pops to gold on hover state */
}

.card-category-indicator h3 {
    margin: 0;
    color: #05261C;
    font-family: 'Georgia', serif;
    font-size: 19px;
    font-weight: 600;
}

/* Custom Anchor Link Lists formatting */
.sitemap-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sitemap-link-list li {
    display: flex;
    align-items: center; 
    gap: 10px;
    font-size: 15px;
}

/* Small interactive layout indicator icon vectors */
.list-arrow {
    font-size: 10px;
    color: #8fa094;
    transition: transform 0.2s ease, color 0.2s ease;
}

.sitemap-link-list li:hover .list-arrow {
    transform: translateX(3px);
    color: #E6B022; /* Arrow element turns gold when list item focused */
}

.sitemap-link-list a {
    color: #33443a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
    display: block;
    width: 100%;
}

.sitemap-link-list li:hover a {
    color: #E6B022; /* Anchor links transition to premium gold on hover */
}

/* RESPONSIVE PARAMS: Re-arranges columns for tablet and smartphone viewports */
@media (max-width: 1024px) {
    .sitemap-page-section {
        padding: 60px 15px;
    }

    .sitemap-navigation-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Columns balanced layout on tablets */
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .sitemap-navigation-grid {
        grid-template-columns: 1fr; /* Formats down into full-width stacked row cards on phone viewports */
        gap: 15px;
    }
    
    .sitemap-section-header {
        margin-bottom: 40px;
    }

    .sitemap-section-title {
        font-size: 30px;
    }
    
    .sitemap-index-card {
        padding: 25px 20px;
    }
}


/* --- Premium Corporate FAQ Page Layout Styles --- */
.faq-page-section {
    width: 100%;
    background-color: #fcfbfa; /* Matches the clean off-white inner page canvas look */
    padding: 80px 20px;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.faq-page-container {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
}

/* Page Intro Top Section Header Text Rules */
.faq-section-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 60px auto;
}

.faq-section-title {
    color: #05261C; /* Brand premium deep green */
    font-family: 'Georgia', serif;
    font-size: 42px;
    font-weight: 600;
    margin: 0 0 18px 0;
    line-height: 1.3;
}

.faq-section-title span {
    color: #E6B022; /* Accents key hotel identifiers in rich gold */
}

.faq-section-desc {
    color: #44554a;
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
}

/* Master Columns Arrangement Grid Workspace */
.faq-layout-workspace {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* LEFT SIDEBAR: Sticky Floating Anchors Navigator Column */
.faq-nav-sidebar {
    flex: 0 0 300px;
    position: sticky;
    top: 40px; /* Locks module beautifully when scrolling past content nodes */
}

.sticky-nav-card {
    background-color: #ffffff;
    border: 1px solid rgba(5, 38, 28, 0.08);
    border-radius: 12px;
    padding: 28px 24px;
    box-sizing: border-box;
    box-shadow: 0 10px 30px rgba(5, 38, 28, 0.02);
}

.sticky-nav-card h3 {
    margin: 0 0 18px 0;
    color: #05261C;
    font-family: 'Georgia', serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-bottom: 2px solid rgba(5, 38, 28, 0.06);
    padding-bottom: 12px;
}

.faq-jump-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #44554a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 14px;
    border-radius: 6px;
    transition: all 0.25s ease;
}

.faq-jump-link i {
    font-size: 16px;
    color: #8fa094;
    width: 20px;
    text-align: center;
    transition: color 0.25s ease;
}

.faq-jump-link:hover {
    background-color: rgba(5, 38, 28, 0.04);
    color: #E6B022; /* Hover link focus swaps elegantly to gold */
}

.faq-jump-link:hover i {
    color: #E6B022;
}

/* RIGHT SIDEBAR: Question Content Cards Area Layout */
.faq-content-track {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.faq-group-block {
    scroll-margin-top: 40px; /* Offsets scroll tracking cleanly under sticky margins */
}

.group-block-title {
    color: #05261C;
    font-family: 'Georgia', serif;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 22px 0;
    border-left: 4px solid #E6B022; /* Premium brand gold sidebar marker line tag */
    padding-left: 14px;
}

/* Individual Card Blocks System */
.faq-qa-card {
    background-color: #ffffff;
    border: 1px solid rgba(5, 38, 28, 0.08);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(5, 38, 28, 0.02);
}

.faq-question-row, .faq-answer-row {
    display: flex;
    gap: 20px;
    padding: 22px 26px;
    box-sizing: border-box;
}

.faq-question-row {
    background-color: rgba(5, 38, 28, 0.02); /* Very soft green tone back tint for visual contrast */
    border-bottom: 1px solid rgba(5, 38, 28, 0.06);
}

/* Circular Letter Q / A Index Labels Formatting */
.qa-indicator {
    width: 30px;
    height: 30px;
    background-color: #05261C; /* Main deep green indicator bubble for questions */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.qa-indicator.text-red {
    background-color: rgba(230, 176, 34, 0.12); /* Swapped red backdrops to premium gold highlight mask */
    color: #05261C;
    font-weight: 700;
}

.faq-question-row h4 {
    margin: 0;
    color: #05261C;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.45;
    padding-top: 3px;
}

.faq-answer-row p {
    margin: 0;
    color: #33443a;
    font-size: 16px;
    line-height: 1.65;
    padding-top: 2px;
}

/* Inside Hyperlinks Formatting rules */
.faq-answer-row a {
    color: #E6B022; /* In-text context anchor triggers switch to brand gold */
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

.faq-answer-row a:hover {
    color: #05261C;
    border-color: #05261C;
    text-decoration: none;
}

.faq-tel-link {
    color: #05261C !important;
    white-space: nowrap;
    border-bottom: 1px dotted #05261C !important;
}

.faq-tel-link:hover {
    color: #E6B022 !important;
    border-color: #E6B022 !important;
}

/* RESPONSIVE SUB-OVERRIDES: Adapts columns layout for tablet devices */
@media (max-width: 992px) {
    .faq-page-section {
        padding: 50px 15px;
    }

    .faq-layout-workspace {
        flex-direction: column; /* Stacks navigation lists above the data cards track */
        gap: 30px;
    }
    
    .faq-nav-sidebar {
        width: 100%;
        position: relative;
        top: 0;
    }
    
    .sticky-nav-card {
        display: flex;
        flex-direction: row;
        overflow-x: auto; /* Enables custom sliding tab horizontal stream configuration on smaller frames */
        gap: 12px;
        white-space: nowrap;
        padding: 12px;
        background-color: transparent;
        border: none;
        box-shadow: none;
        border-radius: 0;
        -webkit-overflow-scrolling: touch;
    }
    
    .faq-jump-link {
        background-color: #ffffff;
        border: 1px solid rgba(5, 38, 28, 0.08);
        padding: 10px 16px;
        box-shadow: 0 4px 10px rgba(5, 38, 28, 0.02);
    }
    
    .sticky-nav-card h3 {
        display: none; /* Hides internal sub-headings on linear row streams */
    }
}

@media (max-width: 640px) {
    .faq-section-header {
        margin-bottom: 40px;
    }

    .faq-section-title {
        font-size: 30px;
    }
    
    .faq-question-row, .faq-answer-row {
        padding: 18px 16px;
        gap: 14px;
    }
    
    .faq-question-row h4 {
        font-size: 17px;
    }
    
    .faq-answer-row p {
        font-size: 15px;
    }
    
    .group-block-title {
        font-size: 20px;
    }
}