/* =========================
   RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: monospace;
    animation: fadeIn 2s ease-in-out;
}

/* =========================
   PAGE FADE IN
========================= */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================
   NAVIGATION
========================= */
nav {
    background-color: black;
    padding: 25px;
    text-align: center;
}

nav a {
    position: relative;
    color: white;
    text-decoration: none;
    font-size: 40px;
    font-weight: bold;
    margin: 0 20px;
    transition: color 0.3s ease;
}

/* Hover color change */
nav a:hover {
    color: #b366ff;
}

/* Animated underline effect */
nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0%;
    height: 3px;
    background-color: #b366ff;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* =========================
   HERO TITLE
========================= */
#title {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Animated blurred background */
#title::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("images/Youtube banner.png");
    background-size: cover;
    background-position: center;
    filter: blur(4px);
    transform: scale(1.1);
    animation: slowZoom 20s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes slowZoom {
    from { transform: scale(1.1); }
    to { transform: scale(1.2); }
}

#title h1 {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 120px;
    text-align: center;
    -webkit-text-stroke: 6px black;
    animation: fadeIn 1s ease-in-out;
}

/* =========================
   MAIN SECTION
========================= */
#divider {
    color: white;
    font-size: 40px;
    margin: auto 0; 
    padding: auto 0;
}
body {
    background-color: #7b00bd;
    color: white;
    text-align: center;
}
#Basic {
    background-color: #7b00bd;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

#Basic h4 {
    font-size: 60px;
    margin-bottom: 10px;
}

#Basic p {
    font-size: 18px;
}

#journey-section {
    background-color: #7b00bd;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

#journey-section h4 {
    font-size: 60px;
    margin-bottom: 10px;
}

#journey-section p {
    font-size: 18px;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 900px) {
    footer {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        width: auto;
    }
}

/* =========================
   PREMIUM FOOTER
========================= */
footer {
    background: #0f0f0f;
    padding: 70px 20px 40px;
    display: flex;
    justify-content: center;
    gap: 100px;
    text-align: center;
    position: relative;
    color: white;
}

/* Subtle glowing top divider */
footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #7b00bd, transparent);
    opacity: 0.8;
}

/* Columns */
.footer-left,
.footer-center,
.footer-right {
    width: 220px;
}

/* Headings */
footer h4 {
    font-size: 16px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
}

/* Links */
footer a {
    display: block;
    color: #aaa;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* Hover effect */
footer a:hover {
    color: #b366ff;
    transform: translateX(6px);
}

/* Bottom copyright bar */
.footer-bottom {
    background: #0a0a0a;
    text-align: center;
    padding: 15px 0;
    font-size: 13px;
    color: #666;
    letter-spacing: 1px;
}

    
