/* --- GLOBAL STYLES --- */
html {
    font-size: 16px; /* Reset to standard base size for better mobile scaling */
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
    scroll-padding-top: 120px;
}


html, body {
    width: 100%;
    max-width: 100%;
    
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden; 
    position: relative;
    background: linear-gradient(-45deg, #FF69B4, #FF0000, #4169E1, #FFD700, #000000);
    background-size: 400% 400%;
    background-attachment: fixed;
    animation: gradientMix 15s ease infinite;
    /* Add padding top to account for fixed navbar */
    padding-top: 100px;
}
img, video {
    max-width: 100%;
    height: auto;
    display: block;
}
/* --- ANIMATION KEYFRAMES --- */
@keyframes gradientMix {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* --- HERO SECTION --- */
.hero {
    /* Full width background image */
    background-image: url('hero-image.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Optional: Fixed attachment for parallax effect */
    background-attachment: fixed;
}

/* --- SCROLL ANIMATIONS --- */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- ANIMATIONS --- */

/* Initial state: Hidden and slightly pushed down */
.reveal-element {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Active state: Visible and in original position */
.reveal-element.active {
    opacity: 1;
    transform: translateY(0);
}

/* Delays */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }


/* Mobile Responsive Fixes */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        height: 60vh;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    body {
        padding-top: 125px; 
    }
   
}
@media (min-width: 1024px) {
    html {
        font-size: 18px; 
        scroll-padding-top: 120px;
    }
}

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden; 
    position: relative;
    background: linear-gradient(-45deg, #FF69B4, #FF0000, #4169E1, #FFD700, #000000);
    background-size: 400% 400%;
    background-attachment: fixed;
    animation: gradientMix 15s ease infinite;

    /* BASE PADDING (Mobile) */
    padding-top: 125px; 
}

/* DESKTOP PADDING ADJUSTMENT */
@media (min-width: 1024px) {
    body {
        padding-top: 105px; /* Slightly less padding needed on desktop due to layout */
    }
}

/* --- HERO SECTION --- */
.hero {
    background-image: url('hero-image.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; 
}