/* Plantilla Elegante Minimalista - Estilos Globales Mejorados */
:root {
    /* Paleta de colores elegante CLARO */
    --bg-dark: #fefefe;           /* Fondo principal muy claro */
    --bg-dark-light: #f8f8f8;    /* Fondo secundario claro */
    --bg-card: #f2f2f2;          /* Fondo de tarjetas */
    --accent-beige: #8b7355;     /* Beige más oscuro para contraste */
    --accent-cream: #5d4e37;     /* Crema oscuro para títulos */
    --accent-champagne: #6b5b47; /* Champagne oscuro */
    --text-primary: #2c2c2c;     /* Texto principal oscuro */
    --text-secondary: #5a4a3a;   /* Texto secundario */
    --text-muted: #888;          /* Texto apagado */
    --gold-accent: #8b6914;      /* Dorado más intenso */
    --border-subtle: rgba(139, 115, 85, 0.2); /* Bordes sutiles */
    
    /* Tipografías elegantes mejoradas */
    --font-serif: 'Cormorant Garamond', serif;
    --font-script: 'Satisfy', cursive;
    --font-elegant: 'Pacifico', cursive;
    --font-sans: 'Lato', sans-serif;
    
    /* Espaciado y tamaños */
    --container-max: 1200px;
    --border-radius: 2px;
    --section-padding: 120px 0;
    
    /* Sombras suaves adaptadas para fondo claro */
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-card: 0 5px 25px rgba(0, 0, 0, 0.08);
    
    /* Transiciones elegantes */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Reset y base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-dark);
    overflow-x: hidden;
    font-weight: 300;
}

/* Container responsive */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Tipografías jerarquizadas mejoradas */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-script);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 0.5em;
    color: var(--text-primary);
}

h1 {
    font-family: var(--font-script);
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 400;
    letter-spacing: -0.01em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

h2 {
    font-family: var(--font-script);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--accent-beige);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

h3 {
    font-family: var(--font-elegant);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--accent-cream);
    font-weight: 400;
}

h4 {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    color: var(--text-secondary);
    font-weight: 500;
    font-style: italic;
}

/* Clases específicas para diferentes elementos */
.hero-names {
    font-family: var(--font-script);
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 400;
    color: var(--accent-cream);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.02em;
}

.section-title {
    font-family: var(--font-script);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--accent-beige);
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.event-title, .ubicacion-nombre {
    font-family: var(--font-elegant);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--accent-cream);
    font-weight: 400;
}

/* Párrafos elegantes */
p {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.lead {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: var(--text-primary);
    font-weight: 400;
    font-style: italic;
}

/* Líneas decorativas */
.decorative-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-beige), transparent);
    margin: 2rem auto;
    position: relative;
}

.decorative-line::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--accent-beige);
    border-radius: 50%;
}

/* Botones elegantes */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: transparent;
    color: var(--accent-beige);
    text-decoration: none;
    border: 1px solid var(--accent-beige);
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    letter-spacing: 1px;
    text-transform: uppercase;
    min-width: 180px;
    font-style: italic;
}

.btn:hover {
    background: var(--accent-beige);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

/* Secciones */
section {
    padding: var(--section-padding);
    position: relative;
}

.section-alternate {
    background: var(--bg-dark-light);
}

/* Headers de sección */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
}

/* Cards elegantes */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 2.5rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
    border-color: rgba(212, 196, 168, 0.2);
}

/* Texto cursivo destacado mejorado */
.script-text {
    font-family: var(--font-script);
    font-size: 1.8rem;
    color: var(--gold-accent);
    text-align: center;
    margin: 2rem 0;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Citas y frases especiales */
.quote-text {
    font-family: var(--font-script);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--accent-cream);
    font-style: italic;
    text-align: center;
    line-height: 1.4;
}

.quote-author {
    font-family: var(--font-elegant);
    font-size: 1.2rem;
    color: var(--gold-accent);
    text-align: center;
    margin-top: 1rem;
}

/* Subtítulos elegantes */
.section-subtitle {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--text-muted);
    text-align: center;
    font-style: italic;
    font-weight: 300;
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Estados de hover elegantes */
.hover-elegant {
    transition: var(--transition-smooth);
}

.hover-elegant:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    section {
        padding: 100px 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    section {
        padding: 80px 0;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 0.85rem;
        min-width: 160px;
    }
    
    .card {
        padding: 2rem;
    }
    
    .hero-names {
        font-size: clamp(3rem, 8vw, 6rem);
    }
    
    .script-text {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    section {
        padding: 60px 0;
    }
    
    p {
        font-size: 0.95rem;
    }
    
    .quote-text {
        font-size: clamp(1.25rem, 4vw, 1.8rem);
    }
}

/* Utilidades */
.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }