:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --line-color: rgba(255, 255, 255, 0.15);
    --line-color-hover: rgba(255, 255, 255, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Syne', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    text-transform: uppercase;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 2px;
}

/* Hero Section with Video */
#hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #050505; /* Fallback color */
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
    object-fit: cover;
    background-color: #050505;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25); /* Opacity layer */
    backdrop-filter: blur(5px); /* Blur layer */
    -webkit-backdrop-filter: blur(5px);
    z-index: 1;
}

/* Header & Nav */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 10;
    border-bottom: 1px solid var(--line-color);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--line-color-hover);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 6rem);
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: 4px;
}

.subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn {
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    background: transparent;
}

.btn:hover {
    background: var(--text-color);
    color: var(--bg-color);
}

/* Sections */
main {
    position: relative;
    z-index: 10;
    background-color: var(--bg-color);
}

section {
    padding: 8rem 2rem;
    position: relative;
}

.section-line {
    border-top: 1px solid var(--line-color);
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

h2 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 3px;
}

.description {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    margin-bottom: 2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

p {
    font-size: 1.1rem;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
}

/* Multimedia Grid */
.multimedia-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

.video-container, .spotify-container {
    border: 1px solid var(--line-color);
    padding: 1rem;
    background: transparent;
    transition: border-color 0.3s;
}

.video-container:hover, .spotify-container:hover {
    border-color: var(--line-color-hover);
}

iframe {
    width: 100%;
    display: block;
}

/* Contact */
.clean-link {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: var(--text-color);
    text-decoration: none;
    margin: 2rem 0;
    display: inline-block;
    border-bottom: 1px solid var(--text-color);
    padding-bottom: 0.2rem;
    transition: opacity 0.3s;
}

.clean-link:hover {
    opacity: 0.7;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.social-links a {
    color: var(--text-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    border: 1px solid var(--line-color);
    padding: 0.8rem 2rem;
    transition: all 0.3s;
}

.social-links a:hover {
    border-color: var(--text-color);
    background: var(--text-color);
    color: var(--bg-color);
}

/* Footer */
footer {
    padding: 3rem 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

footer .clean-link {
    font-size: 0.9rem;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Lite Embeds */
.lite-youtube {
    background-color: #000;
    position: relative;
    cursor: pointer;
    min-height: 315px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('https://img.youtube.com/vi/EBkhTawcMQU/maxresdefault.jpg');
    background-size: cover;
    background-position: center;
}

.lite-youtube .play-button {
    width: 68px;
    height: 48px;
    background-color: #f00;
    z-index: 1;
    border-radius: 12%;
    position: relative;
    transition: background-color 0.3s;
}

.lite-youtube .play-button::before {
    content: "";
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent #fff;
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
}

.lite-youtube:hover .play-button {
    background-color: #ff0000;
    filter: brightness(1.2);
}

.lite-spotify {
    min-height: 352px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    nav ul {
        display: none;
    }
    
    .multimedia-grid {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 5rem 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}
