/* Estilos personalizados */
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Montserrat', sans-serif;
    color: #555;
    background-color: #FDF8F5; /* Color base suave */
}

.font-handwriting {
    font-family: 'Great Vibes', cursive;
}

/* --- Estructura Parallax --- */
.parallax-container {
    position: relative;
    overflow: hidden;
    /* CAMBIO: Reemplazado vh por la variable --vh para iOS */
    height: calc(var(--vh, 1vh) * 80);
}

/* CAMBIO: Nueva clase para reemplazar h-screen */
.h-screen-dynamic {
     height: calc(var(--vh, 1vh) * 100);
}

.parallax-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%; /* Un poco más alto para permitir el movimiento vertical */
    background-size: cover;
    background-position: center;
    z-index: -1;
}

/* --- Menú de Navegación --- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    /* El fondo y la transición ahora se controlan con JS */
}
nav a {
    transition: color 0.3s;
}
nav a:hover {
    color: #E5E7EB; /* Gris claro para hover sobre blanco */
}

/* --- Secciones de Contenido --- */
.content-section {
    /* Padding responsive: más estrecho en móvil, más ancho en escritorio */
    padding: 10vh 1rem;
    text-align: center;
    background-color: #fff;
}
@media (min-width: 640px) {
    .content-section {
        padding: 10vh 2rem;
    }
}

.content-section.bg-alt {
     background-color: #FDF8F5;
}
.content-section h2 {
    /* Tamaño de fuente responsive */
    font-size: 1.75rem; /* 28px */
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
    .content-section h2 {
        font-size: 2rem; /* 32px */
    }
}

.content-section p {
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 0.95rem;
}
@media (min-width: 640px) {
    .content-section p {
        font-size: 1rem;
    }
}

/* --- Formulario --- */
/* CAMBIO: Estilo del botón corregido con CSS estándar */
.btn-primary {
    display: inline-flex;
    justify-content: center;
    font-size: 0.875rem; /* 14px */
    font-weight: 500;
    cursor: pointer;
    background-color: transparent;
    /* Tus estilos personalizados */
    padding: 9px;
    border: solid 1px rgb(153, 119, 86);
    border-radius: 10px;
    color: rgb(153, 119, 86);
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background-color: rgb(153, 119, 86);
    color: white;
    transform: scale(1.05);
}

textarea{width:100%}
.form-container {
    max-width: 700px;
    margin: 0 auto;
}

/* CAMBIO: Eliminadas todas las reglas de .form-label, .form-input, .record-list-item, etc. 
   porque ahora están directamente en el HTML como clases de Tailwind. */