:root {
    --primary-color: #c5a059;
    --bg-color: #ffffff;
    --text-color: #333333;
    --light-gray: #f9f9f9;
}

* {
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header:hover {
    background-color: #fff;
}

.logo img {
    height: 50px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.lang-reservation {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switcher a {
    text-decoration: none;
    color: #999;
    font-size: 0.8rem;
}

.lang-switcher a.active {
    color: var(--primary-color);
    font-weight: bold;
}

.reservation-btn {
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 2px;
}

/* Sections */
section {
    padding: 100px 10%;
}

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

h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
}

/* Hero */
.hero {
    height: 100vh;
    /* La imagen se pone via style attribute en el twig */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 0;
}

.hero h1 {
    font-size: clamp(3rem, 10vw, 7rem);
    margin: 0;
    color: var(--primary-color);
    letter-spacing: 15px;
    font-weight: 300;
    text-transform: uppercase;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.btn-main {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 13px 30px;
    text-decoration: none;
    font-weight: bold;
    margin-left: 10px;
    display: inline-block;
}

/* Carta */
.section-carta {
    background-color: #fff;
    text-align: center;
}

.subtitle {
    font-style: italic;
    color: #666;
    margin-bottom: 40px;
}

.carta-text {
    max-width: 800px;
    margin: 0 auto 50px;
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.menu-categories a {
    text-decoration: none;
    color: var(--text-color);
    border: 1px solid #ddd;
    padding: 10px 20px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.menu-categories a:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Nosotros */
.nosotros-grid, .staff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 100px;
}

.nosotros-img img, .staff-img img {
    width: 100%;
    border-radius: 4px;
}

.nosotros-info h2, .staff-info h2 {
    text-align: left;
}

/* Regala */
.section-regala {
    background-color: var(--light-gray);
    text-align: center;
}

/* Contacto */
.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.schedule h3 {
    margin-top: 30px;
    color: var(--primary-color);
}

/* Footer */
footer {
    padding: 50px 10%;
    background-color: #fff;
    text-align: center;
    border-top: 1px solid #eee;
}

.social {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social a {
    color: var(--primary-color);
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 10px;
    }
    nav ul {
        gap: 10px;
        margin-top: 10px;
    }
    .hero h1 {
        font-size: 3rem;
    }
    .nosotros-grid, .staff-grid, .contacto-grid {
        grid-template-columns: 1fr;
    }
}
