/* Set base font */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #000;
}

/* --- ANIMATED HEADERS --- */

/* Main animated gradient for the hero title */
.animated-gradient {
    background: linear-gradient(90deg, #00FFFF, #FF00FF, #00FFFF);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: gradient-flow 6s ease infinite;
}

@keyframes gradient-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* A more subtle gradient for subheadings */
.animated-gradient-subtle {
    background: linear-gradient(90deg, #00FFFF, #f0f);
    background-size: 100% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

/* --- UI COMPONENTS --- */

/* Glassmorphism card effect for projects and video/photo items */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 255, 255, 0.5); 
}

/* Contact button styling */
.contact-button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 9999px;
    font-weight: 600;
    background-color: #00FFFF;
    color: #000;
    box-shadow: 0 0 10px #00FFFF, 0 0 20px rgba(0, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.contact-button:hover {
    background-color: #00E5E5;
    transform: translateY(-2px);
    box-shadow: 0 0 15px #00E5E5, 0 0 30px rgba(0, 255, 255, 0.7);
}

/* --- FADE-IN ANIMATION --- */

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- BIRTHDAY COUNTDOWN --- */
#birthday-countdown {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1), rgba(0, 255, 255, 0.1));
    border: 2px solid rgba(255, 0, 255, 0.3);
    border-radius: 8px;
    padding: 8px 12px;
    max-width: 280px;
    margin: 0 auto;
}

.countdown-number {
    font-size: 0.95rem;
    font-weight: 700;
    color: #FF00FF;
    text-shadow: 0 0 8px rgba(255, 0, 255, 0.5);
}

.countdown-label {
    font-size: 0.6rem;
    color: #00FFFF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- SPECIAL BIRTHDAY EFFECT --- */

body.birthday-today {
    /* Apply the animation */
    animation: birthday-glow 10s ease-in-out infinite;
}

@keyframes birthday-glow {
    0% {
        background-color: #000;
    }
    25% {
        /* Fades to a deep, dark cyan */
        background-color: #032020;
    }
    50% {
        background-color: #000;
    }
    75% {
        /* Fades to a deep, dark magenta/fuchsia */
        background-color: #220322;
    }
    100% {
        background-color: #000;
    }
}
