/* === LANDING === */

body.landing {
    background: #000;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* HERO */

.hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(to bottom, #000 0%, #111 15%, #444 50%, #ccc 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0,0,0,0.4), rgba(0,0,0,0.8));
}

.hero-logo {
    position: absolute;
    top: 30px;
    left: 50px;
    z-index: 10;
}

.hero-logo img {
    height: 70px;
}

/* TEXT */

.hero-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #eee;
    z-index: 5;
}

.hero-content h1 {
    font-size: 3rem;
    letter-spacing: 4px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    opacity: 0.7;
}

/* LINKS */

.hero-links {
    margin-top: 40px;
}

.hero-links a {
    display: inline-block;
    margin-right: 30px;
    text-decoration: none;
    color: #ff0000;
    font-weight: 600;
    letter-spacing: 2px;
    transition: 0.3s ease;
}

.hero-links a:hover {
    text-shadow:
        0 0 5px #ff0000,
        0 0 10px #ff0000,
        0 0 20px #ff0000;
}
