@import "package.css";
@import "whatyouget.css";
@import "eventhighlight.css";

:root {
    --font-stack: 
        "Google Sans",
        "Inter",
        sans-serif;
    --deep-blue: #003954;
    --emerald: #5cba48;
    --sunshine: #fabe37;
    --pink: #fa55a5;
    --sky: #2390cf;
    --teal: #8fcebd;
    --cream: #fbf5dd;
    --text-dark: #042235;
    --card-blue: #004c6f;
}

/* Root */
html,
body {
    font-family: var(--font-stack);
}

a:hover {
    color: black;
}

.font-inter {
    font-family: "Inter", sans-serif;
}

/* Countdown */
.countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 2rem auto 3rem;
    max-width: 600px;
}

.countdown article {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1rem 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.countdown .value {
    font-family: "Product Sans", sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--sunshine);
    display: block;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.countdown .label {
    font-size: clamp(0.7rem, 1.5vw, 1rem);
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Global */
.cta {
        display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--emerald);
    color: white;
    text-decoration: none;
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 700;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(92, 186, 72, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(92, 186, 72, 0.8);
    background: #4daa3a;
    border-color: rgba(255, 255, 255, 0.3);
}

.disclaimer {
    margin-top: 3rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}