/* --- ESTÂNCIA PREGUIÇA GLOBAL STYLES --- */

:root {
    --primary: #1B4332;
    --primary-light: #2D6A4F;
    --accent: #B84E00; /* Increased contrast for accessibility (WCAG AA pass 4.9:1) */
    --accent-hover: #964000;
    --bg-light: #FAF8F5;
    --bg-white: #FFFFFF;
    --text-dark: #2B353E;
    --text-muted: #5A626A; /* Darkened to meet WCAG AA contrast of 4.5:1 */
    --border-color: rgba(0, 0, 0, 0.08);
    --font-heading: 'Fraunces', serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
p { margin-bottom: 1.25rem; }

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}
a:hover {
    color: var(--accent);
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 5rem 0;
    position: relative;
    z-index: 2;
    background-color: var(--bg-light);
}

.bg-white {
    background-color: var(--bg-white);
}

.text-center { text-align: center; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--accent);
    color: var(--bg-white);
}
.btn-primary:hover {
    background-color: var(--accent-hover);
    color: var(--bg-white);
    transform: translateY(-2px);
}

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

/* Header & Navbar */
header.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
}

header.site-header.sticky {
    position: fixed;
    background-color: var(--primary);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

header.site-header.sticky .navbar-container {
    padding: 0.15rem 1.5rem;
}

@media (min-width: 993px) {
    header.site-header.sticky .header-logo img {
        height: 70px;
    }
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1.5rem;
    width: 100%;
    transition: var(--transition-smooth);
}


/* 3-Column Header Layout */
.header-col {
    display: flex;
    align-items: center;
}
.header-col-left {
    flex: 1;
    justify-content: flex-start;
}
.header-col-center {
    flex: 0 0 300px; /* Exact width constraint for centered logo */
    justify-content: center;
}
.header-col-right {
    flex: 1;
    justify-content: flex-end;
}

.nav-desktop {
    display: flex;
    align-items: center;
}

/* Centered Logo */
.header-logo {
    display: flex;
    align-items: center;
}
.header-logo img {
    height: 140px;
    width: auto;
    transition: var(--transition-smooth);
}

/* Desktop Menu Layout */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.2rem;
}
.nav-menu li {
    position: relative;
}
.nav-menu li .dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 12px); /* Spaced floating margin below navigation link */
    left: 0;
    background-color: var(--primary);
    min-width: 260px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    list-style: none;
    padding: 0.5rem 0;
    border-radius: 6px;
    z-index: 1000;
    border: 1px solid rgba(255,255,255,0.08);
}
/* Hover bridge to prevent menu from closing when crossing the gap */
.nav-menu li .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    width: 100%;
    height: 12px;
    background: transparent;
}
.nav-menu li:hover .dropdown-menu {
    display: block;
}
.dropdown-menu li {
    width: 100%;
    padding: 0 0.5rem; /* Margins on the sides of the hover card */
    margin-bottom: 3px;
}
.dropdown-menu li:last-child {
    margin-bottom: 0;
}
.dropdown-menu li a {
    display: block;
    padding: 0.65rem 1rem; /* Spaced padding inside menu items */
    color: rgba(255,255,255,0.85) !important;
    font-size: 0.88rem;
    font-weight: 500;
    border-bottom: none !important;
    text-align: left;
    border-radius: 4px; /* Rounded hover background */
    transition: var(--transition-smooth);
}
.dropdown-menu li a:hover {
    background-color: rgba(255,255,255,0.08);
    color: var(--accent) !important;
}
.nav-menu li a {
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}
.nav-menu li a:hover, .nav-menu li.active a {
    color: #ffffff;
    border-bottom-color: var(--accent);
}

/* Header Right Area */
.header-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    z-index: 1001;
}
.header-contact-phone {
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 600;
}
.lang-selector {
    display: flex;
    gap: 0.5rem;
}
.lang-flag {
    cursor: pointer;
    font-size: 1.25rem;
    opacity: 0.6;
    transition: var(--transition-smooth);
}
.lang-flag.active, .lang-flag:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Mobile Menu Button */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1001;
}
.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 5px 0;
    transition: var(--transition-smooth);
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: #000;
    z-index: 1; /* Isolates the slide items stacking context */
}
.slide-track {
    height: 100%;
    width: 100%;
}
.slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slide-item.active {
    opacity: 1;
    z-index: 1;
}
.slide-item picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.slide-item picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slide-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.35);
    z-index: 1;
}
.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 1.5rem;
}
.slide-content h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.slide-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

/* Slider Controls */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0,0,0,0.3);
    border: none;
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}
.slider-nav:hover {
    background: var(--accent);
}
.slider-prev { left: 20px; }
.slider-next { right: 20px; }

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.75rem;
}
.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.slider-dot.active {
    background-color: var(--accent);
    width: 25px;
    border-radius: 6px;
}

/* Inner Banner */
.inner-banner {
    position: relative;
    height: 45vh;
    min-height: 380px; /* Expanded min-height for vertical breathing room */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    padding-top: 140px; /* Pushes the title & breadcrumbs down below the large 120px logo */
}
.inner-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.45);
}
.inner-banner-content {
    position: relative;
    z-index: 2;
}
.inner-banner-content h1 {
    color: #ffffff;
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}
.breadcrumbs {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}
.breadcrumbs a {
    color: rgba(255,255,255,0.8);
}
.breadcrumbs a:hover {
    color: var(--accent);
}

/* Cards & Grid Layouts */
.section-title-wrap {
    margin-bottom: 3.5rem;
}
.section-title-wrap p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

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

.card-item {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.01);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}
.card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}
.card-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.card-item:hover .card-img-wrap img {
    transform: scale(1.05);
}
.card-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.card-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}
.card-info p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Galleries & Lightbox */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}
.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    border: 1px solid var(--border-color);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(27,67,50,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay span {
    color: #ffffff;
    font-size: 2rem;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}
.lightbox-content {
    max-width: 90%;
    max-height: 80%;
}
.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 4px;
}
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #ffffff;
    font-size: 2.5rem;
    cursor: pointer;
}

/* Contact & Forms */
.contact-layout {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}
.contact-info-block {
    flex: 1;
    min-width: 300px;
}
.contact-form-block {
    flex: 2;
    min-width: 300px;
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.info-item {
    margin-bottom: 2rem;
}
.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.info-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.form-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.form-col {
    flex: 1;
    min-width: 200px;
}
.form-field {
    margin-bottom: 1.5rem;
}
.form-field label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.form-input, select, textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.95rem;
}
.form-input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.map-container {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    margin-top: 2rem;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer Section */
footer.site-footer {
    background-color: var(--primary);
    color: #ffffff;
    padding: 5rem 0 2rem;
    font-size: 0.9rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 3rem;
    margin-bottom: 2rem;
}
.footer-col h4 {
    color: #ffffff;
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--accent);
    padding-left: 0.75rem;
}
.footer-col p {
    color: rgba(255,255,255,0.75);
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 0.75rem;
}
.footer-col ul li a {
    color: rgba(255,255,255,0.75);
}
.footer-col ul li a:hover {
    color: var(--accent);
}

.footer-newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}
.footer-newsletter-input {
    flex-grow: 1;
    padding: 0.6rem 0.8rem;
    border: 1px solid rgba(255,255,255,0.15);
    background-color: rgba(255,255,255,0.05);
    border-radius: 6px;
    color: #ffffff;
}
.footer-newsletter-input::placeholder {
    color: rgba(255,255,255,0.4);
}
.footer-newsletter-btn {
    background-color: var(--accent);
    border: none;
    padding: 0.6rem 1rem;
    color: #ffffff;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}
.footer-newsletter-btn:hover {
    background-color: var(--accent-hover);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.82rem;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom-links a {
    color: rgba(255,255,255,0.6);
    margin-left: 1rem;
}
.footer-bottom-links a:hover {
    color: var(--accent);
}

/* Mobile Navigation Drawer (Hidden on Desktop) */
.mobile-nav-drawer {
    display: none !important;
}

/* Responsiveness */
@media (max-width: 992px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    
    .hamburger {
        display: block;
    }
    
    .nav-desktop {
        display: none !important;
    }
    
    /* Header layout changes */
    .header-col-left {
        display: none !important;
    }
    .header-col-right {
        display: none !important;
    }
    .header-col-center {
        flex: 1;
        justify-content: center;
        margin: 0 auto;
    }
    .header-logo {
        margin: 0 auto;
    }
    .header-logo img {
        height: 70px;
        display: block;
    }
    .hamburger {
        display: block;
        position: absolute;
        right: 1.5rem;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
    }
    .inner-banner {
        padding-top: 100px;
        min-height: 280px;
    }
    
    .mobile-nav-drawer {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--primary);
        z-index: 1000;
        transition: var(--transition-smooth);
        padding: 5rem 2rem 2rem 2rem;
        box-shadow: -5px 0 25px rgba(0,0,0,0.25);
        overflow-y: auto;
        display: block !important;
    }
    .mobile-nav-drawer.active {
        right: 0;
    }
    .mobile-menu {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .mobile-menu li a {
        color: rgba(255,255,255,0.9);
        font-size: 1.1rem;
        font-weight: 600;
        display: block;
        padding: 0.25rem 0;
    }
    .mobile-menu-parent {
        border-bottom: 1px solid rgba(255,255,255,0.05);
        padding-bottom: 0.5rem !important;
    }
    .mobile-submenu {
        list-style: none;
        padding-left: 1rem;
        margin-top: 0.5rem;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .mobile-submenu li a {
        color: rgba(255,255,255,0.65) !important;
        font-size: 0.92rem;
        font-weight: 500;
    }
    .mobile-submenu li a:hover {
        color: var(--accent) !important;
    }
    
    .header-right {
        display: none !important; /* Embedded in mobile menu instead */
    }
    
    .slide-content h2 {
        font-size: 2.5rem;
    }
    .slide-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .section-padding {
        padding: 3.5rem 0;
    }
    .slide-content h2 {
        font-size: 2rem;
    }
    .footer-newsletter-form {
        flex-direction: column;
    }
}

/* Pousada Suites Cards Grid */
.lead-intro {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}
.section-desc {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}
.suites-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
}
@media (max-width: 992px) {
    .suites-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .suites-grid {
        grid-template-columns: 1fr;
    }
}
.suite-card {
    background-color: var(--bg-light);
    border-radius: 8px;
    padding: 1.75rem;
    border-left: 4px solid var(--accent);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.suite-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    background-color: var(--bg-white);
}
.suite-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    display: inline-block;
}
.suite-card h3 {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}
.suite-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.5;
}
.footer-note {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-top: 2rem;
    color: var(--text-dark);
}

/* Restaurant Page Custom Layout Styles */
.restaurant-hero-intro {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--primary);
    font-weight: 500;
    max-width: 900px;
    margin: 0 auto 3rem auto;
    text-align: center;
}
.restaurant-row {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
}
.restaurant-row.reverse {
    flex-direction: row-reverse;
}
.restaurant-col-img {
    flex: 1;
    min-width: 300px;
}
.restaurant-col-content {
    flex: 1.2;
}
.restaurant-image-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 3px solid var(--bg-white);
    transition: var(--transition-smooth);
}
.restaurant-image-card:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.restaurant-image-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.restaurant-features-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.restaurant-feature-card {
    background-color: var(--bg-light);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    border-left: 4px solid var(--accent);
    transition: var(--transition-smooth);
}
.restaurant-feature-card:hover {
    background-color: var(--bg-white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
}
.restaurant-feature-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.35rem;
}
.restaurant-feature-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.5;
}
.restaurant-section-title {
    font-size: 1.6rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
}
.restaurant-external-features {
    background-color: var(--bg-light);
    border-radius: 12px;
    padding: 3rem;
    margin-top: 4rem;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.02);
}
.restaurant-external-features h3 {
    text-align: center;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.6rem;
    margin-bottom: 2rem;
}
.restaurant-external-features p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}
.restaurant-external-features p:last-child {
    margin-bottom: 0;
}
.restaurant-cta-text {
    font-weight: 600;
    color: var(--accent);
}

@media (max-width: 992px) {
    .restaurant-row, .restaurant-row.reverse {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    .restaurant-external-features {
        padding: 2rem;
    }
}

/* Leisure Area Page Custom Layout Styles */
.lazer-hero-intro {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--primary);
    font-weight: 500;
    max-width: 900px;
    margin: 0 auto 3rem auto;
    text-align: center;
}
.lazer-row {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
}
.lazer-row.reverse {
    flex-direction: row-reverse;
}
.lazer-col-img {
    flex: 1;
    min-width: 300px;
}
.lazer-col-content {
    flex: 1.2;
}
.lazer-image-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 3px solid var(--bg-white);
    transition: var(--transition-smooth);
}
.lazer-image-card:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.lazer-image-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.lazer-features-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.lazer-feature-card {
    background-color: var(--bg-light);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    border-left: 4px solid var(--accent);
    transition: var(--transition-smooth);
}
.lazer-feature-card:hover {
    background-color: var(--bg-white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
}
.lazer-feature-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.35rem;
}
.lazer-feature-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.5;
}
.lazer-section-title {
    font-size: 1.6rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.lazer-structures-title {
    text-align: center;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.8rem;
    margin: 4rem 0 2.5rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.lazer-structures-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}
.lazer-structure-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}
.lazer-structure-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}
.lazer-structure-img {
    height: 240px;
    overflow: hidden;
}
.lazer-structure-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lazer-structure-info {
    padding: 1.75rem;
}
.lazer-structure-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}
.lazer-structure-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}
.lazer-closing-desc {
    background-color: var(--bg-light);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-top: 4rem;
    border-top: 3px solid var(--accent);
}

@media (max-width: 992px) {
    .lazer-row, .lazer-row.reverse {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    .lazer-structures-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Premium Static Hero Banner Styling */
.hero-static-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 180px; /* Offset to clear the floating header logo */
}

.hero-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.25);
    margin-bottom: 1.5rem;
}
.hero-static-content h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    color: #ffffff;
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.4);
    line-height: 1.1;
}
.hero-divider {
    width: 80px;
    height: 4px;
    background-color: var(--accent);
    margin: 1.5rem 0;
    border-radius: 2px;
}
.hero-static-content h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: #ffffff;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero-static-content p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
    max-width: 650px;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-glow {
    position: relative;
    box-shadow: 0 0 20px rgba(45, 106, 79, 0.4);
    transition: var(--transition-smooth);
}
.btn-glow:hover {
    box-shadow: 0 0 30px rgba(45, 106, 79, 0.7), 0 5px 15px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}
.btn-outline-white {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.btn-outline-white:hover {
    background-color: #ffffff;
    color: var(--primary);
    transform: translateY(-2px);
}
.slide-item::after {
    background: linear-gradient(to top, rgba(16,40,30,0.85) 0%, rgba(0,0,0,0.2) 65%, rgba(0,0,0,0.4) 100%) !important;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-static-content h1 {
        font-size: 2.8rem;
    }
    .hero-static-content h2 {
        font-size: 1.6rem;
    }
    .hero-static-content p {
        font-size: 1.05rem;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: all 0.3s ease-in-out;
}
.whatsapp-float img {
    width: 32px;
    height: 32px;
    display: block;
}
.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    background-color: #128c7e;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25d366;
    opacity: 0.4;
    z-index: -1;
    animation: wppPulse 2s infinite;
}

@keyframes wppPulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Reservations Page Form Premium Styling */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3.5rem;
    align-items: start;
    margin-top: 2rem;
}
.contact-info-block {
    padding-right: 1.5rem;
}
.contact-info-block h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 800;
    position: relative;
    padding-bottom: 0.5rem;
}
.contact-info-block h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--accent); /* Orange accent line */
    border-radius: 2px;
}
.contact-form-block {
    background-color: #fafbfb;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(27,67,50,0.1);
    border-top: 5px solid var(--accent); /* Orange top border */
}
.contact-form-block form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.form-row {
    display: flex;
    gap: 1.5rem;
}
.form-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 0; /* Prevents overflow */
}
.contact-form-block label {
    font-weight: 700;
    color: var(--primary); /* Green label text */
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}
.contact-form-block label strong, 
.contact-form-block label span.required-star {
    color: var(--accent); /* Orange asterisk */
}
.contact-form-block .form-input {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border: 1.5px solid #d0d7d5;
    background-color: #ffffff;
    border-radius: 8px;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.25s ease;
    outline: none;
}
.contact-form-block .form-input:focus {
    border-color: var(--primary); /* Green border on focus */
    box-shadow: 0 0 0 4px rgba(217, 103, 4, 0.18); /* Orange focus glow */
    background-color: #fff;
}
.contact-form-block select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231B4332' d='M10.6 3.4L6 8 1.4 3.4l-.8.8L6 9.6l5.4-5.4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.1rem center;
    background-size: 12px;
    padding-right: 2.5rem;
    cursor: pointer;
}
.contact-form-block textarea.form-input {
    resize: vertical;
    min-height: 120px;
}
.contact-form-block .btn-primary {
    background-color: var(--primary); /* Green submit button */
    border: 2px solid var(--primary);
    color: #ffffff;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(27,67,50,0.15);
}
.contact-form-block .btn-primary:hover {
    background-color: var(--accent); /* Orange hover color */
    border-color: var(--accent);
    box-shadow: 0 6px 20px rgba(217, 103, 4, 0.3);
    transform: translateY(-2px);
}

.info-item {
    background-color: #f4f7f5;
    border-left: 4px solid var(--primary);
    padding: 1.25rem 1.5rem;
    border-radius: 0 8px 8px 0;
    margin-bottom: 1.5rem;
}
.info-item h4 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}
.info-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-info-block {
        padding-right: 0;
    }
    .contact-form-block {
        padding: 2rem 1.5rem;
    }
    .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Ken Burns Cycling Slideshow Styles */
.banner-images-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.banner__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
    z-index: 1;
}
.banner__img.active {
    opacity: 1;
    z-index: 2;
    transition: opacity 1.5s ease-in-out;
}
.hero-slider.loaded .banner__img.active {
    transform: scale(1.15);
    transition: opacity 1.5s ease-in-out, transform 6s linear;
}

/* Lightbox Modal Navigation Arrow Styles */
.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2010;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    flex-shrink: 0;
}
.lightbox-arrow:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
    transform: translateY(-50%) scale(1.1);
}
.lightbox-arrow-left {
    left: 40px;
}
.lightbox-arrow-right {
    right: 40px;
}
@media (max-width: 768px) {
    .lightbox-arrow {
        width: 45px;
        height: 45px;
    }
    .lightbox-arrow-left {
        left: 15px;
    }
    .lightbox-arrow-right {
        right: 15px;
    }
}






