/*Header styles*/
header {
    width: 100%;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(238, 185, 10, 0.25);
}

/* Splash container */
#line-splash {
    justify-content: flex-start; /* move content to the top */
    padding-top: 180px; /* push everything DOWN */
    position: fixed;
    inset: 0;
    background: #000000; /* pure black */
    z-index: 9999;
    display: flex;
    
    align-items: center;
    flex-direction: column;
    animation: fadeOut 0.6s ease forwards;
    animation-delay: 1.6s; /* total splash duration */
}
/* Light sweep inside the yellow block */
#line-splash::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
        transparent,
        rgba(255,255,255,0.28),
        transparent
    );
    transform: translateX(-120%);
    animation: sweepLight 1.8s ease-in-out 1.3s forwards;
    pointer-events: none;
}


@keyframes sweep {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}


/* Gold line animation */
.gold-line {
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f4d03f, #ffe27a);
    box-shadow: 0 0 12px #f4d03f;
    animation:  drawLine 1.2s ease forwards,
                expandLine 0.6s ease forwards 1.2s;
}


/* Splash text */
.splash-text {
    width: 100%;
    text-align: center;
    display: block;
    transform: translateY(100px);
    font-family: 'Italianno', cursive;
    font-size: 64px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #f4d03f;
    opacity: 0;
    margin-top: 80px;
    text-shadow: 0 0 18px #f4d03f;
    animation:  textFade 0.9s ease forwards 1.4s,
                glowPulse 1s ease forwards 2.1s;
}

/*Splash Log*/
.splash-logo {
    position: absolute;
    
    width: 160px;
    opacity: 0;
    animation: logoFade 0.8s ease forwards 1.4s;
    filter: drop-shadow(0 0 18px #f4d03f);
}

@keyframes logoFade {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}



/* Line drawing animation */
@keyframes drawLine {
    from { width: 0; }
    to { width: 50%; }
}

/* Vertical expansion */
@keyframes expandLine {
    from { height: 2px; }
    to { height: 15vh; }
}

/* Text fade-in */
@keyframes textFade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Soft gold glow pulse */
@keyframes glowPulse {
    0% { text-shadow: 0 0 12px #f4d03f; }
    50% { text-shadow: 0 0 28px #ffe27a; }
    100% { text-shadow: 0 0 12px #f4d03f; }
}

/* Fade out splash */
@keyframes fadeOut {
    to {opacity: 0; 
        visibility: hidden; 
        pointer-events: none;
    }
}


body {
    background-image: url("images/Background1.png");
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-color: #121212;
    color: #eeb90a;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(2px);
    z-index: -1;
}


/*LOGO*/
.logo-img {
    width: 100px;
    height: auto;
}

/*Nav Menu & menu Items*/
nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin-right: 70px;
}

nav ul li a {
    color: #eeb90a;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: 0.3s ease;
}

/*Hover Effect in the menu items*/
nav ul li a:hover {
    color: #00eaff;
    text-shadow: 0 0  8px #00eaff;
}

/*Hamburger Button*/
.hamburger {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    color: #eeb90a;
    cursor: pointer;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: #eeb90a;
    text-shadow: 
        0 0 10px rgba(238, 185, 10, 0.6),
        0 0 20px rgba(238, 185, 10, 0.4);
}

.hero h2 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-top: 10px;
    color: #eeb90a;
    text-shadow: 
        0 0 8px rgba(0, 234, 255, 0.6)
        0 0 16px rgba(0, 234, 255, 0.4);
}

.hero-buttons {
    margin-top: 35px; /* space between h2 and buttons */
}


.hero-buttons a {
    padding: 12px 28px;
    margin: 10px;
    border-radius: 8px;
    font-size: 1.1rem;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

/* Primary button (gold) */
.btn-primary {
    background: #eeb90a;
    color: #000;
    box-shadow: 0 0 12px rgba(238, 185, 10, 0.7);
}

.btn-primary:hover {
    background: #ffcf3f;
    box-shadow: 
        0 0 12px rgba(238, 185, 10, 0.9),
        0 0 24px rgba(238, 185, 10, 0.7);
}

/* Secondary button (cyan) */
.btn-secondary {
    background: transparent;
    border: 2px solid #00eaff;
    color: #00eaff;
    box-shadow: 0 0 12px rgba(0, 234, 255, 0.5);
}

.btn-secondary:hover {
    background: rgba(0, 234, 255, 0.15);
    box-shadow: 
        0 0 12px rgba(0, 234, 255, 0.8),
        0 0 24px rgba(0, 234, 255, 0.6);
}

.hero {
    background-image: url("images/your-image.jpg");
    background-size: contain;      /* image stays fully visible */
    background-repeat: no-repeat;
    background-position: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 40px 20px;            /* space inside the image */
    min-height: 420px;             /* match your image height */
    text-align: center;
    
}



.hero::before {
    content: "";
    position: absolute;
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(238, 185, 10, 0.25);
    box-shadow: 
        0 0 20px rgba(238, 185, 10, 0.15),
        0 0 30px rgba(0, 234, 255, 0.15);
    z-index: -1;
}

.hero-title {
    margin-bottom: 15px;
    font-size: 3.2rem;
    font-weight: 700;
    color: #eeb90a;
    text-shadow:
        0 0 10px rgba(238, 185, 10, 0.6),
        0 0 20px rgba(238, 185, 10, 0.4);
}

.hero-subtitle {
    margin-bottom: 35px;
    font-size: 1.5rem;
    font-weight: 300;
    margin-top: 10px;
    color: #00eaff;
    text-shadow:
        0 0 8px rgba(0, 234, 255, 0.6),
        0 0 16px rgba(0, 234, 255, 0.4);
}

.hero * {
    opacity: 0;
    animation: fadeIn 1.2s ease forwards;
}

.hero-title { animation-delay: 0.2s; }
.hero-subtitle { animation-delay: 0.4s; }
.hero-buttons { animation-delay: 0.6s; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}




/*Mobile Menu*/
@media (max-width: 750px) {
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        right: 40px;
        background: rgba(0, 0, 0, 0.85);
        padding: 20px;
        border-radius: 10px;
        border: 1px solid rgba(238, 185, 10, 0.3);
        box-shadow: 0 0 12px rgba(238, 185, 10, 0.4);
    }

    nav ul.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }
}
@media (max-width: 750px) {
    .hero {
        padding-top: 120px;
        padding-bottom: 80px;
        min-height: auto;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
        font-family:'Italianno', cursive;
    }
    .hero-subtitle {
        font-family: 'Italianno', cursive !important;
        font-size: 1.4rem !important;   /* BEAUTIFUL + noticeable */
        line-height: 1.2 !important;
        padding-left: 20px;
        padding-right: 20px;
        text-align: center;
    }
}

    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 25rem;
    }

    .hero-buttons a {
        width: 30%;
        padding: 8px 12px;
        font-size: 0.85rem;
        border-radius: 6px;
        text-align: center;
        cursor: url("images/white-hand.png") 8 2, pointer;
    }

    .splash-logo {
        
        width: 120px !important;   /* almost original size */
        padding-top: 10px;
        display: block !important;
        margin: 0 auto !important; /* centers it perfectly */
        object-fit: contain !important;
    }

    @media (max-width: 750px) {
    .logo-img {
        width: 14vw;        /* scales with screen width */
        max-width: 85px;    /* never gets too big */
        min-width: 55px;    /* never gets too small */
        height: auto;
    }
}





@media (min-width: 751px) {
    #line-splash {
        min-height: 100vh;          /* full screen height */
        display: flex;
        flex-direction: column;
        justify-content: center;    /* center vertically */
        align-items: center;        /* center horizontally */
        padding-top: 0;             /* remove upward push */
    }
}
@media (min-width: 751px) {
    .hero {
        height: 100vh;             /* full screen height */
        padding-top: 0;            /* remove the upward push */
        justify-content: center;   /* center vertically */
        align-items: center;       /* center horizontally */
    }
    

}