@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Roboto:wght@300;400&display=swap');

body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Roboto', sans-serif;
    background-color: #fdfbf7;
    /* Warm, vintage paper tone */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container {
    text-align: center;
    position: relative;
    z-index: 10;
    padding: 2rem;
    max-width: 800px;
}

.image-container {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    animation: float 6s ease-in-out infinite;
}

.parrot-img {
    margin-top: 6rem;
    max-width: 70%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    display: block;
    max-height: 60vh;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: #2c3e50;
    margin: 0;
    letter-spacing: 5px;
    text-transform: uppercase;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4, #45B7D1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradient 5s ease infinite;
    background-size: 300% 300%;
}

p {
    font-size: 1.5rem;
    color: #555;
    margin-top: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Background elements for depth */
.bg-circle {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.1;
}

.circle-1 {
    width: 600px;
    height: 600px;
    background: #FF6B6B;
    top: -10%;
    left: -10%;
    filter: blur(80px);
}

/* Countdown Styles */
.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.number {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
    color: #888;
}

.circle-2 {
    display:none;
    width: 500px;
    height: 500px;
    background: #4ECDC4;
    bottom: -10%;
    right: -10%;
    filter: blur(80px);
}