/* --- Setari Globale & Variabile --- */
:root {
    --primary-color: #6F4E37; /* O nuanta de maro cafea */
    --secondary-color: #F5F5DC; /* Bej/Crem */
    --dark-color: #333;
    --light-color: #fff;
    --accent-color: #E67E22; /* Un portocaliu pentru accente */
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Roboto', sans-serif;
}

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

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

.container {
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: var(--font-primary);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; text-align: center; padding-top: 2rem; }
p { margin-bottom: 1rem; }

/* --- Bara de Navigatie --- */
.navbar {
    background: var(--light-color);
    color: var(--dark-color);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.navbar .logo span {
    color: var(--accent-color);
}

.navbar nav ul {
    list-style: none;
    display: flex;
}

.navbar nav ul li a {
    color: var(--dark-color);
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar nav ul li a:hover {
    color: var(--accent-color);
}

/* --- Sectiunea Hero --- */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1497935586351-b67a49e012bf?q=80&w=2071') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--light-color);
}

.hero-content h1 {
    color: var(--light-color);
    font-size: 4rem;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 1rem auto 2rem;
}

.btn {
    display: inline-block;
    background: var(--accent-color);
    color: var(--light-color);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #d35400; /* O nuanta mai inchisa de portocaliu */
}

/* --- Stiluri pentru Sectiuni --- */
section {
    padding: 4rem 0;
}

.about {
    background: var(--light-color);
    text-align: center;
}

.about p {
    max-width: 800px;
    margin: auto;
}

.menu-highlight {
    background: var(--secondary-color);
}

.menu-items {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.contact {
    background: var(--primary-color);
    color: var(--light-color);
}

.contact h2 {
    color: var(--light-color);
}

.contact-info {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
    text-align: center;
}

.contact-info h3 {
    color: var(--accent-color);
}

/* --- Footer --- */
.footer {
    background: var(--dark-color);
    color: var(--light-color);
    text-align: center;
    padding: 1.5rem 0;
}

/* --- Responsive Design (pentru telefoane mobile) --- */
@media(max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .hero-content h1 { font-size: 2.8rem; }
    
    .navbar .container {
        flex-direction: column;
    }
    .navbar nav ul {
        padding-top: 1rem;
    }

    .menu-items, .contact-info {
        flex-direction: column;
    }
}
/* Stil pentru butonul de hartă */
.map-button {
    display: inline-block;
    padding: 10px 20px;
    margin-bottom: 20px; /* Spațiu sub buton */
    background-color: #5cb85c; /* Culoarea de fundal (verde, de exemplu) */
    color: white; /* Culoarea textului */
    text-decoration: none; /* Elimină sublinierea specifică link-urilor */
    border-radius: 5px; /* Colțuri rotunjite */
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.map-button:hover {
    background-color: #4cae4c; /* Culoare mai închisă la trecerea cu mouse-ul */
}