/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #fff;
    background-color: #0a0a0a;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background-color: rgba(0,0,0,0.4);
    backdrop-filter: blur(5px);
}

/* LOGO */
.logo-link {
    display: inline-block;
}

.logo {
    width: 80px;
    height: auto;
    cursor: pointer;
    transition: transform 0.8s ease, filter 0.8s ease;
}

.logo:hover {
    transform: rotate(900deg) scale(1.2);
}

.logo.toggle {
    transform: rotate(1080deg) scale(1.1);
    filter: drop-shadow(0 0 15px #ff0000) drop-shadow(0 0 25px #ff0000);
}

/* NAVIGATION */
nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 30px;
    letter-spacing: 2px;
    position: relative;
    transition: all 0.3s ease;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #ff0000;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a:hover {
    color: #ff0000;
    transform: scale(1.05);
}

/* HERO SECTION */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* center vertically */
    height: 100vh;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.7)),
                url('assets/videos/hero-watch.mov') center center/cover no-repeat;
    background-attachment: fixed;
    opacity: 0.5;

}


.hero-title {
    font-family: 'Arizonia', cursive;
    color: #ff0000;
    font-size: 100px;
    margin-top: 150px;
    margin-bottom: 26px;
    letter-spacing: 2px;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.7);
    transition: all 0.3s ease;
}

.hero-title:hover {
    color: #ff0000;
    transform: scale(1.05) rotate(-2deg); 
    text-shadow: 0 0 10px #ff00007a;
}

.hero-subtitle {
    font-family: 'Uncial Antiqua', cursive;
    font-size: 80px;
    margin-bottom: 30px; /* spacing between each line */
    letter-spacing: 0;
    transition: all 0.3s ease;
}

.hero-subtitle a {
    display: block; /* forces each link to its own line */
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-subtitle a:hover {
    color: #ff0000;
    text-shadow: 0 0 10px #ff0000;
    transform: scale(1.3); 
}

/* FOOTER */
footer {
    background-color: #ff0000;
    color: #000;
    text-align: center;
    padding: 8px 0;
    font-family: 'Roboto', sans-serif;
    font-size: 10px;
}

/* ANIMATIONS */
@keyframes fadeSlideUp {
    0% { opacity: 0; transform: translateY(30px);}
    100% { opacity: 1; transform: translateY(0);}
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000, 0 0 30px #ff0000; }
    50% { box-shadow: 0 0 20px #ff0000, 0 0 40px #ff0000, 0 0 60px #ff0000; }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-title { font-size: 60px; }
    .hero-subtitle { font-size: 40px; }
}

@media (max-width: 768px) {
    .logo {
        width: 60px;
    }
    header { flex-direction: column; gap: 15px; padding: 15px 20px; }
    nav ul { gap: 15px; justify-content: center; }
    nav ul li a { font-size: 24px; }
    .hero { padding: 0 20px; justify-content: center; }
    .hero-title { font-size: 80px; margin-bottom: 10px; }
    .hero-subtitle { font-size: 28px; }
}