@import url('https://fonts.googleapis.com/css2?family=Jockey+One&display=swap');

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

body {
    font-family: 'Jockey One', Helvetica, Arial, sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 14px;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: #000000;
    padding: 1rem 5%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #7cda24;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.header-logo {
    height: 60px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 3px;
}

.logo-subtitle {
    font-size: 0.7rem;
    font-weight: normal;
    letter-spacing: 6px;
    color: #fff;
    display: block;
    margin-top: 0.2rem;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: #7cda24;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links .admin-link {
    color: #555;
    font-size: 1.2rem;
    padding: 0 0.5rem;
    transition: color 0.3s;
}

.nav-links .admin-link:hover {
    color: #7cda24;
}

/* Parallax Sections */
.parallax {
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.lounge .parallax-overlay {
    background: rgba(0, 0, 0, 0.2);
}

/* About section - green tinted overlay */
.about .parallax-overlay {
    background: linear-gradient(rgba(40, 80, 20, 0.3), rgba(40, 80, 20, 0.4));
}

/* Hero Section - isolated stacking context */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 5% 4rem;
    position: relative;
    overflow: hidden;
    background-color: #000;
    isolation: isolate; /* Create new stacking context */
    z-index: 10; /* Above other sections */
}

/* Hero background image layer */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/IMG_0150-scaled.jpeg');
    background-position: center;
    background-size: cover;
    background-attachment: scroll; /* NOT fixed - avoids conflicts */
    z-index: -2;
}

/* Hero overlay - 65% dark with diagonal line pattern */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.1) 2px,
            rgba(0, 0, 0, 0.1) 4px
        ),
        rgba(0, 0, 0, 0.65);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.award-badge {
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
}

.hero-tagline {
    color: #fff;
    font-size: 1.1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Logo with White Gradient Circle Background */
.hero-logo {
    max-width: 350px;
    width: 80%;
    height: auto;
    margin-bottom: 1rem;
    padding: 2rem;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0.4) 100%);
    border-radius: 50%;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.award-badge {
    background: #7cda24;
    color: #000;
    padding: 0.8rem 1.5rem;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    border-radius: 5px;
    animation: buzz 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(124, 218, 36, 0.5);
}

@keyframes buzz {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(124, 218, 36, 0.5);
    }
    25% {
        transform: scale(1.02) rotate(0.5deg);
        box-shadow: 0 0 30px rgba(124, 218, 36, 0.8);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 0 40px rgba(124, 218, 36, 1);
    }
    75% {
        transform: scale(1.02) rotate(-0.5deg);
        box-shadow: 0 0 30px rgba(124, 218, 36, 0.8);
    }
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #7cda24 !important;
    color: #000 !important;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    border: 2px solid #7cda24 !important;
    transition: all 0.3s;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 1rem;
}

.cta-button:hover {
    background: transparent;
    color: #7cda24;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.cta-button.secondary {
    background: transparent;
    color: #7cda24;
    border: 2px solid #7cda24;
}

.cta-button.secondary:hover {
    background: #7cda24;
    color: #000;
}

/* Section Styles */
section {
    min-height: 100vh;
    padding: 4rem 5%;
    border-bottom: 1px solid #222;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h2 {
    font-family: 'Jockey One', Helvetica, Arial, sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #7cda24;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
}

.section-subtitle {
    text-align: center;
    color: #999;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Section */
.about {
    background-image: url('../img/DSC01003-scaled.jpg');
}

.about-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.about-lead {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #fff;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.about-lead strong {
    color: #7cda24;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.highlight-box {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #7cda24;
    border-radius: 10px;
    padding: 2rem 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.highlight-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(124, 218, 36, 0.3);
}

.highlight-icon {
    font-size: 2.5rem;
    color: #7cda24;
    margin-bottom: 1rem;
}

.highlight-box h3 {
    color: #7cda24;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight-box p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
}

.about-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: #fff;
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 2rem;
    border-left: 4px solid #7cda24;
    background: rgba(124, 218, 36, 0.1);
    text-align: left;
    line-height: 1.8;
}

.quote-author {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    color: #7cda24;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .about-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-lead {
        font-size: 1.1rem;
    }

    .about-quote {
        font-size: 1rem;
        padding: 1.5rem;
    }
}

/* Menu Section */
.menu {
    background-image: url('../img/DSC01028-scaled.jpg');
    background-attachment: scroll; /* Changed from fixed to prevent bleeding */
    background-position: center;
    background-size: cover;
    justify-content: flex-start;
    padding-top: 100px;
    position: relative;
    isolation: isolate; /* Isolate stacking context */
}

.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1;
}

.menu h2,
.menu .section-subtitle,
.menu-tabs,
.menu-tab-contents {
    position: relative;
    z-index: 2;
}

/* Menu Tabs - centered */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.menu-tab {
    font-family: 'Jockey One', Helvetica, Arial, sans-serif;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #333;
    color: #000;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.menu-tab:hover {
    border-color: #7cda24;
    background: rgba(124, 218, 36, 0.3);
}

.menu-tab.active {
    background: #7cda24;
    border-color: #7cda24;
    color: #000;
}

/* Tab Contents */
.menu-tab-contents {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    flex: 1;
    overflow-y: auto;
}

.menu-tab-content {
    display: none;
    background: #fff;
    padding: 2rem 3rem;
    animation: fadeIn 0.3s ease;
    width: 100%;
}

.menu-tab-content.active {
    display: block;
    width: 100%;
}

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

.menu-grid-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.menu-grid-tabs.three-cols {
    grid-template-columns: repeat(3, 1fr);
}

.menu-grid-tabs .menu-item {
    padding: 1rem;
    border-bottom: 1px dotted #ddd;
}

.menu-grid-tabs .menu-note {
    grid-column: 1 / -1;
    margin-top: 1rem;
}

@media (max-width: 900px) {
    .menu-grid-tabs {
        grid-template-columns: 1fr;
    }
    .menu-grid-tabs.three-cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .menu-tab {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    .menu-grid-tabs.three-cols {
        grid-template-columns: 1fr;
    }
}

.menu-category {
    max-width: 1200px;
    margin: 0 auto 4rem;
    background: #fff;
    padding: 3rem;
    border: none;
    box-shadow: 0 60px 90px -20px rgba(106, 73, 52, 0.23);
}

/* Remove constraints for split layout */
.menu-category.menu-split {
    max-width: 100%;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

/* Split Menu Layout - Menu Items + Image */
.menu-split {
    display: flex;
    align-items: flex-start;
    gap: 3%;
    max-width: 100%;
    padding: 3rem 5%;
    width: 100%;
}

.menu-split .menu-content {
    flex: 0 0 65%;
    max-width: 65%;
    min-width: 0;
    background: #fff;
    padding: 3rem;
    border: none;
    box-shadow: 0 60px 90px -20px rgba(106, 73, 52, 0.23);
}

.menu-split .menu-image {
    flex: 0 0 20%;
    max-width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-split .menu-image img {
    width: 100%;
    max-width: 250px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

/* Menu left layout - menu on left, image on right */
.menu-left {
    flex-direction: row;
}

/* Menu right layout - image on left, menu on right */
.menu-right {
    flex-direction: row-reverse;
}

.menu-category h3 {
    font-family: 'Jockey One', Helvetica, Arial, sans-serif;
    color: #191d23;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: none;
    padding-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
}

.menu-category h3 span {
    color: #7cda24;
}

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

/* Menu grid - 2 columns with green divider */
.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 0;
    width: 100%;
}

.menu-item {
    padding: 0.8rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px dotted #ddd;
    transition: all 0.3s;
}

/* Left column items - green border on right */
.menu-grid .menu-item:nth-child(odd) {
    padding-right: 1.5rem;
    border-right: 1px solid #7cda24;
}

/* Right column items - padding on left */
.menu-grid .menu-item:nth-child(even) {
    padding-left: 1.5rem;
}

.menu-item:hover {
    background: rgba(124, 218, 36, 0.05);
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    gap: 1rem;
}

.item-name {
    font-family: 'Jockey One', Helvetica, Arial, sans-serif;
    font-size: 1.3rem;
    color: #000;
    font-weight: 400;
    flex: 1;
    text-transform: uppercase;
}

.item-price {
    font-family: 'Jockey One', Helvetica, Arial, sans-serif;
    color: #ff824e;
    font-weight: 400;
    font-size: 1.2rem;
    white-space: nowrap;
    text-align: right;
}

.item-description {
    font-family: 'Jockey One', Helvetica, Arial, sans-serif;
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    text-transform: uppercase;
}

/* Dietary Badges (Vegan, Vegetarian) */
.dietary-badge {
    display: inline-block;
    font-size: 1rem;
    margin-left: 0.5rem;
    vertical-align: middle;
}

/* Ingredients Display */
.item-ingredients {
    font-size: 0.8rem;
    color: #888;
    margin-top: 0.4rem;
    line-height: 1.4;
    font-style: italic;
}

.ingredients-label {
    color: #7cda24;
    font-weight: 600;
    font-style: normal;
}

/* Allergen Display */
.item-allergens {
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.3rem;
}

.allergen-label {
    font-size: 0.75rem;
    color: #999;
    margin-right: 0.3rem;
}

.allergen-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: #ff824e;
    color: #000;
    font-size: 0.7rem;
    font-weight: bold;
    border-radius: 4px;
    cursor: help;
    position: relative;
    transition: all 0.2s ease;
}

.allergen-badge:hover {
    background: #ff6b35;
    transform: scale(1.1);
}

/* Allergen Tooltip */
.allergen-badge::after {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: normal;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    margin-bottom: 5px;
    z-index: 100;
}

.allergen-badge::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    margin-bottom: -5px;
    z-index: 100;
}

.allergen-badge:hover::after,
.allergen-badge:hover::before {
    opacity: 1;
    visibility: visible;
}

.special-offer {
    background: #7cda24;
    color: #000;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
    margin-top: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Menu note text */
.menu-note {
    text-align: center;
    color: #7cda24;
    font-weight: 700;
    margin-top: 2rem;
    font-size: 1rem;
    text-transform: uppercase;
}

/* Loading state for dynamic menu */
.loading-menu {
    text-align: center;
    color: #888;
    padding: 3rem;
    font-size: 1.1rem;
}

/* Recommendations */
.recommendations {
    background-image: url('../img/jan-hamann.jpg');
    background-position: top left;
}

.recommendations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 1) 80%);
    z-index: 1;
}

.recommendations h2,
.recommendations .section-subtitle,
.recommendation-grid {
    position: relative;
    z-index: 2;
}

.recommendation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.recommendations .menu-item {
    background: #fff;
    padding: 2rem;
    border-bottom: none;
    box-shadow: 0 60px 90px -20px rgba(106, 73, 52, 0.23);
}

/* Lounge Section */
.lounge {
    background-image: url('../img/weinlounge.jpg');
}

.lounge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1;
}

.lounge h2,
.lounge .section-subtitle,
.lounge-content {
    position: relative;
    z-index: 2;
}

.lounge-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
}

.lounge-cta {
    display: inline-block;
    margin-top: 2rem;
    background: linear-gradient(135deg, #722F37, #8B1A1A);
    border: 2px solid #722F37;
}

.lounge-cta:hover {
    background: linear-gradient(135deg, #8B1A1A, #722F37);
    border-color: #fff;
    transform: translateY(-2px);
}

/* Events Section */
.events-section {
    background-image: url('../img/DSC01218-scaled.jpg');
}

.events-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.events-section h2,
.events-section .section-subtitle,
.events-content {
    position: relative;
    z-index: 2;
}

.events-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
}

.events-content a {
    color: #7cda24;
    text-decoration: none;
}

.events-content a:hover {
    color: #fff;
}

/* Catering Section */
.catering-section {
    background-image: url('../img/DSC01232-scaled.jpg');
}

.catering-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.catering-section h2,
.catering-section .section-subtitle,
.catering-content {
    position: relative;
    z-index: 2;
}

.catering-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
}

.catering-content a {
    color: #7cda24;
    text-decoration: none;
}

.catering-content a:hover {
    color: #fff;
}

/* Contact Section */
.contact {
    background-image: url('../img/hamanns-hachenburg-public.jpg');
    justify-content: flex-start;
    padding-top: 100px;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.contact-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Three Column Layout */
.contact-three-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-col {
    display: flex;
}

.contact-card {
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid #333;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.contact-card h3 {
    color: #7cda24;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1.2rem 1.5rem;
    margin: 0;
    border-bottom: 1px solid #333;
    text-align: center;
}

/* Map Embed */
.map-embed {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.card-content {
    padding: 1.2rem 1.5rem;
    text-align: center;
}

.address-line {
    color: #ccc;
    margin: 0.3rem 0;
    font-size: 0.95rem;
}

.btn-route {
    display: inline-block;
    margin-top: 1rem;
    color: #7cda24;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-route:hover {
    color: #fff;
}

/* Hours List */
.hours-list {
    padding: 0 1.5rem;
    flex: 1;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px dotted #333;
    color: #ccc;
    font-size: 0.9rem;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row .closed {
    color: #ff824e;
}

/* Contact Info Mini */
.contact-info-mini {
    padding: 1rem 1.5rem;
    border-top: 1px solid #333;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #fff;
    text-decoration: none;
    padding: 0.6rem;
    background: rgba(124, 218, 36, 0.1);
    border: 1px solid #333;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.contact-btn:hover {
    background: rgba(124, 218, 36, 0.2);
    border-color: #7cda24;
}

.contact-btn .icon {
    font-size: 1.2rem;
}

/* Social Media Buttons */
.social-media-buttons {
    padding: 0.8rem 1.5rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #fff;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border: none;
}

.social-btn.instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(225, 48, 108, 0.4);
}

.social-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.social-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.social-name {
    font-weight: bold;
    font-size: 0.95rem;
}

.social-handle {
    font-size: 0.75rem;
    opacity: 0.9;
}

.social-followers {
    margin-left: auto;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: bold;
}

/* Form Card */
.form-card {
    border: 2px solid #7cda24 !important;
}

.contact-form {
    padding: 1.2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex: 1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    font-family: 'Jockey One', Helvetica, Arial, sans-serif;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
    padding: 0.8rem 1rem;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s;
    width: 100%;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #7cda24;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #666;
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%237cda24' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-color: rgba(0, 0, 0, 0.5);
}

.contact-form textarea {
    resize: none;
    flex: 1;
    min-height: 80px;
}

.btn-submit {
    font-family: 'Jockey One', Helvetica, Arial, sans-serif;
    background: #7cda24;
    color: #000;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: auto;
}

.btn-submit:hover {
    background: #fff;
}

/* Form Success Message */
.form-success {
    text-align: center;
    padding: 2rem 1rem;
}

.form-success .success-icon {
    font-size: 3rem;
    color: #7cda24;
    margin-bottom: 1rem;
}

.form-success h3 {
    color: #7cda24;
    margin-bottom: 1rem;
}

.form-success p {
    color: #ccc;
    margin: 0.5rem 0;
}

/* Responsive */
@media (max-width: 1100px) {
    .contact-three-col {
        grid-template-columns: 1fr 1fr;
    }
    .contact-col:first-child {
        grid-column: 1 / -1;
    }
    .contact-col:first-child .contact-card {
        flex-direction: row;
    }
    .contact-col:first-child .map-embed {
        width: 50%;
        height: auto;
        min-height: 200px;
    }
    .contact-col:first-child .card-content {
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .contact-three-col {
        grid-template-columns: 1fr;
    }
    .contact-col:first-child .contact-card {
        flex-direction: column;
    }
    .contact-col:first-child .map-embed,
    .contact-col:first-child .card-content {
        width: 100%;
    }
}

/* Footer */
footer {
    background: #000;
    padding: 2rem 5%;
    text-align: center;
    color: #666;
    border-top: 1px solid #7cda24;
}

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

.footer-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
}

.footer-social-btn.instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
}

.footer-social-btn.youtube {
    background: #FF0000;
    color: #fff;
}

.footer-social-btn.youtube:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

.footer-social-btn svg {
    flex-shrink: 0;
}

/* Quality Badges / Certifications - Right Side, Vertically Centered */
.quality-badges {
    position: fixed;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 999;
    pointer-events: none;
}

.badge-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.8rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3),
                0 2px 5px rgba(124, 218, 36, 0.2);
    transition: all 0.3s ease;
    pointer-events: auto;
    border: 2px solid rgba(124, 218, 36, 0.3);
}

.badge-img:hover {
    transform: scale(1.1) translateX(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4),
                0 3px 10px rgba(124, 218, 36, 0.4);
    border-color: rgba(124, 218, 36, 0.6);
}

/* MLDL Badge - Hidden initially, shown after overlay animation */
.badge-mldl {
    opacity: 0;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.badge-mldl.visible {
    opacity: 1;
}

.badge-mldl:hover {
    transform: scale(1.1) translateX(-5px);
}

/* Play icon on MLDL badge */
.badge-mldl-wrapper {
    position: relative;
    display: inline-block;
}

.badge-mldl-wrapper .play-icon-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 32px;
    height: 32px;
    background: #7cda24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.4);
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
    pointer-events: none;
}

.badge-mldl-wrapper .play-icon-badge::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 10px solid #000;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    margin-left: 3px;
}

.badge-mldl-wrapper.visible .play-icon-badge {
    opacity: 1;
    transform: scale(1);
    animation: playIconPulse 2s ease-in-out infinite;
}

.badge-mldl-wrapper:hover .play-icon-badge {
    transform: scale(1.1);
    background: #8ef030;
}

@keyframes playIconPulse {
    0%, 100% { box-shadow: 0 2px 10px rgba(0,0,0,0.4); }
    50% { box-shadow: 0 2px 20px rgba(124, 218, 36, 0.6); }
}

/* Desktop MLDL Overlay - Fullscreen animation */
.mldl-overlay-desktop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
}

.mldl-overlay-desktop.animate {
    opacity: 1;
    animation: mldlDesktopOverlayShow 0.5s ease-out forwards;
}

.mldl-overlay-desktop.fade-out {
    animation: mldlDesktopOverlayHide 0.8s ease-in 2.5s forwards;
}

.mldl-overlay-desktop .mldl-badge-desktop {
    width: 350px;
    height: 350px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.98);
    padding: 2rem;
    border-radius: 50%;
    box-shadow: 0 0 80px rgba(124, 218, 36, 0.6);
    opacity: 0;
    transform: scale(0.3);
}

.mldl-overlay-desktop.animate .mldl-badge-desktop {
    animation:
        mldlDesktopSlideIn 0.6s ease-out forwards,
        mldlDesktopWiggle 0.6s ease 0.8s 2;
}

@keyframes mldlDesktopOverlayShow {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes mldlDesktopOverlayHide {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes mldlDesktopSlideIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(50px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes mldlDesktopWiggle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    20% { transform: scale(1.05) rotate(-4deg); }
    40% { transform: scale(1.05) rotate(4deg); }
    60% { transform: scale(1.05) rotate(-4deg); }
    80% { transform: scale(1.05) rotate(4deg); }
}

/* =====================================================
   BURGER MENU STYLES
   ===================================================== */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background: #7cda24;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* =====================================================
   MOBILE RESPONSIVE STYLES
   ===================================================== */
@media (max-width: 768px) {
    /* Burger menu visible on mobile */
    .burger-menu {
        display: flex;
    }

    /* Navigation adjustments */
    nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0.8rem 4%;
        gap: 0;
    }

    /* Logo alignment on mobile */
    .logo {
        flex: 1;
        gap: 10px;
    }

    .header-logo {
        height: 45px;
    }

    .logo-title {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }

    .logo-subtitle {
        font-size: 0.5rem;
        letter-spacing: 2px;
    }

    /* Mobile nav dropdown */
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        align-items: center;
        padding: 1.5rem 0;
        gap: 0;
        transform: translateY(-150%);
        opacity: 0;
        transition: all 0.3s ease;
        border-bottom: 2px solid #7cda24;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(124, 218, 36, 0.2);
    }

    .nav-links li:last-child a {
        border-bottom: none;
    }

    /* Hero section mobile - compact for above the fold */
    .hero {
        min-height: auto;
        padding: 80px 4% 2rem;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .award-badge {
        font-size: 0.65rem;
        padding: 0.5rem 1rem;
        margin-bottom: 0.8rem;
        letter-spacing: 1px;
    }

    .hero-logo {
        max-width: 180px;
        padding: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .hero-tagline {
        font-size: 0.85rem;
        letter-spacing: 2px;
        margin-bottom: 0.8rem;
    }

    /* Availability widget compact */
    .availability-widget {
        padding: 0.8rem;
        margin-bottom: 0.8rem;
        max-width: 100%;
    }

    .availability-header {
        margin-bottom: 0.5rem;
    }

    .availability-title {
        font-size: 0.9rem;
    }

    .availability-date {
        font-size: 0.8rem;
    }

    .availability-slots {
        gap: 0.3rem;
    }

    .avail-slot {
        min-width: 55px;
        padding: 0.4rem 0.6rem;
    }

    /* CTA button above the fold */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .cta-button {
        width: 90%;
        max-width: 320px;
        text-align: center;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
        margin-top: 0.5rem;
    }

    /* Quality badges - mobile fade out */
    .quality-badges {
        top: auto;
        bottom: 100px;
        right: 0.5rem;
        transform: none;
        gap: 0.5rem;
        animation: badgesFadeOut 3s ease-in-out forwards;
    }

    .badge-img {
        width: 55px;
        height: 55px;
        padding: 0.3rem;
        border-radius: 10px;
    }

    @keyframes badgesFadeOut {
        0% {
            opacity: 1;
        }
        70% {
            opacity: 1;
        }
        100% {
            opacity: 0;
            pointer-events: none;
        }
    }

    /* Other mobile adjustments */
    h2 {
        font-size: 1.8rem;
    }

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

    .slide-category {
        font-size: 2rem;
        bottom: 10%;
        left: 5%;
    }

    /* Stack menu split layout on mobile */
    .menu-split {
        flex-direction: column !important;
        padding: 2rem;
    }

    .menu-split .menu-content,
    .menu-split .menu-image {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }

    .menu-split .menu-image {
        margin-top: 2rem;
        order: 2;
    }

    .menu-split .menu-image img {
        max-width: 200px;
    }

    /* Menu grid back to single column on mobile - hide divider */
    .menu-grid {
        grid-template-columns: 1fr;
    }

    .menu-grid .menu-item:nth-child(odd) {
        padding-right: 0;
        border-right: none;
    }

    .menu-grid .menu-item:nth-child(even) {
        padding-left: 0;
    }

    /* Menu tabs mobile */
    .menu-tabs {
        gap: 0.3rem;
    }

    .menu-tab {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
}

/* Extra small screens */
@media (max-width: 400px) {
    .logo-title {
        font-size: 1.1rem;
    }

    .logo-subtitle {
        font-size: 0.45rem;
    }

    .header-logo {
        height: 38px;
    }

    .hero-logo {
        max-width: 150px;
        padding: 1rem;
    }

    .award-badge {
        font-size: 0.55rem;
        padding: 0.4rem 0.8rem;
    }

    .badge-img {
        width: 45px;
        height: 45px;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* =====================================================
   NEW BOOKING NOTIFICATION POPUP
   ===================================================== */

.booking-notification-popup {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(-150%);
    z-index: 9998;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 2px solid #7cda24;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(124, 218, 36, 0.3), 0 0 20px rgba(124, 218, 36, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.booking-notification-popup.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.booking-popup-content {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    padding-right: 45px;
}

.booking-popup-icon {
    font-size: 2rem;
    animation: popupBounce 0.6s ease infinite;
}

@keyframes popupBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.booking-popup-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.booking-popup-text strong {
    color: #7cda24;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.booking-popup-text span {
    color: #ccc;
    font-size: 0.9rem;
}

.booking-popup-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: transparent;
    border: none;
    color: #666;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.booking-popup-close:hover {
    color: #7cda24;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .booking-notification-popup {
        top: 70px;
        width: 90%;
        max-width: 350px;
    }

    .booking-popup-content {
        padding: 12px 15px;
        padding-right: 40px;
        gap: 12px;
    }

    .booking-popup-icon {
        font-size: 1.5rem;
    }

    .booking-popup-text strong {
        font-size: 1rem;
    }

    .booking-popup-text span {
        font-size: 0.8rem;
    }
}

/* =====================================================
   COOKIE CONSENT BANNER
   ===================================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    border-top: 2px solid #7cda24;
    padding: 1rem 2rem;
    z-index: 9999;
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-icon {
    font-size: 2rem;
}

.cookie-text {
    flex: 1;
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.5;
    min-width: 250px;
}

.cookie-text a {
    color: #7cda24;
    text-decoration: none;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 0.8rem;
}

.cookie-btn {
    font-family: 'Jockey One', Helvetica, Arial, sans-serif;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cookie-btn.accept {
    background: #7cda24;
    color: #000;
}

.cookie-btn.accept:hover {
    background: #8fef30;
}

.cookie-btn.decline {
    background: transparent;
    color: #888;
    border: 1px solid #444;
}

.cookie-btn.decline:hover {
    border-color: #888;
    color: #ccc;
}

@media (max-width: 768px) {
    /* Move cookie banner above the mobile CTA bar - ensure buttons visible */
    .cookie-banner {
        bottom: 95px;
        padding: 12px 15px;
        padding-bottom: 15px;
        /* Reset transform for mobile - use opacity/visibility instead */
        transform: none;
    }

    .cookie-banner.visible {
        transform: none;
        opacity: 1;
        visibility: visible;
    }

    /* Ensure it's fully hidden when not visible */
    .cookie-banner:not(.visible) {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .cookie-icon {
        display: none;
    }

    .cookie-text {
        font-size: 0.8rem;
        line-height: 1.3;
        margin: 0;
    }

    .cookie-buttons {
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 5px;
    }

    .cookie-btn {
        flex: 1;
        max-width: 140px;
        padding: 10px 15px;
        font-size: 0.85rem;
    }
}

@media (max-width: 600px) {
    .cookie-banner {
        bottom: 90px;
        padding: 10px 12px 12px;
    }

    .cookie-text {
        font-size: 0.75rem;
    }

    .cookie-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}

/* Mobile parallax fix - use scroll instead of fixed */
@media (max-width: 1024px) {
    .parallax {
        background-attachment: scroll;
    }
}

/* Tablet improvements - 900px to 768px */
@media (min-width: 769px) and (max-width: 900px) {
    /* Navigation adjustments */
    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    /* Hero section */
    .hero-logo {
        max-width: 280px;
    }

    .award-badge {
        font-size: 0.75rem;
        padding: 0.6rem 1.2rem;
    }

    /* Menu tabs */
    .menu-tab {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    /* Recommendation grid */
    .recommendation-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Contact section */
    .contact-three-col {
        gap: 1rem;
    }

    .contact-card h3 {
        font-size: 1.1rem;
        padding: 1rem;
    }
}

/* =====================================================
   AVAILABILITY WIDGET (Hero Section)
   ===================================================== */

.availability-widget {
    margin-bottom: 1rem;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(124, 218, 36, 0.3);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    max-width: 550px;
    backdrop-filter: blur(10px);
}

.availability-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.availability-title {
    color: #7cda24;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.availability-date {
    color: #888;
    font-size: 0.9rem;
}

.availability-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.avail-slot {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.6rem 1rem;
    border-radius: 5px;
    min-width: 70px;
    transition: all 0.2s;
    cursor: pointer;
}

.avail-slot:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 15px rgba(124, 218, 36, 0.4);
}

.avail-slot:active {
    transform: scale(0.98);
}

.avail-slot.available {
    background: rgba(124, 218, 36, 0.15);
    border: 1px solid rgba(124, 218, 36, 0.5);
}

.avail-slot.limited {
    background: rgba(255, 130, 78, 0.15);
    border: 1px solid rgba(255, 130, 78, 0.5);
}

.avail-slot.full {
    background: rgba(255, 68, 68, 0.15);
    border: 1px solid rgba(255, 68, 68, 0.3);
}

.avail-time {
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
}

.avail-status {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 3px;
}

.avail-slot.available .avail-status {
    color: #7cda24;
}

.avail-slot.limited .avail-status {
    color: #ff824e;
}

.avail-slot.full .avail-status {
    color: #ff6464;
}

.availability-closed {
    text-align: center;
    color: #ff6464;
    font-size: 1rem;
    padding: 1rem;
}

.availability-status-time {
    color: #ff9500;
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 0.5px;
}

/* Tablet availability widget */
@media (max-width: 768px) {
    .availability-widget {
        padding: 0.9rem 1.2rem;
        max-width: 100%;
    }

    .availability-header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .availability-slots {
        gap: 0.4rem;
    }

    .avail-slot {
        min-width: 65px;
        padding: 0.5rem 0.8rem;
    }

    .avail-time {
        font-size: 0.95rem;
    }

    .avail-status {
        font-size: 0.6rem;
    }
}

@media (max-width: 600px) {
    .availability-widget {
        padding: 1rem;
        margin: 1.5rem auto 0;
    }

    .avail-slot {
        min-width: 60px;
        padding: 0.5rem 0.8rem;
    }

    .avail-time {
        font-size: 0.9rem;
    }
}

/* =====================================================
   RESERVATION MODAL STYLES
   ===================================================== */

.reservation-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.reservation-modal-content {
    background: #111;
    border: 2px solid #7cda24;
    border-radius: 10px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

/* Success state - no scroll needed */
.reservation-modal-content:has(.reservation-success) {
    overflow: hidden;
    max-height: none;
}

.reservation-success {
    padding: 1.5rem 2rem 2rem;
}

.reservation-success .success-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.reservation-success h3 {
    font-size: 1.5rem;
    padding: 0;
    border: none;
    margin-bottom: 0.3rem;
}

.reservation-success .success-message {
    margin-bottom: 1rem;
}

.reservation-success .success-details {
    padding: 1rem;
    margin-bottom: 0.8rem;
}

.reservation-success .success-details p {
    margin: 0.3rem 0;
}

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

.reservation-modal-content h3 {
    font-family: 'Jockey One', Helvetica, Arial, sans-serif;
    color: #7cda24;
    font-size: 1.8rem;
    text-align: center;
    padding: 1.5rem;
    margin: 0;
    border-bottom: 1px solid #333;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.reservation-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10;
}

.reservation-close:hover {
    color: #7cda24;
}

.reservation-form {
    padding: 1.5rem;
}

/* Location Toggle - Restaurant vs Wein Lounge */
.location-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.location-btn {
    font-family: 'Jockey One', Helvetica, Arial, sans-serif;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #444;
    border-radius: 8px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.location-btn:hover {
    border-color: #7cda24;
}

.location-btn.active {
    border-color: #7cda24;
    background: rgba(124, 218, 36, 0.15);
}

.location-icon {
    font-size: 1.5rem;
}

.location-name {
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
}

.location-btn.active .location-name {
    color: #7cda24;
}

.location-desc {
    color: #888;
    font-size: 0.8rem;
}

.reservation-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.reservation-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.reservation-field label {
    color: #999;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reservation-field input,
.reservation-field select {
    font-family: 'Jockey One', Helvetica, Arial, sans-serif;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
    padding: 0.8rem 1rem;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s;
    width: 100%;
}

.reservation-field input:focus,
.reservation-field select:focus {
    outline: none;
    border-color: #7cda24;
}

.reservation-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%237cda24' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-color: rgba(0, 0, 0, 0.5);
}

/* Date Input with Calendar Icon */
.reservation-field input[type="date"] {
    cursor: pointer;
    position: relative;
}

/* Style the calendar icon */
.reservation-field input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    filter: invert(1);
    opacity: 0.7;
    font-size: 1.2rem;
    padding: 5px;
    transition: all 0.3s;
}

.reservation-field input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
    filter: invert(0.6) sepia(1) saturate(5) hue-rotate(70deg);
}

/* Date field wrapper for custom calendar icon */
.date-field-wrapper {
    position: relative;
}

.date-field-wrapper::after {
    content: '📅';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    pointer-events: none;
    opacity: 0.8;
    transition: all 0.3s;
}

.date-field-wrapper:hover::after {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.date-field-wrapper input[type="date"] {
    padding-right: 45px;
}

/* Hide default calendar icon when using wrapper */
.date-field-wrapper input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* Availability Status */
.availability-status {
    padding: 1rem;
    text-align: center;
    margin-bottom: 1rem;
    border-radius: 5px;
}

.availability-status.status-hint {
    background: rgba(255, 255, 255, 0.05);
    color: #666;
}

.availability-status.status-closed {
    background: rgba(255, 100, 100, 0.1);
    border: 1px solid rgba(255, 100, 100, 0.3);
}

.availability-status.status-closed .status-message {
    color: #ff6464;
}

.availability-status.status-unavailable {
    background: rgba(255, 200, 100, 0.1);
    border: 1px solid rgba(255, 200, 100, 0.3);
}

.availability-status.status-unavailable .status-message {
    color: #ffc864;
}

.availability-status.status-available {
    background: rgba(124, 218, 36, 0.1);
    border: 1px solid rgba(124, 218, 36, 0.3);
}

.availability-status.status-available .status-message {
    color: #7cda24;
}

.status-message {
    margin: 0;
    font-size: 1rem;
}

.status-icon {
    margin-right: 0.5rem;
}

/* Time Slots */
.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    max-height: 300px;
    overflow-y: auto;
    padding: 0.5rem;
}

.time-slot {
    font-family: 'Jockey One', Helvetica, Arial, sans-serif;
    background: rgba(124, 218, 36, 0.1);
    border: 2px solid #7cda24;
    padding: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.time-slot:hover:not(.unavailable) {
    background: rgba(124, 218, 36, 0.3);
    transform: scale(1.02);
}

.time-slot.selected {
    background: #7cda24;
    color: #000;
}

.time-slot.selected .slot-status {
    color: #000;
}

.time-slot.unavailable {
    background: rgba(100, 100, 100, 0.1);
    border-color: #444;
    cursor: not-allowed;
    opacity: 0.5;
}

.slot-time {
    font-size: 1.2rem;
    font-weight: 400;
    color: #fff;
}

.time-slot.selected .slot-time {
    color: #000;
}

.time-slot.unavailable .slot-time {
    color: #666;
}

.slot-status {
    font-size: 0.75rem;
    color: #7cda24;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.slot-status.last-table {
    color: #ff824e;
    animation: pulse 1.5s infinite;
}

.slot-status.limited {
    color: #ffc864;
}

.time-slot.unavailable .slot-status {
    color: #666;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Reservation Details Form */
.reservation-details {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
    border-radius: 5px;
    padding: 1.5rem;
    margin-top: 1rem;
    animation: fadeIn 0.3s ease;
}

.reservation-details h4 {
    color: #7cda24;
    font-size: 1.2rem;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reservation-summary {
    background: rgba(124, 218, 36, 0.1);
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.reservation-summary p {
    margin: 0.3rem 0;
    color: #ccc;
}

.reservation-summary strong {
    color: #7cda24;
}

.reservation-contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.reservation-contact-form input,
.reservation-contact-form textarea {
    font-family: 'Jockey One', Helvetica, Arial, sans-serif;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
    padding: 0.8rem 1rem;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s;
    width: 100%;
}

.reservation-contact-form input:focus,
.reservation-contact-form textarea:focus {
    outline: none;
    border-color: #7cda24;
}

.reservation-contact-form input::placeholder,
.reservation-contact-form textarea::placeholder {
    color: #666;
}

.reservation-contact-form textarea {
    resize: none;
}

/* Privacy Checkbox Styling */
.privacy-checkbox {
    margin-top: 0.5rem;
}

.privacy-checkbox .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.4;
}

.privacy-checkbox input[type="checkbox"] {
    display: none;
}

.privacy-checkbox .checkmark {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid #444;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    margin-top: 2px;
}

.privacy-checkbox input[type="checkbox"]:checked + .checkmark {
    background: #7cda24;
    border-color: #7cda24;
}

.privacy-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: #000;
    font-size: 14px;
    font-weight: bold;
}

.privacy-checkbox .checkbox-text {
    flex: 1;
}

.privacy-checkbox .checkbox-text a {
    color: #7cda24;
    text-decoration: none;
}

.privacy-checkbox .checkbox-text a:hover {
    text-decoration: underline;
}

/* Form Error Message Styling */
.form-error-message {
    background: rgba(255, 80, 80, 0.15);
    border: 1px solid rgba(255, 80, 80, 0.5);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    animation: shakeError 0.5s ease;
}

.form-error-message .error-icon {
    font-size: 1.3rem;
    color: #ff5050;
}

.form-error-message .error-text {
    color: #ff8080;
    font-size: 0.95rem;
    line-height: 1.4;
}

@keyframes shakeError {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-5px); }
    40% { transform: translateX(5px); }
    60% { transform: translateX(-5px); }
    80% { transform: translateX(5px); }
}

.btn-confirm {
    font-family: 'Jockey One', Helvetica, Arial, sans-serif;
    background: #7cda24;
    color: #000;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.btn-confirm:hover {
    background: #fff;
}

/* Reservation Success */
.reservation-success {
    text-align: center;
    padding: 2rem;
}

.success-icon {
    font-size: 4rem;
    color: #7cda24;
    margin-bottom: 1rem;
}

.reservation-success h3 {
    border: none;
    padding: 0;
    margin-bottom: 0.5rem;
}

.success-message {
    color: #ccc;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.success-details {
    background: rgba(124, 218, 36, 0.1);
    padding: 1.5rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
}

.success-details p {
    margin: 0.5rem 0;
    color: #ccc;
}

.success-details strong {
    color: #7cda24;
}

.success-note {
    color: #999;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    padding: 0 1rem;
}

.success-note strong {
    color: #7cda24;
}

/* Confirmation Code Display */
.confirmation-code {
    background: rgba(124, 218, 36, 0.15);
    border: 2px solid #7cda24;
    border-radius: 10px;
    padding: 0.8rem 1.5rem;
    margin: 1rem auto;
    max-width: 250px;
    text-align: center;
}

.confirmation-code .code-label {
    display: block;
    color: #888;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
}

.confirmation-code .code-value {
    display: block;
    color: #7cda24;
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 3px;
}

/* Reservation Action Buttons */
.reservation-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.btn-manage {
    font-family: 'Jockey One', Helvetica, Arial, sans-serif;
    background: transparent;
    color: #7cda24;
    border: 2px solid #7cda24;
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-manage:hover {
    background: #7cda24;
    color: #000;
}

.success-contact {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.success-contact a {
    color: #7cda24;
    text-decoration: none;
}

.success-contact a:hover {
    text-decoration: underline;
}

/* Disabled button state */
.cta-button.btn-disabled {
    background: #444;
    border-color: #444;
    color: #888;
    cursor: not-allowed;
}

.cta-button.btn-disabled:hover {
    background: #444;
    color: #888;
}

/* Tablet - Reservation Modal */
@media (max-width: 768px) {
    .reservation-modal-content {
        max-width: 95%;
        margin: 0.5rem;
    }

    .time-slots {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.6rem;
    }

    .time-slot {
        padding: 0.7rem 0.5rem;
    }

    .slot-time {
        font-size: 1.1rem;
    }

    .slot-status {
        font-size: 0.65rem;
    }

    .location-toggle {
        gap: 0.8rem;
    }

    .location-btn {
        padding: 0.8rem;
    }

    .location-icon {
        font-size: 1.3rem;
    }

    .location-name {
        font-size: 1rem;
    }
}

/* Responsive */
@media (max-width: 600px) {
    .reservation-row {
        grid-template-columns: 1fr;
    }

    .time-slots {
        grid-template-columns: repeat(3, 1fr);
    }

    .reservation-modal-content h3 {
        font-size: 1.4rem;
        padding-right: 3rem;
    }

    .reservation-form {
        padding: 1rem;
    }

    .location-toggle {
        gap: 0.5rem;
    }

    .location-btn {
        padding: 0.7rem;
    }

    .location-icon {
        font-size: 1.2rem;
    }

    .location-name {
        font-size: 0.9rem;
    }

    .location-desc {
        font-size: 0.7rem;
    }

    .reservation-details {
        padding: 1rem;
    }

    .reservation-details h4 {
        font-size: 1rem;
    }

    .reservation-summary {
        padding: 0.8rem;
    }

    .btn-confirm {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }

    /* Success state mobile */
    .reservation-success {
        padding: 1.5rem 1rem;
    }

    .success-icon {
        font-size: 3rem;
    }

    .reservation-success h3 {
        font-size: 1.3rem;
    }

    .success-message {
        font-size: 1rem;
    }

    .confirmation-code {
        padding: 0.6rem 1rem;
    }

    .confirmation-code .code-value {
        font-size: 1.3rem;
    }

    .reservation-actions {
        flex-direction: column;
        gap: 0.8rem;
    }

    .btn-manage {
        width: 100%;
        text-align: center;
    }
}

/* Extra small - 400px */
@media (max-width: 400px) {
    .time-slots {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .time-slot {
        padding: 0.6rem 0.4rem;
    }

    .slot-time {
        font-size: 1rem;
    }

    .reservation-modal-content h3 {
        font-size: 1.2rem;
    }
}

/* =====================================================
   MOBILE HERO - ABOVE THE FOLD EXPERIENCE
   ===================================================== */

/* Mobile CTA Bar - Fixed Bottom */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1500;
    background: #000;
    border-top: 2px solid #7cda24;
    padding: 12px 15px;
    padding-bottom: calc(20px + env(safe-area-inset-bottom, 20px));
    gap: 10px;
}

.mobile-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 8px;
    font-family: 'Jockey One', Helvetica, Arial, sans-serif;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    transition: all 0.3s;
}

.mobile-cta-btn .btn-icon {
    font-size: 1.2rem;
}

.mobile-cta-btn.reserve-btn {
    background: #7cda24;
    color: #000;
}

.mobile-cta-btn.reserve-btn:hover,
.mobile-cta-btn.reserve-btn:active {
    background: #9ef04a;
}

.mobile-cta-btn.call-btn {
    background: transparent;
    border: 2px solid #7cda24;
    color: #7cda24;
}

.mobile-cta-btn.call-btn:hover,
.mobile-cta-btn.call-btn:active {
    background: rgba(124, 218, 36, 0.2);
}

/* MLDL Overlay - Fullscreen Animation */
.mldl-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
}

.mldl-badge-large {
    width: 70vw;
    max-width: 300px;
    height: auto;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(124, 218, 36, 0.5);
    transform: scale(0.5);
    opacity: 0;
}

/* MLDL Animation Keyframes */
@keyframes mldlSlideIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(50px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes mldlWiggle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    20% { transform: scale(1.05) rotate(-3deg); }
    40% { transform: scale(1.05) rotate(3deg); }
    60% { transform: scale(1.05) rotate(-3deg); }
    80% { transform: scale(1.05) rotate(3deg); }
}

@keyframes mldlFadeOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.8);
    }
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s;
}

.video-modal-close:hover {
    color: #7cda24;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid #7cda24;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* MLDL Hero Badge - Desktop: hidden by default */
.mldl-hero-badge {
    display: none;
}

/* Mobile: Show MLDL overlay and run animation */
@media (max-width: 768px) {
    /* Ensure full width on all elements */
    html, body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .hero {
        width: 100%;
        max-width: 100%;
    }

    .hero::after {
        width: 100%;
    }

    nav {
        width: 100%;
    }

    /* Show mobile CTA bar */
    .mobile-cta-bar {
        display: flex;
        width: 100%;
    }

    /* Hide desktop CTA buttons in hero */
    .hero .cta-buttons {
        display: none;
    }

    /* Add bottom padding for fixed CTA bar */
    body {
        padding-bottom: 100px;
    }

    /* MLDL Overlay visible on mobile */
    .mldl-overlay {
        display: flex;
    }

    /* MLDL Overlay animation sequence */
    .mldl-overlay.animate {
        opacity: 1;
        pointer-events: auto;
        animation: mldlOverlayShow 0.3s ease forwards;
    }

    .mldl-overlay.animate .mldl-badge-large {
        animation:
            mldlSlideIn 0.5s ease 0.2s forwards,
            mldlWiggle 0.6s ease 0.8s 2,
            mldlFadeOut 0.5s ease 2.2s forwards;
    }

    .mldl-overlay.fade-out {
        animation: mldlOverlayHide 0.3s ease 2.5s forwards;
    }

    @keyframes mldlOverlayShow {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    @keyframes mldlOverlayHide {
        from { opacity: 1; }
        to { opacity: 0; pointer-events: none; }
    }

    /* Quality badges - only 2, fade out */
    .quality-badges {
        top: auto;
        bottom: 115px;
        right: 10px;
        transform: none;
        gap: 0.5rem;
        flex-direction: column;
        animation: none;
    }

    /* Hide the MLDL badge from corner (it's in the overlay) */
    .quality-badges .badge-mldl {
        display: none !important;
    }

    /* Only 2 badges visible, then fade */
    .quality-badges .badge-stay {
        width: 50px;
        height: 50px;
        padding: 0.3rem;
        border-radius: 8px;
        animation: badgesFadeOutMobile 5s ease-in-out forwards;
        animation-delay: 3s; /* Start fading after MLDL animation */
    }

    @keyframes badgesFadeOutMobile {
        0% { opacity: 1; }
        70% { opacity: 1; }
        100% { opacity: 0; pointer-events: none; }
    }

    /* MLDL Hero Badge - Stays after animation, clickable for video */
    .mldl-hero-badge {
        display: none;
        position: relative;
        width: 100px;
        height: 100px;
        margin: 0.5rem auto;
        cursor: pointer;
        opacity: 0;
        transform: scale(0.8);
        transition: all 0.5s ease;
    }

    .mldl-hero-badge.visible {
        display: block;
        opacity: 1;
        transform: scale(1);
        animation: mldlHeroBadgePulse 2s ease-in-out infinite;
    }

    .mldl-hero-badge img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 50%;
        padding: 8px;
        box-shadow: 0 4px 20px rgba(124, 218, 36, 0.4);
    }

    .mldl-hero-badge .play-icon {
        position: absolute;
        bottom: -5px;
        right: -5px;
        width: 30px;
        height: 30px;
        background: #7cda24;
        color: #000;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }

    @keyframes mldlHeroBadgePulse {
        0%, 100% { box-shadow: 0 4px 20px rgba(124, 218, 36, 0.4); }
        50% { box-shadow: 0 4px 30px rgba(124, 218, 36, 0.7); }
    }

    /* Compact Availability Widget - Fixed 4 slots */
    .availability-widget {
        padding: 8px 12px;
        margin-bottom: 0.5rem;
        max-width: 100%;
        background: rgba(0, 0, 0, 0.85);
    }

    .availability-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 8px;
        padding-bottom: 6px;
        gap: 5px;
    }

    .availability-title {
        font-size: 0.75rem;
    }

    .availability-date {
        font-size: 0.7rem;
    }

    .availability-status-time {
        font-size: 0.65rem;
    }

    /* Show only 4 slots in a row - hide overflow */
    .availability-slots {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
        overflow: hidden;
    }

    /* Hide slots beyond the first 4 */
    .avail-slot:nth-child(n+5) {
        display: none;
    }

    .avail-slot {
        min-width: auto;
        padding: 6px 4px;
        flex-direction: column;
        border-radius: 4px;
    }

    .avail-time {
        font-size: 0.9rem;
    }

    .avail-status {
        font-size: 0.55rem;
    }

    /* Hero section mobile adjustments for above-the-fold */
    .hero {
        min-height: calc(100vh - 80px);
        min-height: calc(100dvh - 80px);
        padding: 70px 4% 1rem;
        justify-content: flex-start;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    /* Hide the award badge text on mobile (shown in overlay) */
    .award-badge {
        display: none;
    }

    .hero-logo {
        max-width: 200px;
        padding: 1.2rem;
        margin-bottom: 0.3rem;
    }

    .hero-tagline {
        font-size: 0.8rem;
        letter-spacing: 1px;
        margin-bottom: 0.5rem;
    }
}

/* Small mobile refinements */
@media (max-width: 400px) {
    .mobile-cta-btn {
        padding: 12px 10px;
        font-size: 0.85rem;
        gap: 6px;
    }

    .mobile-cta-btn .btn-icon {
        font-size: 1rem;
    }

    .hero-logo {
        max-width: 150px;
        padding: 1rem;
    }

    .hero-tagline {
        font-size: 0.65rem;
        letter-spacing: 0.5px;
    }

    .availability-widget {
        padding: 6px 10px;
    }

    .availability-header {
        margin-bottom: 6px;
        padding-bottom: 4px;
    }

    .availability-title {
        font-size: 0.7rem;
    }

    /* 3 slots on very small screens */
    .availability-slots {
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
    }

    .avail-slot:nth-child(n+4) {
        display: none;
    }

    .avail-slot {
        padding: 5px 3px;
    }

    .avail-time {
        font-size: 0.8rem;
    }

    .avail-status {
        font-size: 0.5rem;
    }

    .quality-badges .badge-stay {
        width: 40px;
        height: 40px;
    }

    /* Cookie banner smaller */
    .cookie-banner {
        bottom: 85px;
    }

    .cookie-text {
        font-size: 0.7rem;
    }

    .cookie-btn {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
}