/* ========================================
   Wee Sleep Ireland - Main Stylesheet
   Vibrant Soft Color Palette, Modern Design
   ======================================== */

/* CSS Variables - Vibrant Soft Color Palette */
:root {
    /* Primary Colors - Rich Sage Green */
    --primary: #5B8A72;
    --primary-light: #7BAE8F;
    --primary-dark: #4A7059;
    --primary-soft: #E8F5EE;
    
    /* Secondary Colors - Warm Peach/Coral */
    --secondary: #FFF5F0;
    --secondary-dark: #FFE8DE;
    --cream: #FFFCFA;
    
    /* Accent Colors - Soft Terracotta */
    --accent: #E07A5F;
    --accent-light: #F2A488;
    --accent-soft: #FDEBE6;
    
    /* Highlight Colors - Warm Gold */
    --highlight: #F2CC8F;
    --highlight-soft: #FDF5E6;
    
    /* Text Colors */
    --text-dark: #2D3436;
    --text-medium: #5A6366;
    --text-light: #8A9499;
    
    /* Background Colors */
    --bg-white: #FFFFFF;
    --bg-light: #FAFBFC;
    --bg-cream: #FFFCFA;
    
    /* Border & Shadow */
    --border-radius: 24px;
    --border-radius-sm: 16px;
    --border-radius-lg: 32px;
    --shadow-soft: 0 4px 24px rgba(91, 138, 114, 0.08);
    --shadow-medium: 0 8px 32px rgba(91, 138, 114, 0.12);
    --shadow-hover: 0 16px 48px rgba(91, 138, 114, 0.18);
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Spacing */
    --section-padding: 100px;
    --container-max: 1200px;
}

/* Reset & Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-medium);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-medium);
}

.navbar.scrolled {
    box-shadow: var(--shadow-medium);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-dark);
}

.logo-highlight {
    color: var(--primary);
}

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

.nav-link {
    padding: 12px 20px;
    font-weight: 500;
    color: var(--text-medium);
    border-radius: var(--border-radius-sm);
    transition: var(--transition-medium);
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: var(--primary-soft);
}

.nav-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white !important;
    margin-left: 10px;
    box-shadow: 0 4px 15px rgba(91, 138, 114, 0.3);
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(91, 138, 114, 0.4);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-medium);
}

.nav-toggle:hover {
    background: var(--primary-soft);
}

.hamburger {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--text-dark);
    position: relative;
    transition: var(--transition-medium);
    border-radius: 2px;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 26px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition-medium);
    border-radius: 2px;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-soft) 0%, var(--secondary) 50%, var(--highlight-soft) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 140px 24px 100px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../imageslowres/P1054954-HDR-Pano.jpg') center/cover;
    opacity: 0.12;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(91, 138, 114, 0.05) 0%, rgba(255, 252, 250, 0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.15;
}

.hero-title .highlight {
    color: var(--primary);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 12px;
    background: var(--highlight);
    opacity: 0.5;
    z-index: -1;
    border-radius: 4px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 24px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.hero-intro {
    font-size: 1.05rem;
    color: var(--text-medium);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.9;
}

.hero-scroll {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

/* ========================================
   Benefits Strip
   ======================================== */
.benefits-strip {
    background: var(--bg-white);
    padding: 40px 0 20px;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.benefits-inner {
    background: linear-gradient(135deg, var(--primary-soft) 0%, var(--secondary) 50%, var(--highlight-soft) 100%);
    border-radius: var(--border-radius);
    padding: 24px 28px;
    box-shadow: var(--shadow-soft);
}

.benefits-title {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 14px;
}

.benefits-items {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.98rem;
    color: var(--text-medium);
}

.benefit-item i {
    color: var(--primary);
    font-size: 0.95rem;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-medium);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    color: var(--primary);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-12px);
    }
    60% {
        transform: translateY(-6px);
    }
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 36px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--border-radius-lg);
    cursor: pointer;
    transition: var(--transition-medium);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(91, 138, 114, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(91, 138, 114, 0.45);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(224, 122, 95, 0.35);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #C96A52 0%, var(--accent) 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(224, 122, 95, 0.45);
}

.btn-outline {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.1rem;
}

.btn-xlarge {
    padding: 22px 55px;
    font-size: 1.2rem;
}

.btn-block {
    width: 100%;
}

/* ========================================
   Section Styles
   ======================================== */
section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 70px;
}

.section-tag {
    display: inline-block;
    padding: 10px 24px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: var(--border-radius-lg);
    margin-bottom: 22px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--text-dark);
    margin-bottom: 18px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-medium);
}

/* ========================================
   About Section
   ======================================== */
.about {
    background: var(--bg-cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-text {
    font-size: 1.08rem;
    color: var(--text-medium);
    margin-bottom: 22px;
    line-height: 1.9;
}

.about-stats {
    display: flex;
    gap: 50px;
    margin-top: 45px;
}

.stat-item {
    text-align: center;
    padding: 25px 30px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-top: 8px;
    font-weight: 500;
}

.about-image {
    position: relative;
}

.rounded-image {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition-medium);
}

.rounded-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.about-badge {
    position: absolute;
    bottom: -25px;
    left: -25px;
    background: white;
    padding: 25px 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 18px;
}

.about-badge i {
    font-size: 2.2rem;
    color: var(--accent);
}

.about-badge span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
}

/* Restaurant Badge */
.restaurant-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--accent-soft) 0%, var(--secondary) 100%);
    padding: 18px 28px;
    border-radius: var(--border-radius);
    margin-top: 25px;
    border-left: 4px solid var(--accent);
}

.restaurant-badge i {
    color: var(--accent);
    font-size: 1.5rem;
}

.restaurant-badge span {
    font-weight: 600;
    color: var(--text-dark);
}

.restaurant-badge small {
    display: block;
    color: var(--text-medium);
    font-size: 0.85rem;
    font-weight: 400;
}

/* ========================================
   Rooms Section
   ======================================== */
.rooms {
    background: var(--bg-white);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.room-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-medium);
    border: 1px solid rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
}

.room-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
}

.room-image {
    position: relative;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 0;
}

.room-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: white;
    padding: 8px 18px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 15px rgba(224, 122, 95, 0.3);
}

.room-badge.premium {
    background: linear-gradient(135deg, var(--highlight) 0%, #E5B86A 100%);
    color: var(--text-dark);
}

.room-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.room-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0;
}

.room-description {
    font-size: 0.98rem;
    color: var(--text-medium);
    margin-bottom: 0;
    line-height: 1.7;
}

.room-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 0;
}

.room-features li {
    display: grid;
    grid-template-columns: 18px 1fr;
    align-items: start;
    gap: 10px;
    min-height: 2.7em;
    font-size: 0.89rem;
    color: var(--text-medium);
    line-height: 1.45;
}

.room-features i {
    color: var(--primary);
    font-size: 0.9rem;
    margin-top: 0.18em;
}

.room-price {
    margin-top: auto;
    margin-bottom: 0;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.room-price-note {
    display: none;
    margin: -2px 0 0;
    font-size: 0.88rem;
    line-height: 1.45;
    color: var(--text-medium);
}

.price {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 600;
    color: var(--primary);
}

.per-night {
    font-size: 0.8rem;
    color: var(--text-light);
    letter-spacing: 0.06em;
}

/* ========================================
   Gallery Section
   ======================================== */
.gallery {
    background: var(--bg-cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 260px;
    gap: 24px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(91, 138, 114, 0.85) 0%, rgba(224, 122, 95, 0.75) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-medium);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2.8rem;
    color: white;
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

/* ========================================
   Amenities Section
   ======================================== */
.amenities {
    background: var(--bg-white);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

.amenity-card {
    text-align: center;
    padding: 45px 35px;
    background: var(--bg-cream);
    border-radius: var(--border-radius);
    transition: var(--transition-medium);
    border: 1px solid rgba(0,0,0,0.03);
}

.amenity-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    background: white;
}

.amenity-icon {
    width: 90px;
    height: 90px;
    background: var(--primary-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    transition: var(--transition-medium);
}

.amenity-card:hover .amenity-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    transform: scale(1.05);
}

.amenity-icon i {
    font-size: 2.2rem;
    color: var(--primary);
    transition: var(--transition-medium);
}

.amenity-card:hover .amenity-icon i {
    color: white;
}

.amenity-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.amenity-card p {
    font-size: 0.98rem;
    color: var(--text-medium);
    line-height: 1.7;
}

/* Restaurant Voucher Highlight */
.voucher-highlight {
    background: linear-gradient(135deg, var(--accent-soft) 0%, var(--highlight-soft) 100%);
    border: 2px dashed var(--accent);
}

.voucher-highlight .amenity-icon {
    background: var(--accent-soft);
}

.voucher-highlight .amenity-icon i {
    color: var(--accent);
}

.voucher-highlight:hover .amenity-icon {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
}

/* ========================================
   Location Section
   ======================================== */
.location {
    background: var(--bg-cream);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.location-card {
    background: white;
    padding: 28px;
    border-radius: var(--border-radius);
    margin-bottom: 22px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-medium);
}

.location-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-medium);
}

.location-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.location-card h3 i {
    color: var(--primary);
    width: 35px;
    height: 35px;
    background: var(--primary-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.location-card p {
    color: var(--text-medium);
    line-height: 1.9;
    padding-left: 47px;
}

.location-card a {
    color: var(--primary);
    font-weight: 500;
}

.location-card a:hover {
    color: var(--accent);
}

.location-note {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: linear-gradient(135deg, var(--accent-soft) 0%, var(--secondary) 100%);
    padding: 25px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent);
}

.location-note i {
    color: var(--accent);
    font-size: 1.4rem;
    margin-top: 3px;
}

.location-note p {
    font-size: 0.98rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.nearby-attractions {
    text-align: center;
    background: white;
    padding: 45px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

.nearby-attractions h3 {
    font-family: var(--font-display);
    font-size: 1.7rem;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.attractions-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.attraction-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-medium);
    font-weight: 500;
    padding: 15px 25px;
    background: var(--bg-cream);
    border-radius: var(--border-radius-lg);
}

.attraction-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* ========================================
   Local Area & Direct Booking Sections
   ======================================== */
.local-area {
    background: var(--bg-white);
}

.local-area-content {
    max-width: 800px;
    margin: 0 auto;
}

.local-area-text {
    font-size: 1.02rem;
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: 18px;
}

.local-area-list {
    margin: 0 0 18px 18px;
    padding-left: 0;
}

.local-area-list li {
    list-style: disc;
    margin-bottom: 6px;
    color: var(--text-medium);
}

.local-area-seo {
    font-size: 0.95rem;
    color: var(--text-light);
}

.direct-booking {
    background: var(--bg-cream);
}

.direct-booking-inner {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 32px;
    border-radius: var(--border-radius);
    background: linear-gradient(135deg, var(--primary-soft) 0%, var(--highlight-soft) 100%);
    box-shadow: var(--shadow-soft);
}

.direct-booking-text {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 10px;
}

.direct-booking-highlight {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

/* ========================================
   Booking Section
   ======================================== */
.booking {
    background: var(--bg-white);
}

.booking-success {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-soft) 0%, var(--highlight-soft) 100%);
    padding: 60px;
    border-radius: var(--border-radius);
    margin-bottom: 60px;
    border: 2px solid var(--primary-soft);
}

.booking-success i {
    font-size: 4.5rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.booking-success h3 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 18px;
}

.booking-success p {
    color: var(--text-medium);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.booking-info h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.booking-benefits {
    margin-bottom: 45px;
}

.booking-benefits li {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px 0;
    color: var(--text-medium);
    border-bottom: 1px solid var(--secondary-dark);
    font-size: 1.05rem;
}

.booking-benefits li:last-child {
    border-bottom: none;
}

.booking-benefits i {
    color: var(--primary);
    font-size: 1.2rem;
    width: 30px;
    height: 30px;
    background: var(--primary-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-cta {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--secondary) 100%);
    padding: 35px;
    border-radius: var(--border-radius);
    text-align: center;
}

.booking-cta p {
    color: var(--text-medium);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.booking-form-wrapper {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--secondary) 100%);
    padding: 50px;
    border-radius: var(--border-radius);
}

.booking-form h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 35px;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--secondary-dark);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--text-dark);
    background: white;
    transition: var(--transition-medium);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-soft);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-top: 25px;
    line-height: 1.7;
}

.form-note a {
    color: var(--primary);
    font-weight: 600;
}

.form-note a:hover {
    color: var(--accent);
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials {
    background: var(--bg-cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 35px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-medium);
    border: 1px solid rgba(0,0,0,0.03);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.testimonial-rating {
    color: #FFC107;
    margin-bottom: 22px;
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 18px;
}

.author-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-soft) 0%, var(--accent-soft) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex: 0 0 55px;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.author-avatar i {
    color: var(--primary);
    font-size: 1.4rem;
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.author-location {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    position: relative;
    padding: 140px 24px;
    background: url('https://images.trvl-media.com/place/6179540/511ae287-37d1-4c60-be28-7c6823e7bb4c.jpg') center/cover fixed;
    text-align: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 52, 54, 0.75) 0%, rgba(91, 138, 114, 0.65) 100%);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: white;
    margin-bottom: 22px;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 45px;
    line-height: 1.8;
}

.cta-phone {
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
}

.cta-phone a {
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
}

.cta-phone a:hover {
    color: var(--highlight);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: linear-gradient(135deg, #2D3436 0%, #3D4548 100%);
    color: white;
    padding: 90px 0 35px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.footer-logo img {
    width: 50px;
    height: 50px;
}

.footer-logo span {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.9;
    margin-bottom: 28px;
}

.footer-social,
.footer-partners {
    display: flex;
    gap: 15px;
}

.footer-social a,
.footer-partner-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-medium);
    font-size: 1.1rem;
}

.footer-social a:hover,
.footer-partner-link:hover {
    background: var(--primary);
    transform: translateY(-4px);
}

.footer-partners {
    flex-wrap: wrap;
}

.footer-partner-link {
    width: auto;
    min-width: 162px;
    height: 45px;
    padding: 0 14px;
    border-radius: 999px;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.footer-partner-icon {
    width: 20px;
    height: 20px;
    display: block;
    filter: brightness(0) invert(1);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 28px;
    color: white;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-medium);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 8px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-contact i {
    color: var(--primary-light);
    margin-top: 5px;
    font-size: 1.1rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

.footer-keycode-note {
    flex-basis: 100%;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.95rem;
}

.footer-credit {
    display: none !important;
}

/* ========================================
   Back to Top Button
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 35px;
    right: 35px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-medium);
    z-index: 999;
    box-shadow: var(--shadow-medium);
    font-size: 1.2rem;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

/* ========================================
   Lightbox Customization
   ======================================== */
.lb-data .lb-caption {
    font-family: var(--font-primary);
    font-size: 1.05rem;
}

.lb-nav a.lb-prev,
.lb-nav a.lb-next {
    opacity: 0.8;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .about-grid,
    .location-grid,
    .booking-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 70px;
    }
    
    .nav-container {
        height: 75px;
        padding: 0 18px;
    }
    
    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-menu {
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 15px 20px 25px;
        gap: 5px;
        box-shadow: var(--shadow-medium);
        transform: translateY(-150%);
        transition: var(--transition-medium);
        opacity: 0;
        visibility: hidden;
        max-height: calc(100vh - 75px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 16px 20px;
        font-size: 1.05rem;
        border-radius: var(--border-radius-sm);
        margin-bottom: 4px;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: var(--primary-soft);
    }
    
    .nav-cta {
        margin-left: 0;
        margin-top: 10px;
        padding: 18px 20px;
    }
    
    .hero {
        padding: 120px 18px 80px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 18px;
    }
    
    .feature-item {
        justify-content: center;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-item {
        padding: 20px;
    }
    
    .about-badge {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 25px;
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .gallery-item.large {
        grid-column: span 1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 45px;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-social,
    .footer-partners {
        justify-content: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .booking-form-wrapper {
        padding: 30px 22px;
    }
    
    .testimonial-card {
        padding: 30px 25px;
    }
    
    .cta-section {
        padding: 100px 18px;
    }
    
    .nearby-attractions {
        padding: 30px 20px;
    }
    
    .attractions-grid {
        gap: 15px;
    }
    
    .attraction-item {
        padding: 12px 18px;
        font-size: 0.95rem;
    }
    
    .location-card p {
        padding-left: 0;
        margin-top: 10px;
    }
    
    .location-card h3 {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .restaurant-badge {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.9rem;
    }
    
    .btn-large,
    .btn-xlarge {
        padding: 16px 28px;
        font-size: 1rem;
    }
    
    .booking-form-wrapper {
        padding: 25px 18px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .room-content {
        padding: 22px;
    }
    
    .amenity-card {
        padding: 35px 25px;
    }
    
    .booking-success {
        padding: 40px 25px;
    }
    
    .about-badge {
        padding: 18px 22px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .gallery-grid {
        grid-auto-rows: 200px;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .navbar,
    .hero-scroll,
    .back-to-top,
    .footer-social,
    .btn {
        display: none !important;
    }
    
    section {
        padding: 40px 0;
        page-break-inside: avoid;
    }
}


/* ========================================
   SAFE MOBILE MENU FIX
   ======================================== */

/* prevent horizontal scroll */
html, body {
    overflow-x: hidden;
}

/* keep navbar inside screen */
.navbar,
.nav-container {
    max-width: 100%;
    box-sizing: border-box;
}

/* mobile spacing improvements ONLY */
@media (max-width: 768px) {

    .nav-menu {
        padding: 20px;
        gap: 10px;
    }

    .nav-link {
        padding: 18px 20px;
        margin-bottom: 8px;
        line-height: 1.5;
    }

}

/* ========================================
   FINAL PRIORITY OVERRIDES
   ======================================== */
.hero.hero-slider,
.hero-slider-track,
.hero-slide .container {
    min-height: 100vh;
}

.hero-slide .container {
    align-items: center;
    padding-top: 128px;
    padding-bottom: 120px;
}

.hero-content {
    width: min(960px, 100%);
    max-width: 100%;
}

.hero-title {
    max-width: 24ch;
    font-size: clamp(2.45rem, 5.8vw, 4.6rem);
    line-height: 1.05;
}

.hero-subtitle {
    max-width: 68ch;
    font-size: 1.08rem;
}

.hero-availability-widget {
    width: min(760px, 100%);
    max-width: 100%;
}

.rooms-grid.rooms-grid-four {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.city-food-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.booking-grid.booking-grid-updated {
    grid-template-columns: 1fr;
    gap: 36px;
    max-width: 920px;
    margin: 0 auto;
}

@media (max-width: 1180px) {
    .rooms-grid.rooms-grid-four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .city-food-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-slide .container {
        align-items: flex-start;
        padding-top: 112px;
        padding-bottom: 100px;
    }

    .hero-title {
        font-size: clamp(2rem, 8.5vw, 3rem);
        max-width: 100%;
    }

    .hero-buttons {
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .booking-grid.booking-grid-updated {
        grid-template-columns: 1fr;
        gap: 24px;
    }

}

@media (max-width: 640px) {
    .rooms-grid.rooms-grid-four,
    .city-food-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   2026 Final Wrap-Up Overrides
   ======================================== */
.section-title,
.hero-title,
.room-title,
.booking-info h3,
.contractor-card h3,
.footer-links h4,
.footer-contact h4 {
    text-transform: uppercase;
}

.section-title {
    font-weight: 900;
}

.hero.hero-slider,
.hero-slider-track,
.hero-slide .container {
    min-height: 100vh;
}

.hero-slide .container {
    align-items: center;
    padding-top: 128px;
    padding-bottom: 120px;
}

.hero-content {
    width: min(960px, 100%);
    max-width: 100%;
}

.hero-title {
    max-width: 24ch;
    font-size: clamp(2.45rem, 5.8vw, 4.6rem);
    line-height: 1.05;
}

.hero-subtitle {
    max-width: 68ch;
    font-size: 1.08rem;
}

.hero-availability-widget {
    width: min(760px, 100%);
    max-width: 100%;
}

.rooms-grid.rooms-grid-four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.rooms-grid.rooms-grid-four .room-card {
    height: 100%;
}

.rooms-grid.rooms-grid-four .room-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.rooms-grid.rooms-grid-four .room-features {
    flex: 1;
}

.city-food-edit {
    background: #fbf7f1;
}

.city-food-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.city-food-card {
    background: #fff;
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(34, 29, 22, 0.08);
}

.city-food-card .rounded-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(34, 29, 22, 0.14);
}

.city-food-card h3 {
    margin-top: 14px;
    margin-bottom: 8px;
    font-size: 1.05rem;
    letter-spacing: 0.04em;
}

.city-food-card p {
    color: #5f584f;
    font-size: 0.95rem;
}

.booking-grid.booking-grid-updated {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.2fr);
    gap: 36px;
}

.booking-info-intro {
    margin-bottom: 22px;
    font-size: 1.03rem;
    color: #4f4a43;
}

.booking-widget-card {
    margin-bottom: 20px;
    padding: 18px;
    border-radius: 16px;
    background: #f9f3ea;
    border: 1px solid #efe3d3;
    text-align: center;
    display: flex;
    justify-content: center;
}

.booking-widget-card .RoomRaccoon-BookingEngine {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.booking-widget-card .availability-widget {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
    justify-content: center;
}

.booking-widget-card .availability-widget-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #e8dbca;
    padding: 8px 10px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
}

.booking-widget-card input[type="date"] {
    border: 1px solid #ddd1c1;
    border-radius: 8px;
    padding: 6px 8px;
    cursor: pointer;
}

.booking-widget-card .RoomRaccoonButton2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    color: #fff;
    background: linear-gradient(120deg, #c98544 0%, #a7682d 100%);
    padding: 11px 16px;
    margin: 0 auto;
}

.contractor-card {
    background: linear-gradient(135deg, #fffdf9 0%, #f6efe4 100%);
}

.contractor-copy {
    color: #554d44;
    margin-bottom: 10px;
}

.form-message {
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 14px;
    font-size: 0.94rem;
    font-weight: 600;
}

.form-message.success {
    background: #eaf8ef;
    color: #2a6f47;
    border: 1px solid #b6e1c2;
}

.form-message.error {
    background: #fff1ef;
    color: #9a342c;
    border: 1px solid #efc0b9;
}

.booking-note {
    margin-top: 14px;
    color: #61584e;
    font-size: 0.92rem;
}

@media (max-width: 1180px) {
    .rooms-grid.rooms-grid-four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .city-food-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-slide .container {
        align-items: flex-start;
        padding-top: 112px;
        padding-bottom: 100px;
    }

    .hero-content {
        width: 100%;
    }

    .hero-title {
        font-size: clamp(2rem, 8.5vw, 3rem);
        max-width: 100%;
    }

    .hero-subtitle {
        font-size: 0.97rem;
    }

    .hero-buttons {
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .booking-grid.booking-grid-updated {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .rooms-grid.rooms-grid-four,
    .city-food-grid {
        grid-template-columns: 1fr;
    }

    .city-food-card .rounded-image {
        height: 210px;
    }

}

/* ========================================
   2026 Refresh: Menu, Hero Slider, New Sections
   ======================================== */
:root {
    --font-primary: 'Manrope', sans-serif;
    --font-display: 'Cormorant Garamond', serif;
    --mollies-ink: #151310;
    --mollies-cream: #f4ede2;
    --mollies-gold: #c88b45;
}

.navbar {
    background: rgba(18, 16, 13, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.navbar.scrolled {
    background: rgba(18, 16, 13, 0.95);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.logo-text,
.logo-highlight {
    color: #fff;
}

.nav-link {
    color: rgba(255, 255, 255, 0.82);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    font-weight: 600;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

.nav-cta {
    background: var(--mollies-cream);
    color: var(--mollies-ink) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.nav-cta:hover {
    background: #fff;
    color: #000 !important;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    background: #fff;
}

.hero.hero-slider {
    min-height: 100svh;
    padding: 0;
    background: #000;
    position: relative;
    isolation: isolate;
}

.hero.hero-slider::before {
    display: none;
}

.hero-slider-track {
    min-height: 100svh;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.9s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(15, 13, 11, 0.58) 12%, rgba(15, 13, 11, 0.22) 58%, rgba(15, 13, 11, 0.52) 100%);
}

.hero-slide .container {
    position: relative;
    z-index: 2;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 124px;
}

.hero-content {
    text-align: left;
    width: min(860px, 100%);
    max-width: 100%;
    color: #fff;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    font-size: 0.74rem;
    font-weight: 700;
}

.hero-title {
    color: #fff;
    font-size: clamp(2.2rem, 5.2vw, 4.25rem);
    font-weight: 900;
    line-height: 1.08;
    max-width: 18ch;
    margin: 0 0 16px;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.04rem;
    max-width: 56ch;
    margin: 0 0 30px;
}

.hero-package-list {
    margin: -8px 0 28px;
    padding: 0;
    display: grid;
    gap: 10px;
    max-width: 48ch;
}

.hero-package-list li {
    list-style: none;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.94);
    line-height: 1.5;
}

.hero-package-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    margin-top: 0.5em;
    border-radius: 50%;
    background: #f2cc8f;
    box-shadow: 0 0 0 3px rgba(242, 204, 143, 0.24);
}

.hero-availability-widget {
    width: min(720px, 100%);
    margin: 0 0 16px;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(14, 12, 10, 0.62);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(5px);
}

.hero-availability-widget .availability-widget {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.hero-availability-widget .availability-widget-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    padding: 10px 12px;
    cursor: pointer;
}

.hero-availability-widget input[type="date"] {
    min-width: 150px;
    border-radius: 10px;
    border: none;
    outline: none;
    font-size: 0.9rem;
    padding: 7px 10px;
    color: #1f1a14;
    background: #fff;
    cursor: pointer;
}

.hero-availability-widget .RoomRaccoonButton2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 0.86rem;
    border-radius: 12px;
    padding: 12px 18px;
    color: #fff;
    background: linear-gradient(120deg, #c98544 0%, #a7682d 100%);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
    transition: transform 0.25s ease, background 0.25s ease;
}

.hero-availability-widget .RoomRaccoonButton2:hover {
    background: linear-gradient(120deg, #d69755 0%, #bc7c3d 100%);
    transform: translateY(-2px);
}

.hero-buttons {
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 0;
}

.hero-slider .btn-outline {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.hero-slider .btn-outline:hover {
    background: rgba(255, 255, 255, 0.28);
    border-color: #fff;
}

.hero-slide-cta {
    background: linear-gradient(120deg, #c98544 0%, #a7682d 100%);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

.hero-slide-cta:hover {
    background: linear-gradient(120deg, #d69755 0%, #bc7c3d 100%);
}

.hero-slider-controls {
    position: absolute;
    left: 24px;
    right: 24px;
    left: max(24px, calc((100vw - var(--container-max)) / 2 + 24px));
    right: max(24px, calc((100vw - var(--container-max)) / 2 + 24px));
    bottom: 34px;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    cursor: pointer;
    transition: 0.25s ease;
}

.hero-nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.hero-dot {
    width: 36px;
    height: 4px;
    border: none;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: 0.25s ease;
}

.hero-dot.active {
    background: #fff;
}

.stay-highlights {
    background: #f8f3ea;
    padding-top: 82px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.highlight-card {
    background: #fff;
    border-radius: 20px;
    padding: 34px 28px;
    box-shadow: 0 16px 32px rgba(33, 27, 20, 0.08);
    border-top: 3px solid rgba(200, 139, 69, 0.35);
}

.highlight-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    line-height: 1.1;
    margin-bottom: 12px;
    color: var(--mollies-ink);
}

.highlight-card p {
    color: #60594f;
    line-height: 1.75;
}

.special-packages {
    position: relative;
    background: #17130f;
    color: #fff;
}

.special-packages .section-tag {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.special-packages .section-title,
.special-packages .section-subtitle {
    color: #fff;
}

.package-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.package-card {
    position: relative;
    min-height: 390px;
    border-radius: 22px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.package-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 12, 10, 0.18) 0%, rgba(15, 12, 10, 0.85) 82%);
}

.package-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.package-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    font-weight: 700;
}

.package-content h3 {
    font-family: var(--font-display);
    font-size: 2.1rem;
    line-height: 1.05;
    margin-bottom: 10px;
}

.package-content p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 420px;
    margin-bottom: 24px;
}

.package-feature-list {
    margin: 0 0 20px;
    padding: 0;
    display: grid;
    gap: 8px;
    max-width: 520px;
}

.package-feature-list li {
    list-style: none;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.93);
    line-height: 1.45;
    font-size: 0.93rem;
}

.package-feature-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    margin-top: 0.45em;
    border-radius: 50%;
    flex: 0 0 8px;
    background: #d5b56e;
    box-shadow: 0 0 0 3px rgba(213, 181, 110, 0.24);
}

.package-content .btn {
    width: fit-content;
}

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

    .package-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        background: rgba(18, 16, 13, 0.98);
        gap: 10px;
        padding: 16px 20px 24px;
    }

    .hero-slide .container {
        min-height: 100svh;
        align-items: flex-start;
        padding-top: 116px;
        padding-bottom: 104px;
    }

    .hero-content {
        width: 100%;
    }

    .hero-title {
        font-size: clamp(1.9rem, 9vw, 2.75rem);
        max-width: 15ch;
        line-height: 1.12;
        margin-bottom: 14px;
    }

    .hero-subtitle {
        font-size: 0.98rem;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .hero-buttons {
        align-items: flex-start;
        flex-direction: column;
        width: min(360px, 100%);
    }

    .hero-availability-widget {
        width: 100%;
        padding: 12px;
    }

    .hero-availability-widget .availability-widget {
        flex-direction: column;
        margin-bottom: 10px;
    }

    .hero-availability-widget .availability-widget-date {
        width: 100%;
        justify-content: space-between;
        font-size: 0.85rem;
    }

    .hero-availability-widget input[type="date"] {
        min-width: 138px;
        max-width: 180px;
    }

    .hero-availability-widget .RoomRaccoonButton2 {
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }

    .hero-slider-controls {
        left: 18px;
        right: 18px;
        bottom: 14px;
    }

    .hero-nav-btn {
        width: 42px;
        height: 42px;
    }

    .hero-dot {
        width: 24px;
    }

    .hero-dots {
        justify-content: center;
    }

    .package-content {
        padding: 26px;
    }
}

@media (max-width: 560px) {
    .hero-nav-btn {
        display: none;
    }

    .hero-slider-controls {
        justify-content: center;
    }
}

@media (max-height: 760px) {
    .hero-slide .container {
        align-items: flex-start;
        padding-top: 112px;
        padding-bottom: 84px;
    }

    .hero-title {
        font-size: clamp(1.85rem, 5vw, 3.2rem);
        margin-bottom: 12px;
    }

    .hero-subtitle {
        margin-bottom: 16px;
    }

    .hero-buttons .btn {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
}

.local-area .location-title-strong {
    font-size: clamp(2.35rem, 4.8vw, 3.55rem);
    font-weight: 900;
    letter-spacing: -0.01em;
    line-height: 1.06;
}

@media (max-width: 768px) {
    .local-area .location-title-strong {
        font-size: clamp(2rem, 8.2vw, 2.9rem);
    }
}
/* ========================================
   SAFE MOBILE MENU FIX
   ======================================== */

/* prevent horizontal scroll */
html, body {
    overflow-x: hidden;
}

/* keep navbar inside screen */
.navbar,
.nav-container {
    max-width: 100%;
    box-sizing: border-box;
}

/* mobile spacing improvements ONLY */
@media (max-width: 768px) {

    .nav-menu {
        padding: 20px;
        gap: 10px;
    }

    .nav-link {
        padding: 18px 20px;
        margin-bottom: 8px;
        line-height: 1.5;
    }

}

/* ========================================
   FINAL LOCK OVERRIDES (APPENDED)
   ======================================== */
.section-title,
.room-title,
.booking-info h3,
.contractor-card h3,
.footer-links h4,
.footer-contact h4 {
    text-transform: uppercase !important;
}

.hero.hero-slider,
.hero-slider-track,
.hero-slide .container {
    min-height: 100vh !important;
}

.hero-slide .container {
    align-items: center !important;
    padding-top: 128px !important;
    padding-bottom: 120px !important;
}

.hero-content {
    width: min(960px, 100%) !important;
    max-width: 100% !important;
}

.hero-title {
    max-width: 24ch !important;
    font-size: clamp(2.45rem, 5.8vw, 4.6rem) !important;
    line-height: 1.05 !important;
}

.hero-subtitle {
    max-width: 68ch !important;
    font-size: 1.08rem !important;
}

.hero-slider .hero-content {
    position: relative !important;
    z-index: 3 !important;
}

.hero-slider .hero-title,
.hero-slider .hero-subtitle,
.hero-slider .hero-eyebrow {
    color: #fff !important;
}

.hero-availability-widget {
    width: min(760px, 100%) !important;
    max-width: 100% !important;
}

.rooms-grid.rooms-grid-four {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 24px !important;
}

.city-food-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 22px !important;
}

.booking-grid.booking-grid-updated {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
    max-width: 920px !important;
    margin: 0 auto !important;
}

@media (max-width: 1180px) {
    .rooms-grid.rooms-grid-four {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

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

@media (max-width: 768px) {
    .hero-slide .container {
        align-items: flex-start !important;
        padding-top: 112px !important;
        padding-bottom: 100px !important;
    }

    .hero-title {
        font-size: clamp(2rem, 8.5vw, 3rem) !important;
        max-width: 100% !important;
    }

    .hero-buttons {
        width: 100% !important;
    }

    .hero-buttons .btn {
        width: 100% !important;
        justify-content: center !important;
    }

    .booking-grid.booking-grid-updated {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

}

@media (max-width: 640px) {
    .rooms-grid.rooms-grid-four,
    .city-food-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 420px) {
    .hero-slider-controls {
        left: 10px !important;
        right: 10px !important;
        bottom: 8px !important;
    }
}

/* ========================================
   HERO SLIDER FINAL FIX
   ======================================== */
.hero.hero-slider {
    position: relative !important;
    min-height: 100svh !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: #000 !important;
}

.hero.hero-slider::before {
    display: none !important;
}

.hero.hero-slider .hero-slider-track {
    position: relative !important;
    height: 100vh !important;
    min-height: 100svh !important;
    overflow: hidden !important;
    z-index: 1 !important;
}

.hero.hero-slider .hero-slide {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.9s ease !important;
    background-color: #000 !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

.hero.hero-slider .hero-slide.active {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 1 !important;
}

.hero.hero-slider .hero-overlay {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    z-index: 1 !important;
    background: linear-gradient(110deg, rgba(15, 13, 11, 0.58) 12%, rgba(15, 13, 11, 0.22) 58%, rgba(15, 13, 11, 0.52) 100%) !important;
}

.hero.hero-slider .container {
    position: relative !important;
    z-index: 2 !important;
    min-height: 100vh !important;
    min-height: 100svh !important;
    display: flex !important;
    align-items: center !important;
    padding-top: 140px !important;
    padding-bottom: 124px !important;
}

@media (max-width: 768px) {
    .hero.hero-slider .container {
        align-items: flex-start !important;
        padding-top: 112px !important;
        padding-bottom: 100px !important;
    }
}

/* ========================================
   HERO CAROUSEL REBUILD
   ======================================== */
.hero.hero-slider {
    position: relative !important;
    min-height: 100vh !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: #000 !important;
}

.hero.hero-slider::before {
    display: none !important;
}

.hero.hero-slider .hero-carousel {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero.hero-slider .hero-carousel-slide {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.85s ease;
}

.hero.hero-slider .hero-carousel-slide.is-active {
    display: block;
    opacity: 1;
    visibility: visible;
}

.hero.hero-slider .hero-carousel-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    z-index: 0;
}

.hero.hero-slider .hero-carousel-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(110deg, rgba(15, 13, 11, 0.58) 12%, rgba(15, 13, 11, 0.22) 58%, rgba(15, 13, 11, 0.52) 100%);
}

.hero.hero-slider .hero-carousel-shell {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 124px;
}

.hero.hero-slider .hero-carousel-copy {
    width: min(860px, 100%);
    color: #fff;
}

.hero.hero-slider .hero-carousel-controls {
    position: absolute;
    left: max(24px, calc((100vw - var(--container-max)) / 2 + 24px));
    right: max(24px, calc((100vw - var(--container-max)) / 2 + 24px));
    bottom: 34px;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero.hero-slider .hero-carousel-btn {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    cursor: pointer;
    transition: 0.25s ease;
}

.hero.hero-slider .hero-carousel-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero.hero-slider .hero-carousel-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero.hero-slider .hero-carousel-dot {
    width: 36px;
    height: 4px;
    border: none;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: 0.25s ease;
}

.hero.hero-slider .hero-carousel-dot.is-active {
    background: #fff;
}

@media (max-width: 768px) {
    .hero.hero-slider .hero-carousel-shell {
        align-items: flex-start;
        padding-top: 112px;
        padding-bottom: 100px;
    }

    .hero.hero-slider .hero-carousel-copy {
        width: 100%;
    }

    .hero.hero-slider .hero-carousel-controls {
        left: 18px;
        right: 18px;
        bottom: 14px;
    }
}

@media (max-width: 560px) {
    .hero.hero-slider .hero-carousel-btn {
        display: none;
    }

    .hero.hero-slider .hero-carousel-controls {
        justify-content: center;
    }
}

/* ========================================
   HERO SLIDER VISIBILITY FIX
   ======================================== */
.hero.hero-slider {
    background: #231f1b !important;
}

.hero.hero-slider .hero-carousel-slide::before {
    content: none !important;
    display: none !important;
    background: none !important;
}

.hero.hero-slider .hero-carousel-slide {
    background-blend-mode: normal !important;
}

/* ========================================
   SIMPLE HERO IMAGE SLIDER
   ======================================== */
.hero.hero-simple-slider {
    position: relative !important;
    min-height: 100svh !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: #111 !important;
}

.hero.hero-simple-slider::before {
    content: none !important;
    display: none !important;
    background: none !important;
}

.hero.hero-simple-slider .hero-simple-track {
    position: relative;
    width: 100%;
    min-height: 100svh;
    height: 100vh;
    overflow: hidden;
    background: #111;
}

.hero.hero-simple-slider .hero-simple-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: none;
    background: #111;
}

.hero.hero-simple-slider .hero-simple-slide.is-active {
    display: block;
}

.hero.hero-simple-slider .hero-simple-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}

.hero.hero-simple-slider .hero-simple-controls {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    pointer-events: none;
}

.hero.hero-simple-slider .hero-simple-btn {
    pointer-events: auto;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 999px;
    background: rgba(19, 17, 15, 0.38);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.hero.hero-simple-slider .hero-simple-btn:hover {
    background: rgba(19, 17, 15, 0.58);
    border-color: rgba(255, 255, 255, 0.85);
    transform: translateY(-2px);
}

.hero.hero-simple-slider .hero-simple-shell {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 164px;
    padding-bottom: 124px;
}

.hero.hero-simple-slider .hero-simple-copy {
    width: min(760px, 100%);
    padding: 28px 30px;
    border-radius: 24px;
    background: transparent;
    box-shadow: none;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

.hero.hero-simple-slider .hero-title {
    color: #fff;
    margin-bottom: 16px;
    text-transform: none !important;
    letter-spacing: 0;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
    font-weight: 900;
}

.hero.hero-simple-slider .hero-subtitle {
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 22px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.28);
    max-width: 44ch;
}

.hero.hero-simple-slider .hero-buttons {
    justify-content: flex-start;
    margin-top: 18px;
}

.hero.hero-simple-slider .hero-availability-widget.hero-simple-widget {
    width: 100%;
    margin: 0 0 10px;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(0, 0, 0, 0.1);
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    text-align: center;
}

.hero.hero-simple-slider .hero-simple-widget .availability-widget {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 10px;
    justify-content: center;
    align-items: center;
}

.hero.hero-simple-slider .hero-simple-widget .availability-widget-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 190px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    padding: 10px 12px;
    cursor: pointer;
}

.hero.hero-simple-slider .hero-simple-widget input[type="date"] {
    min-width: 0;
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    outline: none;
    font-size: 0.9rem;
    padding: 7px 10px;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    cursor: pointer;
}

.hero.hero-simple-slider .hero-simple-widget .RoomRaccoonButton2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 0.86rem;
    border-radius: 12px;
    padding: 12px 18px;
    color: #fff;
    background: linear-gradient(120deg, #c98544 0%, #a7682d 100%);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1250px) {
    .navbar .logo-text {
        display: none !important;
    }
}

@media (max-width: 1120px) {
    .navbar .nav-cta {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .hero.hero-simple-slider .hero-simple-shell {
        align-items: flex-start;
        padding-top: 148px;
        padding-bottom: 100px;
    }

    .hero.hero-simple-slider .hero-title {
        font-size: clamp(4rem, 8.5vw, 4rem) !important;
        max-width: 100% !important;
    }

    .hero.hero-simple-slider .hero-simple-copy {
        width: 100%;
        padding: 22px 20px;
        border-radius: 20px;
    }

    .hero.hero-simple-slider .hero-buttons {
        width: 100%;
    }

    .hero.hero-simple-slider .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero.hero-simple-slider .hero-simple-controls {
        padding: 0 12px;
    }

    .hero.hero-simple-slider .hero-simple-btn {
        width: 46px;
        height: 46px;
    }
}

@media (max-width: 560px) {
    .hero.hero-simple-slider .hero-simple-widget .availability-widget {
        gap: 8px;
    }

    .hero.hero-simple-slider .hero-simple-widget .availability-widget-date {
        width: 100%;
        min-width: 0;
        justify-content: space-between;
    }

    .hero.hero-simple-slider .hero-simple-widget input[type="date"] {
        min-width: 0;
        width: 100%;
    }
}
