:root {
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
    --accent-color: #ffffff;
    --gray-light: #f5f5f5;
    --gray-mid: #888888;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 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: var(--font-secondary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.full-height {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Header & Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 50px;
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 24px;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.menu-toggle {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1001;
}

.menu-bar {
    display: block;
    width: 30px;
    height: 2px;
    background-color: #fff;
    transition: var(--transition);
}

.menu-text {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.overlay-menu-list {
    list-style: none;
    text-align: center;
}

.overlay-menu-list li {
    margin: 20px 0;
}

.overlay-menu-list a {
    font-family: var(--font-primary);
    font-size: 5vw;
    font-weight: 900;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px #fff;
    transition: var(--transition);
}

.overlay-menu-list a:hover {
    color: #fff;
    -webkit-text-stroke: 0px;
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    text-align: center;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
}

.dj-name {
    font-size: 12vw;
    line-height: 1;
    margin-bottom: 20px;
}

.tagline {
    font-size: 18px;
    letter-spacing: 10px;
    margin-bottom: 40px;
    color: var(--gray-mid);
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid #fff;
    font-family: var(--font-primary);
    font-weight: 700;
    letter-spacing: 2px;
    transition: var(--transition);
}

.cta-button:hover {
    background-color: #fff;
    color: #000;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    letter-spacing: 5px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
    40% {transform: translateY(-10px) translateX(-50%);}
    60% {transform: translateY(-5px) translateX(-50%);}
}

/* Section Title */
.section-title {
    font-size: 48px;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}

.text-center { text-align: center; width: 100%; }

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-image img {
    width: 100%;
    filter: grayscale(100%);
    transition: var(--transition);
}

.about-image:hover img {
    filter: grayscale(0%);
}

.bio {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 30px;
}

.trajectory {
    color: var(--gray-mid);
}

/* Music Section */
.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.music-item h3 {
    margin-top: 15px;
    font-size: 16px;
    letter-spacing: 1px;
}

.embed-container {
    background: #111;
    border: 1px solid #222;
    transition: var(--transition);
}

.embed-container:hover {
    border-color: #444;
}

/* Events Section */
.event-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid #222;
    transition: var(--transition);
}

.event-row:hover {
    padding-left: 20px;
    border-color: #fff;
}

.event-date { font-weight: 700; color: var(--gray-mid); width: 150px; }
.event-venue { font-family: var(--font-primary); font-size: 20px; flex-grow: 1; }
.event-location { color: var(--gray-mid); width: 200px; }
.ticket-btn {
    padding: 10px 25px;
    border: 1px solid #444;
    font-size: 12px;
    font-weight: 700;
}

.ticket-btn:hover {
    background-color: #fff;
    color: #000;
    border-color: #fff;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.gallery-item {
    overflow: hidden;
    aspect-ratio: 1/1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h3 { font-size: 18px; margin-bottom: 20px; }
.contact-info .email { font-size: 32px; font-weight: 700; margin-top: 20px; }

.form-group { margin-bottom: 20px; }
input, textarea {
    width: 100%;
    background: none;
    border: none;
    border-bottom: 1px solid #444;
    padding: 15px 0;
    color: #fff;
    font-family: var(--font-secondary);
    transition: var(--transition);
}

input:focus, textarea:focus {
    outline: none;
    border-color: #fff;
}

.submit-btn {
    background: #fff;
    color: #000;
    border: none;
    padding: 15px 40px;
    font-family: var(--font-primary);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background: #888;
}

/* Footer */
.site-footer {
    padding: 80px 50px 40px;
    background-color: #000;
    border-top: 1px solid #111;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.footer-logo { font-size: 32px; }
.footer-social a {
    margin-left: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: var(--gray-mid);
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 991px) {
    .about-grid, .contact-wrapper { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .event-row { flex-direction: column; align-items: flex-start; gap: 10px; }
    .event-date, .event-location { width: auto; }
}

@media (max-width: 768px) {
    .dj-name { font-size: 18vw; }
    .section-title { font-size: 32px; }
    .overlay-menu-list a { font-size: 10vw; }
}
