/* Valentine's Day Site - Matching 404 Page Style */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #1a1625;
    --bg-secondary: #251e35;
    --pink-pastel: #ffb3d9;
    --pink-light: #ffd4e9;
    --pink-dark: #ff8fc7;
    --text-primary: #e8e3f0;
    --text-secondary: #b8adc9;
    --text-third: #e2c2da;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* Section Control */
.section {
    display: none;
    width: 100%;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
}

.section.active {
    display: flex;
}

.container {
    text-align: center;
    max-width: 1200px;
    animation: fadeIn 0.8s ease;
}

/* Countdown Section */
.countdown-display {
    margin-bottom: 1rem;
}

.countdown-number {
    font-size: 8rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--pink-pastel), var(--pink-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.countdown-label {
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    margin-top: 0.5rem;
}

.countdown-time {
    font-size: 3rem;
    font-weight: bold;
    color: var(--pink-light);
    font-family: 'Courier New', monospace;
    margin-bottom: 2rem;
    letter-spacing: 0.1rem;
}

/* Message Section */
.heart-symbol {
    font-size: 8rem;
    color: var(--pink-pastel);
    margin-bottom: 1rem;
    line-height: 1;
}

h1 {
    font-size: 2.5rem;
    color: var(--pink-light);
    margin-bottom: 1rem;
}

p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.main-message {
    font-size: 1.3rem;
    line-height: 2;
    color: var(--text-primary);
}

.sec-message {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 0rem;
}

.third-message {
    font-size: 0.8rem;
    line-height: 1;
    color: var(--text-third);
    margin-top: 0.25rem;
    margin-bottom: 0.5rem;
}

.capital {
    color: var(--pink-pastel);
    font-size: 1.8rem;
    font-weight: bold;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .countdown-number {
        font-size: 5rem;
    }

    .countdown-label {
        font-size: 1rem;
    }

    .countdown-time {
        font-size: 2rem;
    }

    .heart-symbol {
        font-size: 5rem;
    }

    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }

    .main-message {
        font-size: 1.1rem;
    }

    .capital {
        font-size: 1.5rem;
    }
}
