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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cormorant Garamond', serif;
    background: #1a3d2e;
    color: #f5f5f5;
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
    font-size: 1.1rem;
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

/* Header/Hero Section */
.hero {
    padding: 60px 0 20px;
    background: #1a3d2e;
    margin-bottom: 10px;
    text-align: center;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.restaurant-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 500;
    color: #f5f5f5;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin: 0;
}

.tree-icon {
    opacity: 0.8;
}

.tree-icon img {
    width: 240px;
    height: 320px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}



/* Menu Sections */
.menu {
    padding: 0 0 100px;
}

.menu-section {
    margin-bottom: 100px;
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 500;
    color: #f0f0f0;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}



.section-description {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: #d0d0d0;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 0.5px;
    font-weight: 300;
}

/* Dish Items */
.dish-item {
    margin-bottom: 50px;
    padding: 0;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.dish-item:hover {
    transform: none;
}

.dish-item:last-child {
    margin-bottom: 0;
}

.dish-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: #f0f0f0;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    position: relative;
}

.dish-description {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 300;
    font-style: normal;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.macros {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    padding-top: 15px;
    border-top: 1px solid #4a6156;
    margin-top: 15px;
}

.macro {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #c0c0c0;
    background: transparent;
    padding: 0;
    border: none;
    letter-spacing: 0.3px;
}

.macro:not(:last-child)::after {
    content: '•';
    margin-left: 8px;
    color: #ccc;
}

/* Footer */
.footer {
    text-align: center;
    padding: 60px 0;
    margin-top: 80px;
    border-top: 1px solid #4a6156;
}

.footer-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: #d0d0d0;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .header-content {
        gap: 15px;
    }
    
    .restaurant-name {
        font-size: 3rem;
        letter-spacing: 4px;
    }
    
    .tree-icon img {
        width: 180px;
        height: 240px;
        filter: brightness(0) invert(1);
    }
    
    .section-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .dish-item {
        margin-bottom: 40px;
    }
    
    .dish-name {
        font-size: 1.6rem;
    }
    
    .dish-description {
        font-size: 1.2rem;
    }
    
    .macros {
        gap: 6px;
    }
    
    .macro {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        gap: 12px;
    }
    
    .restaurant-name {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
    
    .tree-icon img {
        width: 160px;
        height: 200px;
        filter: brightness(0) invert(1);
    }
    
    .section-title {
        font-size: 1.7rem;
        letter-spacing: 1px;
    }
    
    .dish-name {
        font-size: 1.5rem;
    }
    
    .dish-description {
        font-size: 1.1rem;
    }
}