/* Alpine Table Menu - Responsive CSS */

:root {
    --forest-deep: #2d3d2f;
    --pine-green: #4a6352;
    --stone-gray: #8a8d8f;
    --cream: #f7f4ed;
    --warm-white: #fefdfb;
    --copper: #b87333;
    --earth-brown: #6b5446;
    --soft-gold: #d4af37;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 100%);
    color: var(--forest-deep);
    line-height: 1.6;
    min-height: 100vh;
    padding: 0;
    overflow-x: hidden;
}

.menu-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--warm-white);
    box-shadow: 0 20px 60px rgba(45, 61, 47, 0.15);
    position: relative;
}

/* Decorative mountain silhouette */
.menu-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, rgba(74, 99, 82, 0.05), transparent);
    pointer-events: none;
}

.header {
    text-align: center;
    padding: 80px 40px 60px;
    border-bottom: 1px solid rgba(74, 99, 82, 0.2);
    position: relative;
    animation: fadeIn 1s ease-out;
}

.mountain-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    opacity: 0;
    animation: slideDown 1s ease-out 0.3s forwards;
}

.mountain-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--pine-green);
}

h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--forest-deep);
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.5s forwards;
}

.subtitle {
    font-size: 0.95rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--pine-green);
    font-weight: 300;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.7s forwards;
}

.menu-section {
    padding: 80px 60px;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.9s forwards;
}

.menu-section:nth-child(3) {
    animation-delay: 1.1s;
    background: linear-gradient(to bottom, transparent, rgba(247, 244, 237, 0.3));
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--forest-deep);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--soft-gold);
}

.section-description {
    font-size: 0.9rem;
    color: var(--stone-gray);
    font-style: italic;
    margin-top: 20px;
}

.menu-category {
    margin-bottom: 50px;
}

.category-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--pine-green);
    margin-bottom: 30px;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(74, 99, 82, 0.15);
    padding-bottom: 10px;
}

.menu-item {
    margin-bottom: 35px;
    transition: transform 0.3s ease;
    padding: 10px 0;
}

.menu-item:hover {
    transform: translateX(5px);
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.item-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--forest-deep);
    flex: 1;
    position: relative;
}

.item-name::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    right: 80px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(138, 141, 143, 0.3), transparent);
}

.item-price {
    font-weight: 500;
    color: var(--copper);
    font-size: 1.1rem;
    margin-left: 20px;
    white-space: nowrap;
}

.item-description {
    font-size: 0.9rem;
    color: var(--stone-gray);
    line-height: 1.5;
    font-weight: 300;
    margin-left: 0;
}

.signature {
    position: relative;
    padding-left: 15px;
}

.signature::before {
    content: '★';
    position: absolute;
    left: 0;
    color: var(--soft-gold);
    font-size: 0.8rem;
}

.footer {
    text-align: center;
    padding: 50px 40px;
    border-top: 1px solid rgba(74, 99, 82, 0.2);
    background: var(--cream);
}

.footer-text {
    font-size: 0.85rem;
    color: var(--stone-gray);
    font-style: italic;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Design - Mobile */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .menu-section {
        padding: 50px 30px;
    }

    .header {
        padding: 50px 30px 40px;
    }

    .item-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .item-name::after {
        display: none;
    }

    .item-price {
        margin-left: 0;
        margin-top: 5px;
    }
}

/* Subtle parallax effect on scroll */
@media (prefers-reduced-motion: no-preference) {
    .menu-section {
        transition: transform 0.1s ease-out;
    }
}