:root {
  --primary-red: #a50024;
  --red-dark: #821930;
  --red-light: #c9284b;
  --white: #FFFFFF;
  --gray-light: #F5F5F7;
  --gray-dark: #333333;
  --gray-darker: #1a1a1a;
  --accent-blue: #0066CC;
  --accent-gold: #D4AF37;
  --success-green: #2E8B57;
    --radius: 8px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--gray-light);
    color: var(--gray-darker);
    line-height: 1.6;
    min-height: 100vh;
}

.menu {
    max-width: 1000px;
    margin: 100px auto;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(50px);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    border: 1.25px solid #00000050;
    border-top: none;
}

.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--accent-gold));
}

h1 {
    text-align: center;
    color: var(--primary-red);
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 600;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 20px;
}

h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--gray-light);
    padding: 20px 25px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 15px;
    border: 1px solid var(--gray-medium);
}

.category-header:hover {
    background: #e9e9e9;
}

.category-header h2 {
    margin: 0;
    padding: 0;
    border: none;
    color: var(--primary-red);
    font-size: 1.4rem;
    font-weight: 600;
}

.category-header .badge {
    margin: 5px;
    background: var(--gray-darker);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.category-header .toggle-icon {
    font-size: 1.2rem;
    color: var(--primary-red);
    transition: var(--transition);
}

.category-content {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s ease;
    margin-bottom: 20px;
}

.category-content.active {
    max-height: 5000px; /* Large enough to contain all content */
}

.dish {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid #00000025;
    transition: var(--transition);
    position: relative;
    padding: 24px;
}

.dish:last-child {
    border-bottom: none;
}

.dish span:first-child {
    flex: 1;
    padding-right: 30px;
    color: var(--gray-darker);
    line-height: 1.5;
    font-weight: 400;
}

.price {
    font-weight: 600;
    color: var(--primary-red);
    font-size: 1.1rem;
    white-space: nowrap;
    min-width: 80px;
    text-align: right;
}

.highlight {
    background: linear-gradient(135deg, rgba(255, 187, 0, 0.1) 0%, rgba(255, 187, 0, 0.05) 100%);
    padding: 24px;
    border-radius: var(--radius);
    border-left: 2px solid var(--accent-gold);
    margin: 30px 0;
    position: relative;
}

.highlight::after {
    content: 'Klassiker';
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: var(--accent-gold);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.new {
    background: linear-gradient(135deg, rgba(41, 216, 117, 0.1) 0%, rgba(41, 216, 117, 0.05) 100%);
    padding: 24px;
    border-radius: var(--radius);
    border-left: 2px solid var(--success-green);
    margin: 30px 0;
    position: relative;
}

.new::after {
    content: 'NEU';
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: var(--success-green);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-badge {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-medium);
    color: var(--gray-darker);
    font-size: 0.9rem;
}

/* Professional subtle animations */
@keyframes subtleFadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu {
    animation: subtleFadeIn 0.6s ease-out;
}

/* Enhanced responsive design */
@media (max-width: 768px) {
    body {
        padding: 15px;
    }
    
    .menu {
        padding: 30px 25px;
    }
    
    h1 {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .category-header h2 {
        font-size: 1.3rem;
    }
    
    .dish {
        flex-direction: column;
        align-items: stretch;
        padding: 15px 0;
    }
    
    .dish span:first-child {
        padding-right: 0;
        margin-bottom: 8px;
    }
    
    .price {
        align-self: flex-end;
        text-align: left;
        min-width: auto;
    }
    
    .new::after, .highlight::after {
        position: relative;
        top: auto;
        right: auto;
        display: inline-block;
        margin-left: 10px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }
    
    .menu {
        padding: 25px 20px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .category-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .category-header .badge {
        margin-top: 8px;
    }
}

/* Print styles */
@media print {
    body {
        background: white;
        padding: 0;
    }
    
    .menu {
        box-shadow: none;
        padding: 20px;
    }
    
    .category-content {
        max-height: none !important;
    }
}