/* --- VARIABLES Y CONFIGURACIÓN --- */
:root {
    --dark-blue: #0f172a;
    --gold: #fbbf24;
    --btn-gold: #d97706;
    --btn-hover: #b45309;
    --brown-text: #785a28;
    --gray-text: #4b5563;
    --white: #ffffff;
    --bg-light: #f9fafb;
    --font-main: 'Montserrat', sans-serif;
    --font-title: 'Playfair Display', serif; /* Aquí puedes poner 'geographica-hand' si tienes el archivo */
}

@font-face {
    font-family: 'freePen';
    src: url('fonts/freepen.ttf');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-light);
    color: var(--gray-text);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- HERO SECTION --- */
.hero {
    display: flex;
    min-height: 60vh;
    background-color: var(--dark-blue);
    background-image: url('img/back.jpg');
    background-size: cover;
    overflow: hidden;
}

.hero-content {
    width: 50%;
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.spacer { width: 60px; }

.main-logo {
    height: 100px;
    width: auto;
}

.lang-switch a {
    color: var(--gray-text);
    text-decoration: none;
    font-weight: bold;
    margin-left: 15px;
}

.lang-switch a.active {
    color: var(--gold);
    text-decoration: underline;
}

.hero-text-container {
    margin-top: 100px;
}

.hero-text-container h1 {
    font-family: var(--font-title);
    font-size: 3.5rem;
    color: var(--brown-text);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-text-container p {
    font-size: 1.25rem;
    max-width: 500px;
}

.hero-image {
    width: 50%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- INFO SECTION --- */
.main-info {
    padding: 80px 0;
    background-color: var(--white);
    text-align: center;
}

.info-header {
    margin-bottom: 40px;
}

.label {
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.info-header h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-top: 10px;
}

.info-body {
    max-width: 850px;
    margin: 0 auto 60px;
    text-align: left;
    font-size: 1.1rem;
}

.info-body p {
    margin-bottom: 20px;
}

/* GALERÍA */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 850px;
    margin: 0 auto;
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* --- CTA SECTION --- */
.cta-banner {
    background-color: #f3f4f6;
    padding: 60px 0;
}

.cta-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-logo {
    height: 80px;
}

.cta-text h3 {
    font-size: 2rem;
    color: var(--dark-blue);
}

.cta-text p {
    font-size: 1.5rem;
    color: var(--btn-gold);
    font-weight: bold;
}

.btn-gold {
    background-color: var(--btn-gold);
    color: var(--white);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-gold:hover {
    background-color: var(--btn-hover);
    transform: translateY(-3px);
}

.arrow {
    margin-left: 10px;
    font-size: 1.2rem;
}

/* --- FOOTER --- */
.main-footer {
    background-color: var(--dark-blue);
    padding: 30px 0;
    color: #9ca3af;
    text-align: center;
    font-size: 0.85rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .hero { flex-direction: column; }
    .hero-content, .hero-image { width: 100%; }
    .hero-image { height: 400px; }
    .hero-text-container { margin-top: 40px; padding-bottom: 40px; }
}

@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .cta-flex { flex-direction: column; text-align: center; }
    .hero-text-container h1 { font-size: 2.5rem; }
}