/* Resetări și stiluri de bază */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f6f1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23333"/></svg>');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 6rem 2rem;
    margin-bottom: 3rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: normal;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    font-style: italic;
}

.btn-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.btn {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: #d4af37;
    color: #1a1a1a;
}

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

.btn-outline {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background-color: white;
    color: #1a1a1a;
}

/* Menu Section */
.section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: normal;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: #d4af37;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #666;
    font-style: italic;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.menu-category {
    margin-bottom: 3rem;
}

.category-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    text-align: center;
    font-weight: normal;
    border-bottom: 1px solid #b3b3b3;
    padding-bottom: 0.5rem;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.menu-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

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

.item-name {
    font-weight: bold;
    font-size: 1.2rem;
    color: #1a1a1a;
}

.item-price {
    color: #d4af37;
    font-weight: bold;
}

.item-description {
    color: #666;
    font-style: italic;
}

.contact-info {
    margin: 2rem 0;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.hours {
    margin-top: 2rem;
}

.copyright {
    border-top: 1px solid #333;
    color: #999;
    font-size: 0.9rem;
}

/* Divider */
.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #d4af37, transparent);
    margin: 3rem auto;
    width: 80%;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .btn-container {
        flex-direction: column;
        align-items: center;
    }

    .menu-items {
        grid-template-columns: 1fr;
    }

}

.restaurant-info h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2rem;
    color: #d4af37;
}

.contact-info {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 0;
}

.contact-item a {
    color: #d4af37;       /* culoarea aurie a temei */
    text-decoration: none; /* fără underline */
    font-weight: bold;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #c19d2e;       /* nuanță mai închisă la hover */
}

@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }
}

.menu-section {
    background-color: #f9f6f1;
}

body {
    display: flex;
    flex-direction: column; /* așază elementele pe coloană */
}

main {
    flex: 1;               /* ia tot spațiul liber și împinge footer-ul jos */
}

.nav-arrow {
    margin: 0 1rem;
    font-size: 1.5rem;
    text-decoration: none;
    color: #d4af37;
}
.nav-arrow:hover {
    color: #c19d2e;
}

.btn-today:hover {
    background-color: #d4af37;
    color: #1a1a1a;
    cursor: default;
}

.past-menu .menu-category {
    background-color: #dfe3e6;
    color: rgba(26, 26, 26, 0.6);
}

.past-menu .category-title {
    color: rgba(26, 26, 26, 0.6);
}

.menu-list {
    padding-left: 1rem;
}

.order-message {
    text-align: center;
    margin: 2rem 0 0 0;
    font-weight: bold;
    font-size: 1.2rem;
    color: #5a3e2b;
    font-family: 'Georgia', serif;
    background: transparent;
    padding: 0;
    border-radius: 0;
}

/* --- Stiluri noi pentru textele adăugate (UPDATE: LĂȚIME MARE) --- */

/* Textul introductiv de sus */
.bistro-intro {
    max-width: 1200px; /* Lățime maximă mărită (era 800px) */
    width: 100%;       /* Se asigură că ocupă spațiul disponibil */
    margin: 0 auto 2rem auto;
    text-align: center;
    padding: 0;        /* Am scos padding-ul lateral */
    color: #4a4a4a;
    font-size: 1.2rem; /* Ușor mai mare pentru lizibilitate pe lățime mare */
    font-style: italic;
    line-height: 1.6;
}

/* Containerul pentru textul de jos */
.bistro-details {
    max-width: 1200px; /* Lățime maximă mărită (era 900px) */
    width: 100%;
    margin: 3rem auto 0 auto;
    text-align: center;
    padding: 0;        /* Am scos padding-ul lateral */
    color: #333;
}

/* Paragrafele din textul de jos */
.bistro-details p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.6;
    /* Opțional: Dacă textul e foarte lat, uneori e greu de urmărit rândul.
       Dacă vrei, poți șterge linia de mai jos, dar "max-width" de sus face treaba grea. */
}

/* Separator auriu */
.divider-small {
    height: 2px;
    width: 100px; /* L-am făcut puțin mai lat */
    background-color: #d4af37;
    margin: 0 auto 2rem auto;
}

/* Responsive: Pe mobil trebuie să aibă totuși margini ca să nu se lipească de ecran */
@media (max-width: 768px) {
    .bistro-intro, .bistro-details {
        padding: 0 1rem; /* Adăugăm padding doar pe mobil */
    }

    .bistro-intro {
        font-size: 1rem;
    }
}

/* Butonul special pentru apelare */
.btn-call {
    font-size: 1.15rem;
    padding: 0.8rem 2.5rem;
    border-radius: 50px; /* Îi dă un aspect de "pilulă" mai vizibil */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-weight: bold;
}

.btn-call:hover {
    transform: translateY(-2px); /* Se ridică puțin la hover */
    box-shadow: 0 6px 12px rgba(212, 175, 55, 0.3); /* Umbră aurie subtilă */
}

/* Ajustare pentru ecranele mici (mobil) */
@media (max-width: 768px) {
    .btn-call {
        font-size: 1.05rem;
        padding: 0.7rem 1.5rem;
        display: inline-block;
        width: 90%; /* Buton mai lat pe mobil pentru a fi ușor de apăsat cu degetul */
        max-width: 350px;
    }
}


