/* Fuentes de Google Fonts para un toque romántico y elegante */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Montserrat:wght@300;400;600&display=swap');

:root {
    /* Paleta de colores oscuros con acentos suaves */
    --color-dark-bg: #1a1a2e; /* Fondo principal azul noche */
    --color-darker-bg: #0f0f1d; /* Fondo más oscuro para header/footer */
    --color-section-bg: #282a36; /* Fondo de sección gris azulado suave */
    --color-text-light: #f0f0f0; /* Texto claro principal */
    --color-text-dim: #b0b0b0; /* Texto secundario/apagado */
    --color-accent-gold: #FFD700; /* Oro para acentos especiales (compromiso) */
    --color-accent-rose: #E91E63; /* Rosa para enlaces/botones (amor) */
    --color-button-hover: #F48FB1; /* Rosa claro en hover */
    --color-shadow: rgba(0, 0, 0, 0.6); /* Sombra pronunciada */
}

body {
    font-family: 'Montserrat', sans-serif; /* Fuente moderna y legible */
    background-color: var(--color-dark-bg);
    color: var(--color-text-light);
    margin: 0;
    padding: 0;
    line-height: 1.7;
    overflow-x: hidden;
    scroll-behavior: smooth; /* Desplazamiento suave al hacer clic en enlaces internos */
}

/* Contenedor principal para centrar contenido */
main {
    max-width: 900px; /* Un poco más estrecho para un toque íntimo */
    margin: 30px auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: var(--color-darker-bg);
    padding: 1.5rem 0;
    box-shadow: 0 4px 10px var(--color-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: 'Playfair Display', serif; /* Fuente elegante para el logo */
    font-size: 2em;
    font-weight: 700;
    color: var(--color-accent-gold); /* Color oro para el logo */
    text-decoration: none;
    letter-spacing: 1px;
}

/* Navegación */
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav a {
    color: var(--color-text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 5px;
    right: 0;
    background: var(--color-accent-rose); /* Rosa para subrayado */
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
    left: 0;
    background: var(--color-accent-rose);
}

nav a:hover {
    color: var(--color-accent-rose);
    transform: translateY(-2px);
}

/* Secciones generales */
section {
    background-color: var(--color-section-bg);
    padding: 60px 40px; /* Más padding para un look premium */
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 16px var(--color-shadow);
    text-align: center; /* Centrar el texto en las secciones */
}

section h2 {
    font-family: 'Playfair Display', serif; /* Fuente elegante para títulos de sección */
    font-size: 2.8em;
    color: var(--color-accent-gold);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-dark-bg);
    position: relative;
    display: inline-block; /* Para que la línea debajo del título se ajuste */
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px; /* Un poco más larga */
    height: 4px;
    background-color: var(--color-accent-gold);
    border-radius: 2px;
}

section p {
    color: var(--color-text-dim);
    margin-bottom: 20px;
    font-size: 1.15em; /* Texto un poco más grande */
    line-height: 1.8;
    max-width: 700px; /* Limita el ancho del párrafo para mejor legibilidad */
    margin-left: auto;
    margin-right: auto;
}

/* Sección Hero (Inicio) - La Propuesta */
.hero {
    background: linear-gradient(to bottom right, var(--color-darker-bg) 0%, #3a002b 100%); /* Degradado más profundo */
    padding: 120px 20px;
    border-radius: 12px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-content h2 {
    font-family: 'Montserrat', sans-serif; /* Para la pregunta introductoria */
    font-size: 2.2em;
    color: var(--color-text-light);
    margin-bottom: 15px;
    border-bottom: none;
    padding-bottom: 0;
}
.hero-content h2::after {
    display: none;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif; /* Para la pregunta principal */
    font-size: 4.5em; /* Muy grande para el impacto */
    color: var(--color-accent-gold); /* Color oro */
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6); /* Resplandor dorado */
    margin-bottom: 30px;
}

.hero-content p {
    font-size: 1.5em;
    color: var(--color-text-light);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

/* Botones (Call to Action) */
.btn {
    display: inline-block;
    background-color: var(--color-accent-rose); /* Rosa para el botón */
    color: #fff;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2em;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.btn:hover {
    background-color: var(--color-button-hover);
    transform: translateY(-5px);
    box-shadow: 0 8px 16px var(--color-shadow);
}

/* Sección de respuesta / Llamada a la acción final */
.call-to-action {
    background-color: var(--color-darker-bg); /* Fondo más oscuro para destacar */
    padding: 80px 40px;
    border: 2px solid var(--color-accent-gold); /* Borde dorado */
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.4); /* Resplandor */
}

.call-to-action h2 {
    color: var(--color-accent-gold);
    font-size: 3em;
}

.call-to-action p {
    font-size: 1.3em;
    color: var(--color-text-light);
    margin-bottom: 30px;
}

/* Footer */
footer {
    background-color: var(--color-darker-bg);
    color: var(--color-text-dim);
    text-align: center;
    padding: 2rem 0;
    margin-top: 50px;
    box-shadow: 0 -4px 10px var(--color-shadow);
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content p {
    font-size: 0.9em;
    color: var(--color-text-dim);
}


/* Responsividad básica */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
    }
    nav ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    nav ul li {
        margin: 5px 10px;
    }
    .hero-content h1 {
        font-size: 3em;
    }
    .hero-content h2 {
        font-size: 1.8em;
    }
    section {
        padding: 40px 20px;
    }
    section h2 {
        font-size: 2em;
    }
    section p {
        font-size: 1em;
    }
    .btn {
        padding: 15px 25px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .logo a {
        font-size: 1.5em;
    }
    nav ul li {
        margin: 5px 8px;
    }
    .hero-content h1 {
        font-size: 2.5em;
    }
    .hero-content h2 {
        font-size: 1.5em;
    }
    .btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    .call-to-action h2 {
        font-size: 2.2em;
    }
}