/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f8fafc;
    color: #1f2933;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Josefin Sans', sans-serif;
}

/* Layout */
.container {
    text-align: center;
    padding: 20px;
}

/* Heading */
.heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 600;
    color: #173054;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
}

/* Subtext */
.subtext {
    font-size: 18px;
    color: #6b7280;
    max-width: 500px;
    margin: 0 auto 25px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
}

/* Timer */

.timer {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 30px 0;
    opacity: 0;
    transform: translateY(20px);
}

.time-box {
    text-align: center;
}

.time-box span {
    font-size: 28px;
    font-weight: 500;
    color: #173054;
    display: block;
}

.time-box small {
    font-size: 12px;
    color: #6b7280;
    letter-spacing: 0.08em;
}

/* Tagline */
.tagline {
    font-size: 20px;
    color: #3a868f;
    letter-spacing: 0.08em;
    font-style: italic;
    opacity: 0;
    transform: translateY(20px);
}

/* Footer */
.footer {
    margin-top: 60px;
    font-size: 14px;
    color: #9ca3af;
    opacity: 0;
}

/* Animation */
.show {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

/* Responsive */
@media (max-width: 600px) {
    .heading {
        font-size: 34px;
    }

    .subtext {
        font-size: 16px;
    }

    .tagline {
        font-size: 18px;
    }
}