:root {
    --bg-color: #FFFAF0;
    --text-color: #1a1a1a;
    --accent: #0071e3;
    --accent-hover: #0077ED;
    --card-bg: rgba(0, 0, 0, 0.03);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    text-transform: uppercase;
}

html {
    font-size: 16px;
}

@media (max-width: 768px) {
    html { font-size: 14px; }
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 250, 240, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 100;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 77px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.logo-text {
    font-family: 'Futura', sans-serif;
    color: var(--text-color);
    font-size: 1.6rem;
    font-weight: 500;
    margin-left: 1rem;
    white-space: nowrap;
}

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

/* Nav Toggle (Hamburger) */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.nav-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

@media (max-width: 992px) {
    .nav-toggle {
        display: flex;
    }
}

.nav-links > a,
.dropdown {
    margin-left: 2rem;
}

.nav-links a {
    color: #666666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-links > a:first-child {
    font-weight: 700;
}

.nav-links a:hover {
    color: var(--text-color);
}

/* Dropdown menü CSS */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    display: inline-flex;
    align-items: center;
}

.dropbtn::after {
    content: '▾';
    font-size: 0.8em;
    margin-left: 5px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(255, 250, 240, 0.95);
    min-width: 280px;
    box-shadow: 0px 8px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 12px;
    padding: 0.5rem 0;
    z-index: 101;
    top: calc(100% + 1rem);
    left: 0;
    backdrop-filter: blur(10px);
}

/* Híd elem az egér mozgatásához */
.dropdown-content::before {
    content: '';
    position: absolute;
    top: -1.5rem;
    left: 0;
    width: 100%;
    height: 1.5rem;
}

.dropdown-content a {
    color: #555555;
    padding: 0.8rem 1.5rem;
    display: block;
    margin-left: 0;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-content a:hover {
    background-color: #E7EAE5;
    color: var(--text-color);
}

@media (min-width: 993px) {
    .dropdown:hover .dropdown-content {
        display: block;
        animation: fadeIn 0.2s ease-out forwards;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobil Menü Felülírások - A sorrend miatt ide kell kerülnie */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--bg-color);
        flex-direction: column;
        justify-content: flex-start; /* Fentről induljon a tartalom */
        align-items: center;
        gap: 2rem;
        transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.05);
        z-index: 1000;
        padding: 6rem 2rem 2rem; /* Hely a logónak és görgethetőség */
        overflow-y: auto; /* Ha túl hosszú a menü */
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links > a, .dropdown {
        margin-left: 0;
        width: 100%;
        text-align: center;
        flex-shrink: 0; /* Ne menjen össze */
    }

    .dropdown-content {
        position: static !important;
        width: 100% !important;
        display: none;
        box-shadow: none !important;
        background: rgba(0,0,0,0.03) !important;
        padding: 1rem 0 !important;
        border: none !important;
        animation: none !important;
        border-radius: 0 !important;
        transform: none !important;
    }

    .dropdown.active .dropdown-content {
        display: block;
        visibility: visible;
        opacity: 1;
    }

    .nav-toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
}

.btn-primary {
    background-color: var(--text-color);
    color: var(--bg-color) !important;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #598F7A;
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-color) !important;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    border: 1px solid var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background-color: var(--text-color);
    color: #ffffff !important;
}

.footer-cta-btn {
    color: #1a1a1a !important;
}

.footer-cta-btn:hover {
    color: #ffffff !important;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8rem 2rem 2rem;
}

.hero-container {
    max-width: 1350px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content.text-center {
    text-align: center;
    width: 100%;
}

.hero-content.text-center p {
    margin-left: auto;
    margin-right: auto;
}

.hero-image-wrapper {
    flex: 2;
    min-width: 400px;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

@media (max-width: 1200px) {
    .hero-image-wrapper { min-width: 300px; }
}

@media (max-width: 480px) {
    .hero-image-wrapper { min-width: 100%; }
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.8s ease;
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.05); /* very sublime elegant effect */
}

@media (max-width: 800px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        margin-top: 4rem;
    }
    .hero-content {
        text-align: center;
    }
}

.hero h1 {
    font-size: clamp(2.2rem, 8vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(90deg, #6b8f71, #9aab9a, #7a8a7a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: #555555;
    margin: 0 0 2.5rem 0;
    line-height: 1.6;
}

@media (max-width: 800px) {
    .hero p {
        margin: 0 auto 2.5rem auto;
    }
}

.btn-large {
    display: inline-block;
    background-color: var(--text-color);
    color: var(--bg-color);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-large:hover {
    transform: scale(1.05);
    background-color: #598F7A;
}

/* Feature Section */
.feature-section {
    padding: 4rem 2rem;
    background-color: #96AB95;
    color: #000000;
}

.feature-section > * {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.feature-text {
    text-align: center;
    margin-bottom: 5rem;
}

.feature-text h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.feature-text p {
    color: #000000;
    font-size: 1.2rem;
}

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

.card {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: clamp(1.5rem, 5vw, 3rem) clamp(1rem, 3vw, 2rem);
    transition: transform 0.4s ease, background 0.4s ease;
}

@media (max-width: 768px) {
    .cards-container {
        grid-template-columns: 1fr;
        justify-items: center;
        width: 100% !important;
        max-width: 100% !important;
    }

    .card {
        justify-self: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100%;
        max-width: 450px;
    }
}

/* Új reszponzív segédosztály vízszintes dobozokhoz */
.info-box-stack {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 2rem;
    width: 100%;
    margin: 0;
    text-align: left !important;
}

/* Reset margin for desktop to prevent centering drift */
.info-box-stack div[style*="width: 80px"],
.info-box-stack div[style*="width: 144px"] {
    margin: 0 !important;
    margin-right: 2rem !important; /* Force a gap even if the flex gap fails */
}

@media (max-width: 768px) {
    .info-box-stack {
        flex-direction: column !important;
        text-align: center !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 1.5rem !important;
        padding: 2.5rem 1.5rem !important;
        width: 100% !important;
    }
    
    .info-box-stack div[style*="width: 80px"],
    .info-box-stack div[style*="width: 144px"] {
        margin: 0 auto !important;
        margin-right: auto !important;
    }
}


.card:hover {
    transform: translateY(-12px) scale(1.04) !important;
    background: rgba(255, 255, 255, 1) !important;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15) !important;
    z-index: 5;
}

.card h3 {
    font-size: 1.44rem;
    margin-bottom: 1rem;
}

.card p {
    color: #000000;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.price {
    display: inline-block;
    color: #000000;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.price:hover {
    background-color: #FEFEFA;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Booking Section */
.booking-section {
    text-align: center;
    padding: 4rem 2rem;
    background: #F0EFE7;
}

.booking-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.booking-section p {
    color: #555555;
    margin-bottom: 3rem;
}

.dummy-calendar {
    max-width: 800px;
    margin: 0 auto;
    height: 400px;
    border: 1px dashed rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(0, 0, 0, 0.3);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

/* Footer */
footer {
    text-align: center;
    padding: 4rem 2rem;
    color: #6e6e73;
    font-size: 0.9rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #F0EFE7;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-links a {
    color: #6e6e73;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .booking-section { padding: 4rem 1rem; }
    .footer-links {
        flex-direction: column;
        gap: 1.2rem;
    }
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.footer-bottom .footer-social {
    margin-bottom: 0;
}

.footer-bottom p {
    margin: 0;
    color: #6e6e73;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
}

.footer-social a {
    color: #6e6e73;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    color: #1a1a1a;
    transform: translateY(-3px);
}

/* Animations (To trigger via JS observer) */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.card-delay-1 { transition-delay: 0.1s; }
.card-delay-2 { transition-delay: 0.3s; }
.card-delay-3 { transition-delay: 0.5s; }
.card-delay-4 { transition-delay: 0.7s; }
/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 1000;
    border: 1px solid rgba(0,0,0,0.05);
}

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

.back-to-top:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.back-to-top svg {
    color: #1a1a1a;
}

/* Shopping Cart Styles */
.cart-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.cart-modal-content {
    background: white;
    width: 95%;
    max-width: 500px;
    border-radius: 24px;
    padding: clamp(1.5rem, 5vw, 2.5rem);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}




.close-cart {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6e6e73;
}

.cart-items-list {
    margin: 2rem 0;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.cart-item-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #1a1a1a;
}

.cart-item-info p {
    margin: 0.2rem 0;
    color: #6e6e73;
    font-size: 0.9rem;
}

.cart-total {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 2px solid #1a1a1a;
    display: flex;
    justify-content: space-between;
    font-size: clamp(1.1rem, 4vw, 1.3rem);
    font-weight: 700;
}

.checkout-agreement {
    margin: 2rem 0;
    font-size: 0.85rem;
    color: #444;
}

.checkout-agreement label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
    cursor: pointer;
    text-align: left;
    line-height: 1.4;
}

.checkout-agreement input[type="checkbox"] {
    flex-shrink: 0;
    margin-top: 0.2rem;
    width: 18px;
    height: 18px;
    accent-color: #1a1a1a;
}

.navbar .cart-icon-container {
    position: relative;
    margin-left: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #1a1a1a;
    color: white;
    font-size: 0.65rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: none; /* Hidden by default till items added */
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.checkout-btn {
    width: 100%;
    padding: 1.2rem;
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s;
}

.checkout-btn:disabled {
    background: #d1d1d6;
    cursor: not-allowed;
}

.checkout-btn:hover:not(:disabled) {
    transform: scale(1.02);
    background: #598F7A;
}
/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 2rem;
    right: 2rem;
    background: rgba(255, 255, 248, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 -20px 40px rgba(0,0,0,0.1);
    padding: 2.5rem;
    z-index: 9999;
    border-radius: 30px;
    transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    max-width: 1000px;
    margin: 0 auto;
}

.cookie-banner.active { bottom: 2rem; }

.cookie-header { margin-bottom: 1.5rem; }
.cookie-header h3 { margin-bottom: 0.5rem; font-size: 1.3rem; letter-spacing: 1px; }
.cookie-header p { font-size: 0.9rem; text-transform: none; color: #555; line-height: 1.5; }

.cookie-options {
    display: none;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(0,0,0,0.03);
    border-radius: 20px;
    animation: fadeIn 0.4s ease;
}

.cookie-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.cookie-option:last-child { margin-bottom: 0; }

.cookie-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #1a1a1a;
    cursor: pointer;
}

.cookie-option label {
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
}

.cookie-option span {
    font-size: 0.8rem;
    text-transform: none;
    color: #777;
    font-weight: 400;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    flex: 1;
    min-width: 160px;
}

.cookie-btn.primary { background: #1a1a1a; color: #fff; }
.cookie-btn.secondary { background: #eee; color: #1a1a1a; }
.cookie-btn.outline { background: transparent; border: 1.5px solid #1a1a1a; color: #1a1a1a; }

.cookie-btn.primary:hover { background: #598F7A; }

.cookie-btn:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }



/* --- Unified Booking Modal System --- */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    z-index: 9999; /* Higher than navbar/cookie banner */
    opacity: 0;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.modal-overlay.active { display: flex; opacity: 1; }

.booking-modal {
    background: #ffffff;
    width: 100%;
    max-width: 1000px;
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
    position: relative;
    animation: modalSlide 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes modalSlide { from { transform: translateY(40px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(0,0,0,0.05);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 15px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}
.modal-close:hover { background: rgba(0,0,0,0.1); transform: rotate(90deg) scale(1.1); }

.modal-left { width: 45%; background: #FAF9F6; padding: 4rem 3rem; border-right: 1px solid #f0f0f0; }
.modal-right { width: 55%; padding: 4rem 3rem; background: #F8F6F0; overflow-y: auto; max-height: 85vh; }

.group-status {
    padding: 1rem;
    background: #F0EFE7;
    border-radius: 15px;
    margin: 1.5rem 0;
    text-align: center;
    font-weight: 700;
    color: #1a1a1a;
    border: 1px dashed #96AB95;
}

/* Time Slots (Consultation) */
.time-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 1.5rem 0; }
.time-slot {
    padding: 0.8rem;
    background: #f5f5f5;
    border: 1px solid #eee;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s ease;
}
.time-slot:hover { background: #e8eae6; border-color: #96AB95; }
.time-slot.selected { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }
.time-slot.disabled { opacity: 0.4; cursor: not-allowed; text-decoration: line-through; }

/* Pax Selection (Group) */
.pax-selection { display: flex; gap: 15px; margin: 1.5rem 0; }
.pax-btn {
    flex: 1;
    padding: 1rem;
    background: #fdfdfd;
    border: 2px solid #eee;
    border-radius: 15px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.2s ease;
    text-align: center;
}
.pax-btn:hover:not(.disabled) { border-color: #96AB95; background: #FAF9F6; }
.pax-btn.selected { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }
.pax-btn.disabled { opacity: 0.3; cursor: not-allowed; background: #eee; }

/* Form Elements */
#booking-form-modal { margin-top: 2rem; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.6rem; font-weight: 700; font-size: 0.9rem; color: #1a1a1a; }
.form-control { width: 100%; padding: 1rem 1.2rem; border: 1.5px solid #eee; border-radius: 12px; font-family: inherit; font-size: 1rem; transition: border-color 0.3s; }
.form-control:focus { outline: none; border-color: #96AB95; }

.btn-confirm { width: 100%; padding: 1.2rem; background: #1a1a1a; color: #fff; border: none; border-radius: 15px; font-weight: 800; cursor: pointer; text-transform: uppercase; margin-top: 1rem; letter-spacing: 1px; transition: all 0.3s ease; }
.btn-confirm:hover { background: #598F7A; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.btn-confirm:disabled { background: #ccc; cursor: not-allowed; transform: none; }

/* --- Calendar Highlighting --- */
.litepicker .container__days .day-item.date-available {
    background-color: #E7EAE5 !important;
    color: #2e7d32 !important;
    font-weight: 800 !important;
    border: 2px solid #96AB95 !important;
}

.litepicker .container__days .day-item.date-full {
    background-color: #ffebee !important;
    color: #c62828 !important;
    cursor: not-allowed !important;
    opacity: 0.7;
}

.litepicker .container__days .day-item.is-locked.date-available,
.litepicker .container__days .day-item.is-locked.date-full {
    pointer-events: auto !important; /* Allow hover/interaction even if locked by Litepicker logic */
}

@media (max-width: 950px) {
    .booking-modal { flex-direction: column; overflow-y: auto; max-height: 90vh; }
    .modal-left, .modal-right { width: 100%; padding: 2.5rem; }
    .modal-left { border-right: none; border-bottom: 1px solid #f0f0f0; }
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   1200px - Large monitors / small laptops
   992px  - Tablets landscape / hamburger menu trigger
   768px  - Tablets portrait
   480px  - Mobile phones
   ========================================================================== */

/* --- Large monitors → smaller laptops --- */
@media (max-width: 1200px) {
    .hero-container { gap: 3rem; }
}

/* --- Tablet portrait & below --- */
@media (max-width: 768px) {
    .navbar { padding: 1rem !important; }
    .logo-img { height: 55px !important; }
    .logo-text { font-size: 1.2rem !important; }

    .hero {
        padding-top: 7rem !important;
        padding-bottom: 2rem !important;
        min-height: auto !important;
    }

    section {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .feature-text { margin-bottom: 3rem; }

    .booking-section { padding: 4rem 1rem; }

    .footer-links {
        flex-direction: column;
        gap: 1.2rem !important;
    }
    .footer-social { gap: 1rem !important; }

    /* Cookie banner */
    .cookie-banner { left: 1rem; right: 1rem; padding: 1.5rem; }
    .cookie-buttons { flex-direction: column; }
    .cookie-btn { width: 100%; min-width: auto; }

    /* Booking modal */
    .modal-overlay { padding: 1rem; }
    .modal-left, .modal-right { padding: 2rem 1.5rem !important; }

    /* Time slots: 2 columns on tablet instead of 3 */
    .time-slots { grid-template-columns: repeat(2, 1fr); }

    /* Contact page adjustments */
    .profile-frame { width: 160px; height: 160px; }
    .contact-form-section { padding: 2rem 1.5rem !important; }
}

/* --- Mobile phones --- */
@media (max-width: 480px) {
    .logo-text { display: block !important; font-size: 1.1rem !important; margin-left: 0.5rem !important; }
    .logo-img { height: 60px !important; }

    .hero h1 { font-size: 1.8rem !important; }

    section {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .card { padding: 1.5rem 1rem !important; }

    .btn-large {
        width: 100% !important;
        text-align: center !important;
        padding: 0.9rem 1.5rem !important;
    }

    /* Contact page */
    .profile-frame { width: 130px; height: 130px; }
    .contact-form-section { padding: 1.5rem 1rem !important; }
    .contact-form-section h2 { font-size: 1.5rem; }

    /* Booking modal */
    .modal-left, .modal-right { padding: 1.5rem 1rem !important; }
    .time-slots { grid-template-columns: repeat(2, 1fr); }
    .pax-selection { flex-direction: column; }
    .pax-btn { width: 100%; }

    /* Cart modal */
    .cart-modal-content {
        padding: 1.5rem 1rem !important;
        border-radius: 18px;
    }
}

/* Kisokos Interaction */
.kisokos-stack {
    position: relative;
    width: 100%;
    max-width: 460px;
    height: auto;
    cursor: pointer;
}

.kisokos-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
    transform-origin: bottom center;
}

.kisokos-cover-container {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    z-index: 10;
    background: white;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* Hover States */
.kisokos-stack:hover .layer-1 {
    transform: rotate(18deg) translateY(25px) translateX(15px);
}

.kisokos-stack:hover .layer-2 {
    transform: rotate(9deg) translateY(12px) translateX(8px);
}

.kisokos-stack:hover .layer-3 {
    transform: rotate(-9deg) translateY(12px) translateX(-8px);
}

.kisokos-stack:hover .kisokos-cover-container {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

/* History Carousel */
.carousel-container {
    max-width: 1170px;
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    background: #ffffff;
}

.carousel-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    width: 100%;
}

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 90vh;
    min-height: 650px;
    object-fit: cover;
    display: block;
}

/* Carousel Text Overlay */
.carousel-slide {
    position: relative;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
    width: auto;
    max-width: 85%;
}

.carousel-caption.caption-left {
    left: 0;
    text-align: left;
    animation: slideInLeft 0.8s ease-out;
}

.carousel-caption.caption-right {
    right: 0;
    text-align: right;
    animation: slideInRight 0.8s ease-out;
}

.carousel-caption h3 {
    margin: 0;
    font-size: clamp(1.4rem, 3.5vw, 2.2rem);
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 2px;
    text-transform: uppercase;
    background-color: #E7EAE5;
    color: #1a1a1a;
    padding: 1.2rem 2.5rem;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.carousel-caption.caption-left h3 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    border-radius: 0 15px 15px 0;
}

.carousel-caption.caption-right h3 {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
    border-radius: 15px 0 0 15px;
    text-align: right;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translate(-50px, -50%); }
    to { opacity: 1; transform: translate(0, -50%); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translate(50px, -50%); }
    to { opacity: 1; transform: translate(0, -50%); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, 20px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

/* Carousel Mobile Adjustments */
@media (max-width: 768px) {
    .carousel-caption {
        width: 90% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        text-align: center !important;
    }
    
    .carousel-caption.caption-left, 
    .carousel-caption.caption-right {
        left: 50% !important;
        right: auto !important;
    }

    .carousel-caption h3 {
        padding: 0.8rem 1.2rem !important;
        font-size: 1.1rem !important;
        border-radius: 12px !important;
        width: 100%;
    }

    .carousel-caption.caption-left h3,
    .carousel-caption.caption-right h3 {
        padding: 0.8rem 1.2rem !important;
        border-radius: 12px !important;
    }
}
