/* hero.css */

@font-face {
    font-family: 'TimesNewerRoman';
    src: url('../fonts/TimesNewerRoman-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'TimesNewRoman';
    src: url('../fonts/TimesNewRoman-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

:root {
    --text-color: #ededed;
    --background-color: #141531;
}

/* --- FIXED BACKGROUND LAYERS --- */
.background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: -3;
    filter: brightness(0.95) blur(1.5px);
    animation: slow-zoom 22s ease-in-out infinite alternate;
    will-change: transform;
    pointer-events: none;
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    z-index: -3;
    opacity: 0.7;
    filter: grayscale(100%) brightness(0.95) blur(1.5px);
    animation: slow-zoom 22s ease-in-out infinite alternate;
    will-change: transform;
    pointer-events: none;
}

/* Color tint overlay */
.background-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--background-color);
    mix-blend-mode: color;
    z-index: 1;
    pointer-events: none;
}

/* Vignette overlay */
.background-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at center,
        transparent 40%,
        var(--background-color) 100%
    );
    z-index: 2;
    pointer-events: none;
}
.overlay,
.ghost-light {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    user-select: none;
}
.overlay {
    z-index: -2;
    transition: background 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.ghost-light {
    z-index: -1;
}

@keyframes slow-zoom {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.07); }
}

/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.title-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* --- SVG LOGO --- */
.logo-svg {
    width: 70vw;
    max-width: 400px;
    height: auto;
    display: block;
    opacity: 0.7;
}
.logo-svg .cls-1,
.logo-svg .cls-2 {
    font-family: 'TimesNewerRoman', 'Times Newer Roman', Times, serif !important;
    font-weight: 200;
}
.logo-svg .cls-4 {
    font-family: 'TimesNewRoman', 'Times New Roman', Times, serif !important;
    font-weight: 200;
}

.intro-baseline {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 200;
    line-height: 140%;
    opacity: 0.8;
    max-width: 500px;
    margin: 0 auto;
}

/* --- SCROLL ARROW --- */
.scroll-arrow,
.scroll-arrow a {
    color: #bdbdbd;
    font-size: 2.4rem;
    font-weight: 100;
    font-family: "Times New Roman", Times, serif;
    text-align: center;
    text-decoration: none;
    width: 30px;
    height: 50px;
    cursor: pointer;
    user-select: none;
    transition: color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.5;
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}
.scroll-arrow:hover {
    color: rgba(255, 255, 255, 0.9);
    transform: translateX(-50%) translateY(5px);
}

/* --- RESPONSIVE --- */
@media (max-width: 600px) {
    .title-container { padding: 0 0.2em; }
    .logo-svg { width: 85vw; }
}