/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

/* Headers use Sigmar One font */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Sigmar One', cursive;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Variables */
:root {
    --primary-green: #28a76f;
    --secondary-green: #3bc081;
    --accent-green: #5de8b4;
    --tropical-blue: #2196f3;
    --tropical-orange: #ff9800;
    --tropical-yellow: #ffeb3b;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #333333;
}

/* Tiki Nav Bar */
.tiki-nav {
    height: clamp(140px, 20vw, 200px);
    background-image: url('assets/tiki-edge.png');
    background-repeat: repeat-x;
    background-size: 100% 100%;
    background-position: bottom center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
    transition: height 0.3s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 60px;
}

/* Navigation Card */
.nav-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 15px 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1002;
}

/* Navigation */
.navbar {
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 20px 20px 20px;
    pointer-events: none;
    background: transparent;
}

.navbar .nav-container {
    pointer-events: auto;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Style for the logo container */
.nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -40px;
    z-index: 1003;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Nav spacer for balance */
.nav-spacer {
    flex: 1;
    min-width: 200px;
}

/* Circular background card for logo */
.nav-logo::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: -1;
    transition: all 0.3s ease;
}

/* Style for the logo image */
.logo-img {
    height: 156px;
    width: auto;
    max-width: 325px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
    font-family: 'Sigmar One', cursive;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-green);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background-image: 
        url('assets/foliage1.png'),
        url("data:image/svg+xml,%3Csvg width='32' height='64' viewBox='0 0 32 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 28h20V16h-4v8H4V4h28v28h-4V8H8v12h4v-8h12v20H0v-4zm12 8h20v4H16v24H0v-4h12V36zm16 12h-4v12h8v4H20V44h12v12h-4v-8zM0 36h8v20H0v-4h4V40H0v-4z' fill='%2328a76f' fill-opacity='0.4' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-color: var(--secondary-green);
    background-size: 115% 86%, auto; /* Or adjust the percentage as needed */
    background-position: center 150px, 0 0;
    background-repeat: no-repeat, repeat;
    background-attachment: scroll;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    position: relative;
}

/* Fade effect at the bottom of hero */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--secondary-green) 0%, transparent 100%);
    pointer-events: none;
}

.hero-content {
    max-width: 600px;
    text-align: center;
    margin-bottom: 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--tropical-orange);
    color: var(--white);
}

.btn-primary:hover {
    background: #e68900;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.4);
}

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

.btn-secondary:hover {
    background: var(--accent-green);
    border: 2px solid var(--white);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 111, 0.4);
}

.pizza-illustration {
    font-size: 15rem;
    color: var(--tropical-yellow);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}


/* Facebook CTA Section */
.facebook-cta {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.facebook-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/tiki-tile.png');
    background-repeat: repeat-x;
    background-size: 500px 100%;
    background-position: center top;
    opacity: 0.5;
    z-index: 1;
}

.facebook-cta-card {
    max-width: 600px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facebook-cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.facebook-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/tikis.png');
    background-size: 100% 300%;
    background-position: -30px;
    z-index: 1;
}

.facebook-cta-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(40, 167, 111, 0.85) 0%, rgba(59, 192, 129, 0.85) 100%);
    z-index: 2;
}

.facebook-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-decoration: none;
    color: var(--white);
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
}

.facebook-link i {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.facebook-link:hover i {
    transform: scale(1.1);
}

.facebook-link p {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Sigmar One', cursive;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}

/* Beer & Wine Section */
.beer-wine-section {
    padding: 40px 0;
    background: #2498ed;
    color: var(--white);
}

.beer-wine-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.beer-wine-image {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    height: 450px;
}

.beer-img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.beer-wine-text {
    flex: 0 1 auto;
    text-align: center;
}

.beer-wine-text h2 {
    font-family: 'Sigmar One', cursive;
    font-size: 2.5rem;
    color: var(--white);
    margin: 0;
    text-align: center;
    line-height: 1.2;
}

/* Transition Sections */
.transition-section {
    height: 200px;
    width: 100%;
}

/* Transition from Hero (green) to Facebook CTA (white) */
.transition-hero-to-facebook {
    background: linear-gradient(180deg, var(--secondary-green) 0%, rgba(255, 255, 255, 1) 100%);
}

/* Transition from Facebook CTA (white) to Beer & Wine Section (blue) */
.transition-facebook-to-quick {
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, #2498ed 100%);
}

/* Transition from Beer & Wine Section (blue) to Specials CTA (green) */
.transition-beer-to-specials {
    background: linear-gradient(180deg, #2498ed 0%, var(--secondary-green) 100%);
}

/* Transition from Beer & Wine Section (blue) to Specials CTA (green) */
.transition-beer-to-footer {
    background: linear-gradient(180deg, #2498ed 0%, var(--dark-gray) 100%);
}

/* Transition from Specials CTA (green) to Footer (dark gray) */
.transition-specials-to-footer {
    background: linear-gradient(180deg, var(--secondary-green) 0%, var(--dark-gray) 100%);
}

/* Specials CTA Section Styling */
.specials-cta-section {
    background: var(--secondary-green);
}

.btn-cta {
    background: var(--tropical-orange);
    color: var(--white);
    margin-top: 1.5rem;
    display: inline-block;
}

.btn-cta:hover {
    background: #e68900;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.4);
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--primary-green);
}

.social-links {
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    margin-right: 1rem;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    opacity: 0.7;
}

/* Scrolled state for the navbar */
.navbar.scrolled .logo-img {
    height: 75px;
    max-width: 224px;
}

.navbar.scrolled .nav-logo::before {
    width: 115px;
    height: 115px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .tiki-nav {
        height: clamp(100px, 15vw, 180px);
    }
    
    .navbar {
        height: clamp(100px, 15vw, 180px);
    }
    
    .nav-container {
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
    }
    
    .nav-card {
        display: none; /* Hide the desktop nav card on mobile */
    }
    
    .nav-spacer {
        display: none;
    }
    
    /* Mobile hamburger menu - positioned on the left */
    .nav-toggle {
        display: flex !important;
        position: absolute;
        left: 10px;
        top: 0px;
        transform: none;
        z-index: 1004;
        background: rgba(255, 255, 255, 0.9);
        padding: 12px;
        border-radius: 50%;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Mobile menu - hidden by default */
    .nav-menu {
        position: fixed;
        left: -100%;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        width: 90%;
        max-width: 400px;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.15);
        padding: 2rem 0;
        border-radius: 15px;
        left: 50%;
        transform: translateX(-50%);
        opacity: 0;
        visibility: hidden;
    }

    .nav-menu.active {
        left: 50%;
        transform: translateX(-50%);
        opacity: 1;
        visibility: visible;
    }

    /* Mobile specific logo styles */
    .nav-logo {
        top: 10px;
    }
    .nav-logo::before {
        width: 140px;
        height: 140px;
    }
    .logo-img {
        height: 104px;
        max-width: 234px;
    }
    /* Remove scrolled state animations for mobile - keep elements in original positions */
    .navbar.scrolled .nav-logo {
        top: 10px; /* Keep original position */
    }
    .navbar.scrolled .nav-logo::before {
        width: 140px; /* Keep original size */
        height: 140px; /* Keep original size */
    }
    .navbar.scrolled .logo-img {
        height: 104px; /* Keep original size */
        max-width: 234px; /* Keep original size */
    }
    
    /* Disable transitions on mobile to prevent animations */
    .nav-logo,
    .nav-logo::before,
    .logo-img,
    .nav-toggle {
        transition: none !important;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        align-items: center;
        min-height: 60vh;
        background-size: 115% 75%, auto;
    }

    .hero-content {
        margin-bottom: 0;
        padding-top: 130px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
        padding: 0 50px;
    }

    .pizza-illustration {
        font-size: 8rem;
        margin-top: 2rem;
    }

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

    .beer-wine-section {
        padding: 30px 0;
    }

    .beer-wine-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .beer-wine-image {
        height: 150px;
    }

    .beer-wine-text h2 {
        font-size: 1.8rem;
        text-align: center;
    }

    .facebook-cta-card {
        max-width: 90%;
    }

    .facebook-link {
        padding: 3rem 1.5rem;
    }

    .facebook-link i {
        font-size: 4rem;
    }

    .facebook-link p {
        font-size: 1.2rem;
        font-family: 'Sigmar One', cursive;
    }

    .transition-section {
        height: 120px;
    }

    /* Mobile responsive styles for specials */
    .specials-list {
        gap: 1.5rem;
    }

    .special-row {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .special-row-left .special-tiki-image,
    .special-row-right .special-tiki-image {
        order: 0;
    }

    .special-row-left .special-content,
    .special-row-right .special-content {
        order: 1;
    }

    .special-tiki-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 150px;
    }

    .special-tiki-image img {
        max-height: 150px;
        object-fit: contain;
    }

    .special-content {
        padding: 1.25rem;
    }

    .special-text-container {
        padding: 1rem;
        margin-top: 0.75rem;
    }

    .special-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .special-description {
        font-size: 1rem;
    }

    .special-day {
        font-size: 1.2rem;
        margin-bottom: 0.25rem;
    }

    .special-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }

}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .pizza-illustration {
        font-size: 6rem;
    }

    .facebook-link {
        padding: 2rem 1rem;
    }

    .facebook-link i {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .facebook-link p {
        font-size: 1rem;
        font-family: 'Sigmar One', cursive;
    }
}

/* Page-specific styles */
.page-header {
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='64' viewBox='0 0 32 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 28h20V16h-4v8H4V4h28v28h-4V8H8v12h4v-8h12v20H0v-4zm12 8h20v4H16v24H0v-4h12V36zm16 12h-4v12h8v4H20V44h12v12h-4v-8zM0 36h8v20H0v-4h4V40H0v-4z' fill='%2328a76f' fill-opacity='0.4' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-color: var(--secondary-green);
    background-size: auto;
    background-position: 0 0;
    background-repeat: repeat;
    background-attachment: scroll;
    color: var(--white);
    text-align: center;
    height: 325px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Pizza Image Section */
.pizza-image-section {
    width: 100%;
    height: 120px;
    background-image: url('assets/pizzaedit.jpg');
    background-size: 130%;
    background-position: center;
    background-repeat: repeat-y;
    background-attachment: fixed;
    box-shadow: 
        0 10px 20px -5px rgba(0, 0, 0, 0.5) inset,
        0 -10px 20px -5px rgba(0, 0, 0, 0.5) inset;
}

.page-content {
    padding: 100px 0;
    background: var(--white);
}

/* Menu Styles */
.menu-section {
    margin-bottom: 3rem;
}

.menu-section h2 {
    color: var(--primary-green);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.menu-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--tropical-orange);
}

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

.menu-item {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.menu-item h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.menu-item .price {
    color: var(--tropical-orange);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.menu-item .description {
    color: #666;
    font-size: 0.9rem;
}

/* Special Row Styles */
.specials-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.special-row {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.special-row-left .special-tiki-image {
    order: 0;
}

.special-row-left .special-content {
    order: 1;
}

.special-row-right .special-tiki-image {
    order: 1;
}

.special-row-right .special-content {
    order: 0;
}

.special-tiki-image {
    flex: 0 0 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.special-tiki-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.special-tiki-image.flip-horizontal img {
    transform: scaleX(-1);
}

.special-content {
    flex: 1;
    padding: 2.5rem;
    border-radius: 15px;
    color: #2c3e50;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.special-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--tropical-yellow) 0%, rgba(255, 248, 113, 0.7) 100%);
    z-index: 0;
}

.special-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/patterns2.png');
    background-repeat: repeat;
    background-size: 400px auto;
    opacity: 0.3;
    z-index: 1;
}

.special-badge {
    position: relative;
    z-index: 2;
    display: inline-block;
    background: var(--primary-green);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(40, 167, 111, 0.3);
}

.special-text-container {
    position: relative;
    z-index: 2;
    background: rgba(52, 73, 94, 0.6);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.special-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.special-day {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--tropical-orange);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.special-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: 'Sigmar One', cursive;
    color: var(--white);
}

.special-description {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--white);
}

/* Location Styles */
.location-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.location-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.location-card i {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.location-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.hours-table th,
.hours-table td {
    padding: 0.8rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.hours-table th {
    background: var(--primary-green);
    color: var(--white);
    font-weight: 600;
}

.hours-table tr:nth-child(even) {
    background: var(--light-gray);
}

/* Mobile Menu Modal Styles */
.mobile-menu-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    display: none;
    opacity: 0;
    transform: translateY(-100%);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-menu-modal.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.modal-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    padding: 2rem;
    padding-top: 6rem;
}

.modal-logo {
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
}

.mobile-menu-modal.active .modal-logo {
    opacity: 1;
    transform: translateY(0);
}

.modal-logo-img {
    height: 240px;
    width: auto;
    max-width: 500px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.modal-logo-img:hover {
    transform: scale(1.05);
}

.modal-close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--primary-green);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10000;
    opacity: 0;
    transform: rotate(-90deg) scale(0.8);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s;
}

.mobile-menu-modal.active .modal-close-btn {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.modal-close-btn:hover {
    background: var(--light-gray);
    transform: rotate(0deg) scale(1.1);
}

.modal-nav-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

.mobile-menu-modal.active .modal-nav-menu {
    opacity: 1;
    transform: translateY(0);
}

.modal-nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-size: 2rem;
    font-weight: 400;
    padding: 1rem 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Sigmar One', cursive;
}

.modal-nav-link:hover,
.modal-nav-link.active {
    color: var(--primary-green);
    background: var(--light-gray);
    transform: translateY(-2px);
}

.modal-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-green);
}

.modal-phone-btn {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: var(--primary-green);
    color: var(--white);
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 111, 0.3);
    z-index: 10000;
    opacity: 0;
    transform: translateY(30px) scale(0.8);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.mobile-menu-modal.active .modal-phone-btn {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.modal-phone-btn:hover {
    background: var(--secondary-green);
    transform: translateY(-2px) scale(1);
    box-shadow: 0 6px 20px rgba(40, 167, 111, 0.4);
}

.modal-phone-btn i {
    font-size: 1.2rem;
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden;
    height: 100%;
}

/* Responsive adjustments for modal */
@media (max-width: 480px) {
    .modal-content {
        padding-top: 4rem;
    }
    
    .modal-nav-link {
        font-size: 1.5rem;
        padding: 0.8rem 1.5rem;
    }
    
    .modal-close-btn {
        top: 1.5rem;
        right: 1.5rem;
        font-size: 1.5rem;
    }
    
    .modal-logo-img {
        height: 160px;
        max-width: 360px;
    }
    
    .modal-logo {
        margin-bottom: 2rem;
    }
    
    .modal-phone-btn {
        bottom: 1.5rem;
        right: 1.5rem;
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .modal-phone-btn i {
        font-size: 1rem;
    }

    .transition-section {
        height: 100px;
    }

    /* Additional mobile styles for specials on very small screens */
    .specials-list {
        gap: 1rem;
    }

    .special-tiki-image {
        max-width: 120px;
        flex: 0 0 100px;
    }

    .special-tiki-image img {
        max-height: 120px;
    }

    .special-content {
        padding: 1.25rem;
    }

    .special-text-container {
        padding: 0.875rem;
    }

    .special-day {
        font-size: 1.1rem;
    }

    .special-title {
        font-size: 1.25rem;
    }

    .special-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
    }
}
