:root {
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
    --accent-color: #d4af37;
    /* Gold */
    --secondary-text: #cccccc;
    --font-heading: 'Bodoni Moda', serif;
    --font-body: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    margin: 0;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 400;
    /* Lighter weight for elegance */
}

h1.big-title {
    font-size: 6rem;
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

h2.section-title {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.text-uppercase-spaced {
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.9rem;
    font-weight: 300;
}

/* Helper Classes */
.full-screen {
    width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Hero Section */
.hero-section {
    background: url('../img/pareja.png') no-repeat center center/cover;
    background-attachment: fixed;
    /* Parallax effect */
    text-align: center;
    color: white;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 1.5rem;
    color: white;
    opacity: 0.7;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translate(-50%, 0);
    }

    40% {
        transform: translate(-50%, -10px);
    }

    60% {
        transform: translate(-50%, -5px);
    }
}

/* Standard Section */
.content-section {
    padding: 6rem 1rem;
    background-color: var(--bg-color);
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Image Break Section (Parallax) */
.image-break {
    height: 60vh;
    background: url('../img/pareja.png') no-repeat center center/cover;
    background-attachment: fixed;
    position: relative;
}

/* Cards & Elements */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    margin: 1rem 0;
    transition: transform 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.btn-cinematic {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 12px 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-top: 1rem;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cinematic:hover {
    background: white;
    color: black;
    text-decoration: none;
}

/* Countdown */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
}

.countdown-number {
    font-size: 3rem;
    font-family: var(--font-heading);
    color: var(--accent-color);
}

.countdown-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Floating Music */
.music-control {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}

.btn-music-minimal {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    transition: all 0.3s;
}

.btn-music-minimal:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

/* --- PLANNER SPECIFIC --- */
/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-50%);
}

.timeline-item {
    padding: 2rem;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-item:nth-child(odd) {
    text-align: right;
}

.timeline-marker {
    position: absolute;
    top: 2rem;
    right: -6px;
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -6px;
}

/* Responsive */
@media (max-width: 768px) {
    h1.big-title {
        font-size: 3.5rem;
    }

    .hero-section,
    .image-break {
        background-attachment: scroll;
        /* Disable parallax on mobile for performance/compatibility */
    }

    /* Timeline Adjustments */
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 50px;
        text-align: left !important;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-marker,
    .timeline-item:nth-child(even) .timeline-marker {
        left: 14px;
        right: auto;
    }
}