/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@400;500;600;700&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2D1810;
    background-color: #FEFEFE;
}

.website-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Styles */
.top-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    padding: 15px 40px;
    background-color: #F5E6D3;
    border-bottom: 1px solid #E5E7EB;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: none;
}

.logo-img {
    width: 100%;     /* imaginea va ocupa TOT containerul */
    height: 100%;
    object-fit: contain; /* păstrează proporțiile */
}

.logo-section h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 28px;
    color: #2D1810;
    margin: 0;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 40px;
}

.navigation a {
    text-decoration: none;
    color: #6B4E3D;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.navigation a:hover {
    color: #8B5A3C;
}

.actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.call-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background-color: #8B5A3C;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.call-button:hover {
    background-color: #6B4E3D;
}

/* Hero Section */
.hero-section {
    height: 320px;
    background: linear-gradient(180deg, #2D1810 0%, #4A2C1A 60%, #6B4E3D 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-content h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 48px;
    color: #F5E6D3;
    margin: 0;
}

.hero-content p {
    color: #E0C9A6;
    font-size: 18px;
    line-height: 28px;
    margin: 0;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.btn-primary {
    padding: 16px 32px;
    background-color: #D4A574;
    color: #2D1810;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #C19A68;
}

.btn-secondary {
    padding: 16px 32px;
    background-color: transparent;
    color: #D4A574;
    text-decoration: none;
    border-radius: 12px;
    border: 2px solid #D4A574;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #D4A574;
    color: #2D1810;
}

/* Menu Section */
.menu-section {
    flex: 1;
    background-color: #FDF8F3;
    padding: 40px 40px;
    display: flex;
    flex-direction: column;
}

.section-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 42px;
    color: #2D1810;
    margin: 0;
}

.section-header p {
    color: #6B4E3D;
    font-size: 18px;
    margin: 0;
}

.menu-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.menu-category {
    background-color: #FFFFFF;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(45, 24, 16, 0.08);
    display: flex;
    flex-direction: column;
}

.category-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.category-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.category-title h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 24px;
    color: #2D1810;
    margin: 0;
}

.category-title svg {
    color: #8B5A3C;
}

.divider {
    width: 100%;
    height: 2px;
    background-color: #E5E7EB;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.item-name {
    font-weight: 600;
    font-size: 16px;
    color: #2D1810;
}

.item-price {
    font-weight: 700;
    font-size: 16px;
    color: #8B5A3C;
}

.item-description {
    color: #6B4E3D;
    font-size: 14px;
    line-height: 20px;
    margin: 0;
}

/* Footer */
.footer {
    height: 200px;
    background-color: #2D1810;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.footer-content {
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.restaurant-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.restaurant-info h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 32px;
    color: #D4A574;
    margin: 0;
}

.restaurant-info p {
    color: #A0522D;
    font-size: 16px;
    margin: 0;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-item svg {
    color: #D4A574;
}

.contact-item span {
    color: #E0C9A6;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-header {
        flex-direction: column;
        height: auto;
        padding: 20px;
        gap: 20px;
    }

    .navigation {
        gap: 20px;
    }

    .hero-content h2 {
        font-size: 36px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .menu-categories {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-info {
        flex-direction: column;
        gap: 16px;
    }

    .menu-section {
        padding: 40px 20px;
    }

    .hero-section {
        padding: 40px 20px;
        height: auto;
        min-height: 320px;
    }

    .footer {
        padding: 40px 20px;
        height: auto;
    }
}

@media (max-width: 480px) {
    .logo-section h1 {
        font-size: 24px;
    }

    .hero-content h2 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .menu-category {
        padding: 24px;
    }
}

.actions img {
    width: 50px;
    height: 50px;
}

/* Buton meniu (hamburger) */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: #2D1810;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Transformare în X când meniul e activ */
.menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

/* Ascunde meniul implicit */
.navigation {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: absolute;
    top: 80px; /* sub header */
    left: 0;
    width: 100%;
    background-color: #F5E6D3;
    padding: 25px 0;
    box-shadow: 0 8px 20px rgba(45, 24, 16, 0.1);
    border-top: 2px solid #E0C9A6;
    z-index: 10;

    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
}

.navigation.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

/* Linkurile din meniu */
.navigation a {
    text-decoration: none;
    color: #2D1810;
    font-weight: 600;
    font-size: 18px;
    padding: 10px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: transparent;
}

/* Efect de hover elegant */
.navigation a:hover {
    background-color: #EBD7BD;
    color: #8B5A3C;
}

/* Stil pentru butonul hamburger */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 20;
    transition: transform 0.3s ease;
}

.menu-toggle:hover {
    transform: scale(1.1);
}

.menu-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: #5a3e2b;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Transformare în X */
.menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translateY(9px);
}
.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translateY(-9px);
}

@media (max-width: 768px) {
    .top-header {
        justify-content: space-between;
        flex-direction: row;
    }

    .actions {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }

    .menu-toggle {
        order: 1;
    }

    .actions a {
        order: 2;
    }
}


