/* Aurora-specific styles */
@import url('https://fonts.googleapis.com/css2?family=Zain:ital,wght@0,200;0,300;0,400;0,700;0,800;0,900;1,300;1,400;1,700;1,800;1,900');

html, body {
    height: 100vh;
    margin: 0;
    padding: 0;
}

body {
    background-color: black;
    overflow: hidden;
}

section {
    height: 100vh;
    width: 100vw;
    color: white;
}

h1 {
    position: absolute;
    text-align: left;
    font-family: "Zain", sans-serif;
    font-size: 4.7rem;
    padding: 40vh 0 0 10vw;
    color: white;
    margin: 0;
}

.aurora-background {
    position: absolute;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle 100vh at top left, rgba(115, 0, 255, 0.3), black);
}

#aurora-bar {
    width: 150px;
    height: 300px;
    background: linear-gradient(224deg, #ff00cc, #ffab00, #00ff7b);
    background-size: 300% 300%;
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%) skewY(15deg) rotate(10deg);
    animation: ABColorFade 3s ease infinite;
    filter: blur(40px);
}

#aurora-bar-two {
    width: 400px;
    height: 30vh;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        #8c00ff 40%,
        #1900ff 70%,
        transparent 90%
    );
    background-size: 100% 100%;
    position: absolute;
    top: 70%;
    left: 55%;
    transform: translate(-50%, -30%);
    mix-blend-mode: color-dodge;
    mask-image: linear-gradient(to right,
        transparent 0%,
        black 30%,
        transparent 35%,
        black 60%,
        black 50%,
        transparent 55%,
        black 60%,
        transparent 65%,
        transparent 80%,
        black 85%,
        transparent 87%
    );
    animation: ABTwoMove 60s ease infinite;
}

#aurora-rays {
    width: 250px;
    height: 100vh;
    background: linear-gradient(
        to left,
        transparent 25%,
        black 29%,
        transparent 30%,
        transparent 50%,
        black 51%,
        transparent 52%,
        rgb(0, 0, 0) 53%,
        transparent 56%,
        transparent 96%,
        black 97%,
        transparent 98%,
        black 100%
    );
    background-size: 200% 200%;
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    animation: ABRays 30s ease infinite;
}

#aurora-rays-two {
    width: 250px;
    height: 100vh;
    background: linear-gradient(
        to right,
        black 0%,
        transparent 4%,
        black 10%,
        transparent 25%,
        black 29%,
        transparent 30%,
        transparent 40%,
        black 51%,
        transparent 52%,
        rgb(0, 0, 0) 53%,
        transparent 56%,
        transparent 86%,
        black 90%,
        transparent 95%,
        black 100%
    );
    background-size: 200% 200%;
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    animation: ABRaysTwo 20s ease infinite;
}

@keyframes ABColorFade {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes ABTwoMove {
    0% { height: 30vh; top: 70%; }
    70% { height: 70vh; top: 30%; }
    100% { height: 30vh; top: 70%; }
}

@keyframes ABRays {
    0% { background-position: 0% 100%; width: 250px; }
    50% { background-position: 100%, 100%; width: 120px; }
    60% { background-position: 80%, 100%; }
    70% { background-position: 90%, 100%; }
    100% { background-position: 0%, 100%; width: 250px; }
}

@keyframes ABRaysTwo {
    0% { background-position: 0% 100%; }
    20% { background-position: 50%, 100%; }
    80% { background-position: 70%, 100%; }
    100% { background-position: 0% 100%; }
}

.site-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1.25rem 10vw;
    font-family: "Zain", sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    pointer-events: none;
}

.site-footer__logo {
    flex-shrink: 0;
    opacity: 0.45;
    filter: invert(1);
}

.site-footer__details {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    line-height: 1.4;
}

.site-footer__name {
    color: rgba(255, 255, 255, 0.55);
    font-weight: 400;
    letter-spacing: 0.02em;
}

.site-footer__meta {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.35);
}
