:root {
    --color-primary: #008080;
    /* Teal */
    --color-secondary: #40E0D0;
    /* Turquoise */
    --color-sand: #F5F5DC;
    --color-white: #FFFFFF;
    --color-text-dark: #1a3c3c;
    --font-heading: 'Outfit', sans-serif;
}

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

body,
html {
    height: 100%;
    font-family: var(--font-heading);
    overflow: hidden;
}

body {
    background-image: url('assets/background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 50, 50, 0.4), rgba(0, 128, 128, 0.2));
    z-index: 1;
}

.content-container {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 90%;
    max-width: 600px;
    padding: 2rem;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.title {
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--color-sand);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-timer {
    display: flex;
    flex-direction: column;
    margin: 2rem 0;
}

.days {
    font-size: 8rem;
    font-weight: 800;
    line-height: 1;
    color: var(--color-white);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    /* Gradient text effect */
    background: linear-gradient(to bottom, #ffffff, #e0f7fa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.label {
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 1rem;
    color: var(--color-sand);
}

.date-label {
    margin-top: 2rem;
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Vacation View Styles */
.hidden {
    display: none;
}

.celebrate-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--color-secondary);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.celebrate-subtitle {
    font-size: 1.5rem;
    margin-top: 1rem;
}



@media (max-width: 600px) {
    .days {
        font-size: 6rem;
    }

    .celebrate-title {
        font-size: 3rem;
    }
}