/* Estilos Globales El Secreto de Dora */
:root {
    --brand-wood: #2c1b0e;
    --brand-parchment: #f4ecd8;
    --brand-accent: #8b4513;
    --brand-gold: #d4af37;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f4ecd8;
    color: var(--brand-wood);
    margin: 0;
    padding: 0;
    color-scheme: light;
}

.script-font { font-family: 'Great Vibes', cursive; }
.serif-font { font-family: 'Playfair Display', serif; }

.wood-bg {
    background-color: var(--brand-wood);
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/bar-barra-2.png');
    background-size: cover;
    background-position: center;
    color: white;
}

.parchment-card {
    background-color: white;
    border-top: 8px solid var(--brand-accent);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
}

.nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(244, 236, 216, 0.3);
    background-color: rgba(244, 236, 216, 0.1);
    border-radius: 0.375rem;
    color: var(--brand-parchment);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: all 0.2s;
}

.nav-button:hover {
    border-color: var(--brand-parchment);
    background-color: rgba(244, 236, 216, 0.2);
}

.nav-button.active {
    border-color: var(--brand-parchment);
    background-color: rgba(244, 236, 216, 0.3);
}

.btn-primary {
    background-color: var(--brand-accent);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s;
    border: none;
    cursor: pointer;
}

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

.btn-secondary {
    background-color: var(--brand-gold);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s;
    border: none;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #b8860b;
}

/* Sticky Mobile Nav */
.sticky-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: rgba(44, 27, 14, 0.95);
    color: var(--brand-parchment);
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(139, 69, 19, 0.3);
}

.sticky-nav-title {
    font-family: 'Great Vibes', cursive;
    font-size: 1.5rem;
    text-decoration: none;
    color: inherit;
}

.sticky-nav-btn {
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 700;
    border: 1px solid rgba(244, 236, 216, 0.5);
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    text-decoration: none;
    color: inherit;
}

@media (min-width: 640px) {
    .sticky-nav {
        display: none;
    }
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .nav-button {
        width: 100%;
        padding: 0.5rem;
        font-size: 0.65rem;
    }
}
