/* EscapadaRuralZaragoza.es — Tema Verde Naturaleza */
:root {
    --verde: #2D6A4F;
    --verde-light: #40916C;
    --verde-bg: #F0F7F4;
    --crema: #FFF8F0;
    --terra: #BC6C25;
    --terra-dark: #8B4513;
    --text: #2C2C2C;
    --text-light: #555;
    --white: #FFFFFF;
}

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

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: var(--crema);
    line-height: 1.75;
}

header {
    background: var(--verde);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
nav {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo { font-size: 1.3rem; font-weight: bold; color: var(--white); }
.logo span { color: rgba(255,255,255,0.7); }
nav ul { list-style: none; display: flex; gap: 1.5rem; }
nav a { color: rgba(255,255,255,0.9); text-decoration: none; font-size: 0.95rem; }
nav a:hover { color: var(--white); text-decoration: underline; }

.hero {
    background: linear-gradient(135deg, var(--verde) 0%, var(--verde-light) 100%);
    color: var(--white);
    text-align: center;
    padding: 5rem 2rem;
}
.hero h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.hero p { font-size: 1.15rem; max-width: 650px; margin: 0 auto; opacity: 0.95; }

main { max-width: 1100px; margin: 0 auto; padding: 2rem; }
section { margin-bottom: 3rem; }

h2 {
    font-size: 1.8rem;
    color: var(--verde);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--verde-light);
}
h3 { color: var(--terra-dark); margin: 1.2rem 0 0.6rem; font-size: 1.25rem; }
h4 { color: var(--verde); margin: 0.8rem 0 0.4rem; }
p { margin-bottom: 1rem; }
a { color: var(--verde); }

.escapada, .ruta {
    background: var(--white);
    border-left: 4px solid var(--verde-light);
    border-radius: 0 10px 10px 0;
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.alojamiento-destacado {
    background: var(--verde-bg);
    border: 2px solid var(--verde);
    border-radius: 12px;
    padding: 2rem;
    margin: 1.5rem 0;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}
.feature {
    background: var(--white);
    padding: 1.2rem;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.feature h4 { margin-top: 0; }
.feature p { margin-bottom: 0; font-size: 0.95rem; color: var(--text-light); }

ul, ol { margin: 0.5rem 0 1rem 1.5rem; }
li { margin-bottom: 0.4rem; }

.gastro-lista li { margin-bottom: 0.8rem; }

.cta { display: flex; gap: 1rem; margin-top: 1.5rem; flex-wrap: wrap; }
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary { background: var(--verde); color: var(--white); }
.btn-secondary { background: var(--terra); color: var(--white); }
.btn-primary:hover, .btn-secondary:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }

details {
    background: var(--white);
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 1rem;
    padding: 1rem 1.5rem;
}
summary { cursor: pointer; font-weight: bold; color: var(--verde); font-size: 1.02rem; }
details[open] summary { margin-bottom: 0.8rem; }

footer {
    text-align: center;
    padding: 2rem;
    background: var(--verde);
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 1.8rem; }
    nav { flex-direction: column; gap: 0.8rem; }
    .features { grid-template-columns: 1fr; }
    .cta { flex-direction: column; }
}
