@charset "utf-8";
/* CSS Document */
/* --- CSS Reset --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; } /* Native Smooth Scrolling */

body {
    font-family: 'Work Sans', sans-serif;
    background-color: #0b0b0f;
    color: #ffffff;
    line-height: 1.8;
}

/* --- Typography & Units --- */
h1, h2 {
    font-family: 'Syncopate', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
}

h1 { font-size: clamp(2.5rem, 8vw, 6rem); text-shadow: 0 0 15px rgba(188, 19, 254, 0.8); }

.full-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5%;
}

/* --- Mobile First Nav --- */
#main-nav {
    position: fixed;
    top: 0; width: 100%;
    display: flex; justify-content: space-between;
    padding: 20px; background: rgba(0,0,0,0.9);
    z-index: 1000;
}

.nav-links {
    display: none; /* Hidden on mobile by default */
    flex-direction: column;
    position: absolute; top: 70px; left: 0;
    width: 100%; background: #0b0b0f; text-align: center;
}

.nav-links.active { display: flex; } /* Toggled via JS */

/* --- Desktop Nav --- */
@media (min-width: 768px) {
    .hamburger { display: none; }
    .nav-links {
        display: flex; flex-direction: row;
        position: static; width: auto; background: none;
    }
    .nav-links li { margin-left: 30px; list-style: none; }
    .nav-links a { color: white; text-decoration: none; transition: color 0.3s; }
    .nav-links a:hover { color: #bc13fe; text-shadow: 0 0 5px #bc13fe; }
}

/* --- Parallax & Animation --- */
.parallax-bg {
    background: url('studio-bg.jpg') no-repeat center center fixed;
    background-size: cover;
}

.fade-in-title {
    animation: fadeIn 3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    border: 2px solid #bc13fe;
    color: #bc13fe;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.4s;
}

.cta-button:hover {
    background: #bc13fe;
    color: white;
    box-shadow: 0 0 20px #bc13fe;
}

