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

:root {
    --primary-green: #1B4B43;
    --secondary-green: #7CDBC7;
    --accent-coral: #FF6B61;
    --light-green: #B2E5D7;
    --off-white: #F5F5F5;
    --gradient-dark: linear-gradient(135deg, #1B4B43 0%, #133832 100%);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --h1-size-desktop: 3.5rem;
    --h1-size-tablet: 2.8rem;
    --h1-size-mobile: 2rem;
    
    --h2-size-desktop: 2.8rem;
    --h2-size-tablet: 2.2rem;
    --h2-size-mobile: 1.8rem;
    
    --h3-size-desktop: 1.8rem;
    --h3-size-tablet: 1.5rem;
    --h3-size-mobile: 1.2rem;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: var(--primary-green);
    color: var(--off-white);
}

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

/* Header Styles */
header {
    position: relative;
    width: 100%;
    background-color: var(--primary-green);
}

.main-header {
    padding: 20px 0;
    width: 100%;
}

.main-header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.logo {
    margin-bottom: 20px;
}

.logo img {
    height: 240px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(124, 219, 199, 0.3));
    transition: all 0.3s ease;
}

.main-nav {
    width: 100%;
    max-width: 800px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.nav-button {
    width: 100%;
    text-align: center;
    background: rgba(124, 219, 199, 0.1);
    border: 2px solid var(--secondary-green);
    color: var(--secondary-green);
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-button:hover {
    background: var(--secondary-green);
    color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(124, 219, 199, 0.2);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--primary-green);
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}

.hero-content {
    position: relative;
    padding-top: 60px;
    text-align: center;
}

.hero-image {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); */
}

/* Service Info */
.service-info {
    text-align: center;
    padding: 60px 0;
}

.service-info h2 {
    font-size: var(--h2-size-desktop);
    color: var(--secondary-green);
    text-shadow: 0 2px 10px rgba(124, 219, 199, 0.3);
    line-height: 1.2;
}

.service-info h3 {
    font-size: var(--h1-size-desktop);
    background: linear-gradient(45deg, var(--accent-coral), var(--secondary-green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
    line-height: 1.3;
    margin-top: 0.5em;
}

/* Menu Section */
.menu-section {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.5);
}

.menu-grid {
    position: relative;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
}

.menu-categories ul {
    list-style: none;
}

.menu-categories a {
    display: block;
    padding: 12px 20px;
    color: var(--secondary-green);
    text-decoration: none;
    transition: all 0.3s;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.menu-categories a:hover,
.menu-categories a.active {
    background: var(--secondary-green);
    color: var(--primary-green);
}

.menu-content {
    position: relative;
}

.menu-category {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-category.active {
    display: grid;
    opacity: 1;
}

.menu-list {
    padding: 25px;
    padding-bottom: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    position: relative;
}

.menu-list ul {
    list-style: none;
    padding-bottom: 20px;
}

.menu-list li {
    color: var(--off-white);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.2rem;
    line-height: 1.4;
    letter-spacing: 0.3px;
}

.menu-list li:last-child {
    border-bottom: none;
}

.menu-image img {
    width: 100%;
    border-radius: 8px;
    height: 100%;
    object-fit: cover;
}

/* WhatsApp Order Button */
.menu-whatsapp-btn {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #fff;
    color: #6B4593;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    z-index: 10;
    width: 80%;
    max-width: 400px;
}

.menu-whatsapp-btn i {
    font-size: 1.4rem;
    color: #25D366;
}

.menu-whatsapp-btn:hover {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    background: #f8f8f8;
}

/* Contact Section */
.contact-section.parallax {
    position: relative;
    height: 500px;
    background: url('../assets/img/discoball.jpg') center/cover fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,70,0.7));
}

.parallax-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.parallax-content h2 {
    font-size: var(--h2-size-desktop);
    color: var(--off-white);
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.parallax-content h3 {
    font-size: var(--h3-size-desktop);
    color: var(--secondary-green);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    line-height: 1.3;
    margin-bottom: 30px;
}

.contact-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    color: #4b0082;
    padding: 20px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    width: 100%;
    max-width: 400px;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--secondary-green);
}

/* Bubble effect */
.contact-whatsapp-btn::before,
.contact-whatsapp-btn::after {
    content: '';
    position: absolute;
    background: rgba(124, 219, 199, 0.2);
    border-radius: 50%;
    animation: bubbleRise 2s infinite;
    z-index: 1;
}

.contact-whatsapp-btn::before {
    width: 20px;
    height: 20px;
    bottom: -20px;
    left: 30%;
    animation-delay: 0s;
}

.contact-whatsapp-btn::after {
    width: 15px;
    height: 15px;
    bottom: -15px;
    left: 65%;
    animation-delay: 1s;
}

.contact-whatsapp-btn i {
    font-size: 1.6rem;
    color: #25D366;
    position: relative;
    z-index: 2;
    animation: tilt 2s infinite;
}

.contact-whatsapp-btn span {
    position: relative;
    z-index: 2;
}

.contact-whatsapp-btn:hover {
    background: #fff;
    color: var(--primary-green);
    transform: translateY(-2px);
}

.contact-whatsapp-btn:hover i {
    transform: rotate(10deg);
}

/* Bubble animation */
@keyframes bubbleRise {
    0% {
        transform: translateY(0) scale(0.5);
        opacity: 0;
    }
    50% {
        transform: translateY(-30px) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(-60px) scale(0.5);
        opacity: 0;
    }
}

@keyframes tilt {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-whatsapp-btn {
        padding: 20px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .contact-whatsapp-btn {
        padding: 15px 25px;
        font-size: 1rem;
    }
}

/* Animations */
@keyframes buttonFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

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

@keyframes shine {
    0% { transform: translate(-100%, -100%) rotate(45deg); }
    20%, 100% { transform: translate(100%, 100%) rotate(45deg); }
}

@keyframes gradientPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 0.9; }
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: linear-gradient(45deg, var(--primary-green), rgba(0, 0, 0, 0.8));
}

.faq-grid {
    display: grid;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--light-green);
    line-height: 1.4;
}

.faq-icon {
    color: var(--secondary-green);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: 15px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Footer */
footer {
    padding: 40px 0;
    background: var(--primary-green);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.reach-us {
    color: var(--secondary-green);
    font-size: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.copyright {
    color: var(--light-green);
    font-size: 0.9rem;
    text-align: center;
}

.social-icon {
    color: var(--secondary-green);
    font-size: 24px;
    transition: color 0.3s;
}

.social-icon:hover {
    color: var(--accent-coral);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-header .container {
        padding: 15px 20px;
    }

    .hero h1 {
        font-size: 3.5rem;
        padding: 0 20px;
    }

    .logo img {
        height: 180px;
    }

    .hero-image {
        max-width: 90%;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-categories ul {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .menu-categories a {
        padding: 8px 15px;
        border-radius: 20px;
    }
    
    .menu-category {
        grid-template-columns: 1fr;
    }
    
    .menu-image {
        order: -1;
    }
}

@media (max-width: 480px) {
    .main-nav {
        grid-template-columns: 1fr;
    }

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

    .logo img {
        height: 140px;
    }
}

/* Top Section Styles */
.top-section {
    min-height: 100vh;
    display: flex;
    padding: 20px;
    gap: 40px;
}

/* Left Side - Just Hero Image */
.top-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hero-image {
    max-width: 600px;
    width: 100%;
}

/* Right Side - Logo and Navigation */
.top-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    gap: 40px;
}

/* Move logo to right side */
.logo {
    margin-bottom: 0;
}

.logo img {
    height: 240px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(124, 219, 199, 0.3));
    transition: all 0.3s ease;
}

.nav-grid {
    width: 100%;
    max-width: 400px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

/* Update responsive design */
@media (max-width: 1024px) {
    .top-section {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .top-left, .top-right {
        width: 100%;
        padding: 20px;
        min-height: 50vh;
    }

    .logo {
        margin-bottom: 0;
    }

    .nav-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }
}

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

    .logo img {
        height: 140px;
    }
}

/* Background Gradient for Top Section */
.top-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, #0A2924 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative Circles */
.top-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(124, 219, 199, 0.1) 0%, rgba(124, 219, 199, 0) 50px),
        radial-gradient(circle at 90% 10%, rgba(255, 107, 97, 0.1) 0%, rgba(255, 107, 97, 0) 70px),
        radial-gradient(circle at 80% 80%, rgba(124, 219, 199, 0.1) 0%, rgba(124, 219, 199, 0) 60px),
        radial-gradient(circle at 20% 60%, rgba(255, 107, 97, 0.1) 0%, rgba(255, 107, 97, 0) 40px);
    pointer-events: none;
}

/* Floating Dots */
.floating-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
    z-index: 1;
}

.dot {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    animation: float 20s infinite ease-in-out;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

/* Larger, more vibrant dots */
.dot:nth-child(1) {
    width: 35px;
    height: 35px;
    background: var(--secondary-green);
    top: 20%;
    left: 15%;
    animation-delay: 0s;
    filter: blur(1px);
}

.dot:nth-child(2) {
    width: 45px;
    height: 45px;
    background: var(--accent-coral);
    top: 30%;
    right: 20%;
    animation-delay: -5s;
    filter: blur(2px);
}

.dot:nth-child(3) {
    width: 30px;
    height: 30px;
    background: var(--light-green);
    bottom: 25%;
    right: 30%;
    animation-delay: -10s;
    filter: blur(1px);
}

.dot:nth-child(4) {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--accent-coral), var(--secondary-green));
    bottom: 35%;
    left: 25%;
    animation-delay: -15s;
    filter: blur(2px);
}

.dot:nth-child(5) {
    width: 25px;
    height: 25px;
    background: var(--secondary-green);
    top: 45%;
    left: 40%;
    animation-delay: -7s;
    filter: blur(1px);
}

.dot:nth-child(6) {
    width: 50px;
    height: 50px;
    background: linear-gradient(-45deg, var(--accent-coral), var(--light-green));
    bottom: 15%;
    right: 15%;
    animation-delay: -12s;
    filter: blur(2px);
}

/* More complex floating animation */
@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.2;
    }
    25% {
        transform: translate(-20px, 20px) scale(1.1);
        opacity: 0.3;
    }
    50% {
        transform: translate(20px, -10px) scale(0.9);
        opacity: 0.2;
    }
    75% {
        transform: translate(10px, 30px) scale(1.2);
        opacity: 0.3;
    }
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.2;
    }
}

/* Update existing elements to work with new background */
.top-left, .top-right {
    position: relative;
    z-index: 2;
}

/* Enhanced Top Section */
.top-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, #0A2924 100%);
    position: relative;
    overflow: hidden;
}

/* Add a subtle pattern overlay */
.top-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, rgba(124, 219, 199, 0.03) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(124, 219, 199, 0.03) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(124, 219, 199, 0.03) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(124, 219, 199, 0.03) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    pointer-events: none;
}

/* Enhanced Floating Dots */
.dot {
    position: absolute;
    border-radius: 50%;
    opacity: 0.25;
    animation: float 20s infinite ease-in-out;
    box-shadow: 
        0 0 30px rgba(255, 255, 255, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2px);
}

/* More interesting dot variations */
.dot:nth-child(1) {
    width: 45px;
    height: 45px;
    background: radial-gradient(circle at 30% 30%, var(--secondary-green), transparent);
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.dot:nth-child(2) {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at 70% 70%, var(--accent-coral), transparent);
    top: 25%;
    right: 15%;
    animation-delay: -5s;
}

.dot:nth-child(3) {
    width: 35px;
    height: 35px;
    background: radial-gradient(circle at 50% 50%, var(--light-green), transparent);
    bottom: 30%;
    right: 25%;
    animation-delay: -10s;
}

/* Add shine effect to buttons */
.nav-button {
    background: rgba(124, 219, 199, 0.1);
    border: 2px solid var(--secondary-green);
    color: var(--secondary-green);
    padding: 15px 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nav-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: 0.5s;
}

.nav-button:hover {
    background: var(--secondary-green);
    color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 
        0 10px 20px rgba(124, 219, 199, 0.2),
        0 6px 6px rgba(124, 219, 199, 0.1);
    letter-spacing: 2px;
}

.nav-button:hover::before {
    left: 100%;
}

/* Add floating animation to hero image */
.hero-image {
    animation: gentle-float 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

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

/* Enhanced floating animation */
@keyframes float {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.25;
    }
    25% {
        transform: translate(-15px, 15px) scale(1.1) rotate(90deg);
        opacity: 0.35;
    }
    50% {
        transform: translate(15px, -10px) scale(0.95) rotate(180deg);
        opacity: 0.25;
    }
    75% {
        transform: translate(10px, 20px) scale(1.05) rotate(270deg);
        opacity: 0.35;
    }
    100% {
        transform: translate(0, 0) scale(1) rotate(360deg);
        opacity: 0.25;
    }
}

/* Add glow effect to logo */
.logo img {
    filter: drop-shadow(0 0 10px rgba(124, 219, 199, 0.3));
    transition: all 0.3s ease;
}

.logo img:hover {
    filter: drop-shadow(0 0 15px rgba(124, 219, 199, 0.5));
    transform: scale(1.05);
}

/* FAQ Section Heading Alignment */
.faq-section h2 {
    font-size: var(--h2-size-desktop);
    letter-spacing: 2px;
    text-align: left;
    margin-bottom: 40px;
    color: var(--secondary-green);
    line-height: 1.2;
}

/* FAQ Container Adjustments */
.faq-section .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* FAQ Items Style Update */
.faq-item {
    background: rgba(124, 219, 199, 0.1);
    border-radius: 4px;
    margin-bottom: 10px;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--light-green);
    line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .service-info h2 {
        font-size: var(--h2-size-tablet);
    }

    .service-info h3 {
        font-size: var(--h1-size-tablet);
    }

    .parallax-content h2 {
        font-size: var(--h2-size-tablet);
    }

    .parallax-content h3 {
        font-size: var(--h3-size-tablet);
    }

    .faq-section h2 {
        font-size: var(--h2-size-tablet);
        text-align: center;
    }

    .menu-list li {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .service-info {
        padding: 40px 20px;
    }

    .service-info h2 {
        font-size: var(--h2-size-mobile);
    }

    .service-info h3 {
        font-size: var(--h1-size-mobile);
    }

    .parallax-content h2 {
        font-size: var(--h2-size-mobile);
    }

    .parallax-content h3 {
        font-size: var(--h3-size-mobile);
    }

    .faq-section h2 {
        font-size: var(--h2-size-mobile);
        margin-bottom: 30px;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }

    .menu-list li {
        font-size: 0.95rem;
    }
}

/* Additional improvements for very small screens */
@media (max-width: 480px) {
    .service-info {
        padding: 30px 15px;
    }

    .service-info h2 {
        font-size: calc(var(--h2-size-mobile) * 0.9);
    }

    .service-info h3 {
        font-size: calc(var(--h1-size-mobile) * 0.9);
    }

    .parallax-content {
        padding: 15px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .menu-list li {
        font-size: 0.9rem;
        padding: 8px 0;
    }
}

/* Responsive adjustments for menu */
@media (max-width: 1024px) {
    .menu-categories a {
        font-size: 0.95rem;
        padding: 10px 18px;
    }
    
    .menu-list li {
        font-size: 1.1rem;
        padding: 12px 0;
    }
}

@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .menu-categories {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .menu-categories ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    .menu-categories a {
        padding: 8px 15px;
        border-radius: 20px;
        font-size: 0.9rem;
    }

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

    .menu-image {
        order: -1;
        width: 100%;
        max-width: 300px;
        margin-bottom: 20px;
    }

    .menu-list {
        width: 100%;
        max-width: 300px;
    }

    .menu-pdf-button {
        width: 100%;
        max-width: 300px;
        margin: 20px auto;
    }
}

@media (max-width: 480px) {
    .menu-categories a {
        font-size: 0.85rem;
        padding: 8px 12px;
    }
    
    .menu-list li {
        font-size: 0.95rem;
        padding: 8px 0;
    }
}

.menu-pdf-button {
    grid-column: span 2;
    justify-self: center;
    background: linear-gradient(135deg, var(--secondary-green), var(--light-green));
    color: var(--primary-green);
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
}

.menu-pdf-button:hover {
    background: linear-gradient(135deg, var(--accent-coral), var(--secondary-green));
    color: var(--off-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch; /* Enable smooth scrolling on iOS */
}

.modal-content {
    background-color: var(--off-white);
    margin: auto;
    padding: 20px;
    border: 1px solid var(--primary-green);
    width: 90%;
    max-width: 900px;
    height: 80%;
    border-radius: 8px;
    overflow: auto; /* Allow scrolling within the modal */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.close {
    color: var(--primary-green);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    margin-top: -10px;
    margin-right: -10px;
}

.close:hover,
.close:focus {
    color: var(--accent-coral);
    text-decoration: none;
    cursor: pointer;
}