/* =============================================
   PATAPUF - Neon Bar Style
   ============================================= */

:root {
    /* Neon Colors */
    --neon-pink: #ff00ff;
    --neon-cyan: #00ffff;
    --neon-green: #39ff14;
    --neon-yellow: #ffff00;
    --neon-orange: #ff6600;

    /* Background Colors */
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-card: rgba(20, 20, 30, 0.8);
    --bg-card-hover: rgba(30, 30, 45, 0.9);

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);

    /* Fonts */
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Poppins', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
}

/* =============================================
   Reset & Base
   ============================================= */

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

html {
    scroll-behavior: smooth;
}

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

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(57, 255, 20, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* =============================================
   Neon Effects
   ============================================= */

.neon-text-pink {
    color: var(--neon-pink);
    text-shadow:
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px var(--neon-pink),
        0 0 40px var(--neon-pink),
        0 0 80px var(--neon-pink);
}

.neon-text-cyan {
    color: var(--neon-cyan);
    text-shadow:
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px var(--neon-cyan),
        0 0 40px var(--neon-cyan),
        0 0 80px var(--neon-cyan);
}

.neon-text-green {
    color: var(--neon-green);
    text-shadow:
        0 0 5px #fff,
        0 0 10px #fff,
        0 0 20px var(--neon-green),
        0 0 40px var(--neon-green),
        0 0 80px var(--neon-green);
}

.neon-border-pink {
    border: 2px solid var(--neon-pink);
    box-shadow:
        0 0 5px var(--neon-pink),
        0 0 10px var(--neon-pink),
        inset 0 0 5px rgba(255, 0, 255, 0.3);
}

.neon-border-cyan {
    border: 2px solid var(--neon-cyan);
    box-shadow:
        0 0 5px var(--neon-cyan),
        0 0 10px var(--neon-cyan),
        inset 0 0 5px rgba(0, 255, 255, 0.3);
}

.neon-border-green {
    border: 2px solid var(--neon-green);
    box-shadow:
        0 0 5px var(--neon-green),
        0 0 10px var(--neon-green),
        inset 0 0 5px rgba(57, 255, 20, 0.3);
}

/* =============================================
   Navigation
   ============================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 3px;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-pink);
    box-shadow: 0 0 10px var(--neon-pink);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--neon-pink);
    box-shadow: 0 0 5px var(--neon-pink);
    transition: all 0.3s ease;
}

/* =============================================
   Hero Section
   ============================================= */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 100px 20px;
    background:
        linear-gradient(to bottom, transparent 0%, var(--bg-dark) 100%),
        radial-gradient(ellipse at center, rgba(255, 0, 255, 0.15) 0%, transparent 70%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><line x1="0" y1="100" x2="100" y2="0" stroke="rgba(255,0,255,0.1)" stroke-width="0.5"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
}

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

.hero-subtitle {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: flicker 3s infinite;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 15vw, 10rem);
    font-weight: 900;
    letter-spacing: 15px;
    margin-bottom: 20px;
    animation: glow 2s ease-in-out infinite alternate;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    letter-spacing: 3px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

.scroll-indicator {
    width: 20px;
    height: 30px;
    border: 2px solid var(--neon-cyan);
    border-radius: 10px;
    position: relative;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--neon-cyan);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

/* =============================================
   Buttons
   ============================================= */

.btn {
    display: inline-block;
    padding: 15px 40px;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: transparent;
    color: var(--neon-pink);
}

.btn-primary:hover {
    background: var(--neon-pink);
    color: var(--bg-dark);
    box-shadow: 0 0 30px var(--neon-pink);
}

.btn-secondary {
    background: transparent;
    color: var(--neon-cyan);
}

.btn-secondary:hover {
    background: var(--neon-cyan);
    color: var(--bg-dark);
    box-shadow: 0 0 30px var(--neon-cyan);
}

/* =============================================
   Sections
   ============================================= */

.section {
    padding: var(--section-padding);
    position: relative;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 5px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 60px;
    font-size: 1.1rem;
}

/* =============================================
   About Section
   ============================================= */

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-lead {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.about-features {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.feature {
    text-align: center;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.about-image {
    display: flex;
    justify-content: center;
}

.neon-frame {
    padding: 20px;
    border: 2px solid var(--neon-pink);
    box-shadow:
        0 0 10px var(--neon-pink),
        0 0 20px var(--neon-pink),
        inset 0 0 20px rgba(255, 0, 255, 0.2);
    position: relative;
}

.neon-frame::before,
.neon-frame::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--neon-cyan);
}

.neon-frame::before {
    top: -10px;
    left: -10px;
    border-right: none;
    border-bottom: none;
}

.neon-frame::after {
    bottom: -10px;
    right: -10px;
    border-left: none;
    border-top: none;
}

.placeholder-image {
    width: 300px;
    height: 400px;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.2), rgba(0, 255, 255, 0.2));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: var(--font-display);
    font-size: 2rem;
}

.placeholder-image .small {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 10px;
}

/* =============================================
   Menu Section
   ============================================= */

.menu {
    background: var(--bg-darker);
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.menu-tab {
    padding: 12px 30px;
    background: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text-secondary);
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-tab:hover,
.menu-tab.active {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.menu-item {
    background: var(--bg-card);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.menu-item:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    border-color: var(--neon-pink);
    box-shadow: 0 10px 30px rgba(255, 0, 255, 0.2);
}

.menu-item.hidden {
    display: none;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.menu-item-header h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.price {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--neon-green);
}

.menu-item-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* =============================================
   Gallery Section
   ============================================= */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item.large {
    grid-column: span 2;
    aspect-ratio: 2/1;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.9), rgba(30, 30, 45, 0.9));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-placeholder:hover {
    background: linear-gradient(135deg, rgba(30, 30, 45, 0.9), rgba(40, 40, 60, 0.9));
    transform: scale(1.02);
}

/* =============================================
   Events Section
   ============================================= */

.events {
    background: var(--bg-darker);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.event-card {
    display: flex;
    gap: 25px;
    background: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.15);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    padding: 15px;
    background: rgba(255, 0, 255, 0.1);
    border-radius: 10px;
    border: 1px solid var(--neon-pink);
}

.event-date .day {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 2px;
}

.event-date .date-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neon-pink);
    line-height: 1;
}

.event-date .month {
    font-size: 0.9rem;
    color: var(--text-secondary);
    letter-spacing: 2px;
}

.event-info h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.event-info p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.event-time {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid var(--neon-cyan);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--neon-cyan);
}

/* =============================================
   Contact Section
   ============================================= */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.contact-item h3 {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.contact-item a:hover {
    color: var(--neon-cyan);
}

.opening-hours {
    margin-top: 40px;
    padding: 30px;
    background: var(--bg-card);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.opening-hours h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.opening-hours ul li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.opening-hours ul li:last-child {
    border-bottom: none;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: transparent;
    transition: all 0.3s ease;
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.social-link:hover {
    transform: translateY(-3px);
}

.social-link.neon-border-pink:hover {
    background: var(--neon-pink);
    color: var(--bg-dark);
}

.social-link.neon-border-cyan:hover {
    background: var(--neon-cyan);
    color: var(--bg-dark);
}

.social-link.neon-border-green:hover {
    background: var(--neon-green);
    color: var(--bg-dark);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form-wrapper h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.contact-form select option {
    background: var(--bg-dark);
}

.contact-form .btn {
    width: 100%;
    margin-top: 10px;
}

/* Map */
.map-wrapper {
    margin-top: 40px;
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background: var(--bg-card);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.map-placeholder p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 10px;
}

/* =============================================
   Footer
   ============================================= */

.footer {
    background: var(--bg-darker);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo span {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 5px;
}

.footer-logo p {
    color: var(--text-muted);
    margin-top: 5px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-secondary);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.footer-links a:hover {
    color: var(--neon-cyan);
}

.footer-legal {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.age-warning {
    margin-top: 10px;
    color: var(--neon-pink);
}

/* =============================================
   Age Verification Modal
   ============================================= */

.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 8, 0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 1;
    visibility: visible;
    transition: all 0.5s ease;
}

.age-modal.hidden {
    opacity: 0;
    visibility: hidden;
}

.age-modal-content {
    text-align: center;
    padding: 60px;
    background: var(--bg-card);
    border-radius: 20px;
    border: 2px solid var(--neon-pink);
    box-shadow: 0 0 50px rgba(255, 0, 255, 0.3);
    max-width: 500px;
}

.age-modal-content h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    letter-spacing: 10px;
    margin-bottom: 30px;
}

.age-modal-content p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.age-question {
    font-size: 1.2rem;
    color: var(--text-primary) !important;
    margin-top: 20px !important;
}

.age-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

/* =============================================
   Animations
   ============================================= */

@keyframes glow {
    from {
        text-shadow:
            0 0 5px #fff,
            0 0 10px #fff,
            0 0 20px var(--neon-pink),
            0 0 40px var(--neon-pink),
            0 0 80px var(--neon-pink);
    }
    to {
        text-shadow:
            0 0 10px #fff,
            0 0 20px #fff,
            0 0 40px var(--neon-pink),
            0 0 80px var(--neon-pink),
            0 0 120px var(--neon-pink);
    }
}

@keyframes flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        opacity: 1;
    }
    20%, 24%, 55% {
        opacity: 0.6;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes scroll {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(15px);
        opacity: 0;
    }
}

/* =============================================
   Responsive Design
   ============================================= */

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.large {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: rgba(10, 10, 15, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.3s ease;
    }

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

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-title {
        letter-spacing: 5px;
    }

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

    .about-features {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .gallery-item.large {
        grid-column: span 1;
        aspect-ratio: 16/9;
    }

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

    .event-card {
        flex-direction: column;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .age-modal-content {
        margin: 20px;
        padding: 40px 30px;
    }

    .age-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px 0;
    }

    .hero-subtitle {
        font-size: 0.8rem;
        letter-spacing: 3px;
    }

    .section-title {
        letter-spacing: 2px;
    }

    .menu-categories {
        gap: 10px;
    }

    .menu-tab {
        padding: 10px 20px;
        font-size: 0.75rem;
    }

    .placeholder-image {
        width: 250px;
        height: 300px;
    }
}
