/* --- VARIABLES --- */
:root {
    --bg-color: #050505;
    --card-bg: #101010;
    --primary: #ff3b3b; /* Vibrant Red for "Recording" vibe */
    --text-white: #ffffff;
    --text-gray: #a3a3a3;
    --font-main: 'Outfit', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: var(--font-main); scroll-behavior: smooth; }

body { background-color: var(--bg-color); color: var(--text-white); overflow-x: hidden; }

/* --- NAVIGATION --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: fixed;
    width: 100%;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.logo { font-size: 1.5rem; font-weight: 900; letter-spacing: 1px; }
.highlight { color: var(--primary); }

.nav-links { display: flex; list-style: none; gap: 30px; }
.nav-links a { text-decoration: none; color: var(--text-white); font-weight: 500; transition: 0.3s; }
.nav-links a:hover { color: var(--primary); }

.btn-contact {
    border: 1px solid var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--primary) !important;
}
.btn-contact:hover { background: var(--primary); color: white !important; }
.hamburger { display: none; font-size: 1.5rem; cursor: pointer; }

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0 20px;
    overflow: hidden;
}

.hero-content { z-index: 2; max-width: 800px; }

.tagline {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: block;
}

h1 {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 20px;
    font-weight: 900;
}

.text-stroke {
    -webkit-text-stroke: 2px white;
    color: transparent;
}

.hero p { color: var(--text-gray); font-size: 1.2rem; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }

.hero-btns { display: flex; justify-content: center; gap: 20px; }

.btn {
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
}
.btn-primary { background: var(--primary); color: white; box-shadow: 0 0 20px rgba(255, 59, 59, 0.4); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 40px rgba(255, 59, 59, 0.6); }
.btn-outline { border: 1px solid white; color: white; }
.btn-outline:hover { background: white; color: black; }

/* Background Glows */
.glow-circle { position: absolute; border-radius: 50%; filter: blur(100px); z-index: 0; opacity: 0.5; }
.circle-1 { width: 400px; height: 400px; background: var(--primary); top: -100px; left: -100px; }
.circle-2 { width: 300px; height: 300px; background: blue; bottom: 50px; right: -50px; opacity: 0.3; }

/* --- PORTFOLIO SECTION --- */
.portfolio-section { padding: 100px 5%; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 3rem; margin-bottom: 10px; }

/* Filters */
.filter-container { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 50px; }
.filter-btn {
    background: transparent;
    border: 1px solid #333;
    color: var(--text-gray);
    padding: 10px 25px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 0.9rem;
}
.filter-btn:hover, .filter-btn.active { background: white; color: black; border-color: white; }

/* Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.portfolio-item {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
    cursor: pointer;
    animation: fadeIn 0.5s ease;
}
.portfolio-item:hover { transform: translateY(-10px); }
.portfolio-item.hide { display: none; }

.thumb { position: relative; height: 200px; overflow: hidden; }
.thumb img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s;
}
.overlay i { font-size: 3rem; color: white; text-shadow: 0 0 20px rgba(255,255,255,0.5); }

.portfolio-item:hover .thumb img { transform: scale(1.1); }
.portfolio-item:hover .overlay { opacity: 1; }

.info { padding: 20px; }
.info h3 { font-size: 1.2rem; margin-bottom: 5px; }
.info span { color: var(--text-gray); font-size: 0.85rem; text-transform: uppercase; }

/* --- CONTACT & FOOTER --- */
.contact-section { padding: 80px 5%; text-align: center; }
.contact-box {
    background: linear-gradient(45deg, #1a1a1a, #000);
    padding: 60px;
    border-radius: 20px;
    border: 1px solid #333;
}
.btn-white { background: white; color: black; border: none; padding: 15px 40px; border-radius: 5px; font-weight: 700; margin-top: 20px; cursor: pointer; }

footer {
    border-top: 1px solid #222;
    padding: 30px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-gray);
}
footer a { color: var(--primary); text-decoration: none; }
.socials i { margin-left: 20px; cursor: pointer; transition: 0.3s; }
.socials i:hover { color: white; }

/* --- LIGHTBOX --- */
.lightbox {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}
.lightbox.active { display: flex; animation: fadeIn 0.3s; }
.lightbox-content { width: 80%; max-width: 800px; text-align: center; position: relative; }
.video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #555;
    margin-bottom: 20px;
    border-radius: 10px;
}
.play-icon-large { font-size: 5rem; margin-bottom: 10px; color: var(--primary); }
.close-btn { position: absolute; top: -40px; right: 0; color: white; font-size: 2rem; cursor: pointer; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    h1 { font-size: 3rem; }
    .nav-links { display: none; } /* Simplified for demo */
    .hamburger { display: block; }
}