@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500&display=swap');

:root {
    --primary-color: #3a2718;
    --secondary-color: #ec8a3e;
    --accent-color: #f3e9dc;
    --text-color: #333;
    --light-text: #777;
    --white: #ffffff;
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Poppins', sans-serif;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    background-color: #f8f5f0;
    line-height: 1.5;
    padding: 0;
}

.menu-container {
    max-width: 1300px;
    margin: 20px auto;
    background-color: var(--white);
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
    padding: 2rem;
    position: relative;
    overflow: hidden;
	
}

.header-logo {
    text-align: center;
    border-bottom: 2px solid var(--accent-color);
}

.header-logo p {
    color: var(--secondary-color);
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 1.2rem;
}

.header-logo h1 {
    font-family: var(--heading-font);
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.menu-content {
    display: flex;
    gap: 2rem;
}

.menu-column {
    flex: 1;
}

.menu-section {
    position: relative;
}

.menu-section h2 {
    font-family: var(--heading-font);
    color: var(--primary-color);
    font-size: 1.4rem;
    border-bottom: 1px solid var(--accent-color);
}

.price-label {
    position: absolute;
    right: 0;
    top: 0;
    font-weight: 500;
    color: var(--primary-color);
    font-size: 0.9rem;
}



.item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.item-name {
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.95rem;
    flex: 1;
}

.item-dots {
    flex: 0 0 auto;
    border-bottom: 1px dotted var(--light-text);
    margin: 0 0.5rem;
    height: 0.7rem;
    min-width: 1rem;
}

.item-price {
    flex: 0 0 auto;
    font-weight: 500;
    color: var(--primary-color);
    text-align: right;
    font-size: 0.95rem;
}

.item-description {
    font-size: 0.8rem;
    color: var(--light-text);
    margin-top: 0.1rem;
}

.note {
    font-size: 0.75rem;
    font-style: italic;
    color: var(--light-text);
    margin-top: 0.5rem;
    text-align: center;
}

.menu-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 2px solid var(--accent-color);
    font-size: 0.85rem;
    color: var(--primary-color);
}

.hours {
    font-weight: 500;
}

.social {
    color: var(--secondary-color);
    font-weight: 500;
}

.decorative-image {
    position: absolute;
    opacity: 0.1;
    z-index: 0;
}

.coffee-bean-1 {
    top: 10%;
    left: 5%;
    width: 60px;
    transform: rotate(-30deg);
}

.coffee-bean-2 {
    bottom: 15%;
    right: 5%;
    width: 70px;
    transform: rotate(25deg);
}

.leaf-1 {
    top: 40%;
    right: 10%;
    width: 80px;
    transform: rotate(120deg);
}

.leaf-2 {
    bottom: 30%;
    left: 8%;
    width: 90px;
    transform: rotate(-10deg);
}

.menu-item:hover .item-name {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .menu-content {
        flex-direction: column;
        gap: 0;
    }
    
    .menu-container {
        padding: 1.5rem;
        margin: 10px;
    }
    
    .header-logo h1 {
        font-size: 2rem;
    }
    
    .menu-section h2 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .menu-container {
        padding: 1rem;
        margin: 0;
        border-radius: 0;
    }
    
    .header-logo h1 {
        font-size: 1.8rem;
    }
    
    .item-name, .item-price {
        font-size: 0.9rem;
    }
    
    .item-description {
        font-size: 0.75rem;
    }
}
