/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0a0a0a;
    color: #e8e8e8;
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 4rem;
    color: #ffffff;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: #e5e5e5;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(229, 229, 229, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    min-height: 70px;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 0.1em;
    flex-shrink: 0;
    z-index: 1002;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;
}

.nav-link {
    color: #a1a1aa;
    text-decoration: none;
    font-weight: 300;
    font-size: 0.9rem;
    font-family: 'Playfair Display', serif;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 1px;
    background: #e5e5e5;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #ffffff;
}

/* Desktop social icons */
.desktop-social-icons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-shrink: 0;
}

.social-icon {
    color: #a1a1aa;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.social-icon svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: #ffffff;
    background: rgba(229, 229, 229, 0.1);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
}

.hamburger span {
    width: 20px;
    height: 2px;
    background: #a1a1aa;
    margin: 3px 0;
    transition: 0.3s ease;
    transform-origin: center;
}

/* Mobile social icons container */
.mobile-social-container {
    display: none;
}

.mobile-social-icons {
    display: none;
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 100%);
}

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

.video-background iframe {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    pointer-events: none;
    opacity: 0.4;
    filter: grayscale(100%) brightness(0.2) contrast(1.3) saturate(0.8);
    transform: scale(1.1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Fallback background if video doesn't load */
.video-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    z-index: -1;
}

.smoke-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.6" numOctaves="3" stitchTiles="stitch"/></filter></defs><rect width="100" height="100" filter="url(%23noise)" opacity="0.03"/></svg>');
    opacity: 0.3;
    animation: smoke-drift 30s infinite linear;
    z-index: 2;
}

.static-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><filter id="static"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="2"/></filter></defs><rect width="100" height="100" filter="url(%23static)" opacity="0.02"/></svg>');
    animation: static-flicker 0.2s infinite;
    z-index: 3;
    opacity: 0.15;
}

.glitch-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 1px,
        rgba(229, 229, 229, 0.02) 1px,
        rgba(229, 229, 229, 0.02) 2px
    );
    animation: glitch-shift 8s infinite;
    z-index: 4;
    opacity: 0.2;
}

.hero-content {
    text-align: center;
    z-index: 5;
    position: relative;
}

.hero-title {
    font-size: 4rem;
    font-weight: 200;
    margin-bottom: 1.5rem;
    color: #ffffff;
    letter-spacing: -0.05em;
    animation: title-fade-in 2s ease-out;
}

.hero-tagline {
    font-size: 1.125rem;
    color: #a1a1aa;
    margin-bottom: 4rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    animation: tagline-fade-in 2s ease-out 0.5s both;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-fade-in 2s ease-out 1s both;
}

.scroll-arrow {
    width: 1px;
    height: 40px;
    background: #e5e5e5;
    position: relative;
    animation: scroll-bounce 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -3px;
    width: 7px;
    height: 7px;
    border-right: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    transform: rotate(45deg);
}

/* Sections */
section {
    padding: 6rem 0;
    position: relative;
}

section:nth-child(even) {
    background: rgba(26, 26, 26, 0.3);
}

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

.track-card {
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(229, 229, 229, 0.1);
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.track-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(229, 229, 229, 0.05), transparent);
    transition: left 0.6s ease;
}

.track-card:hover::before {
    left: 100%;
}

.track-card:hover {
    transform: translateY(-8px);
    border-color: rgba(229, 229, 229, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.track-artwork {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #1a1a1a, #262626);
    margin-bottom: 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid rgba(229, 229, 229, 0.1);
}

.artwork-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a, #262626);
    position: relative;
    border-radius: 6px;
}

.play-button {
    position: absolute;
    font-size: 2.5rem;
    color: rgba(229, 229, 229, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    color: #e5e5e5;
    transform: scale(1.1);
}

.track-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
    font-weight: 400;
}

.track-description {
    color: #a1a1aa;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.track-controls {
    display: flex;
    gap: 1rem;
}

.play-btn, .download-btn {
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(229, 229, 229, 0.2);
    background: transparent;
    color: #a1a1aa;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    border-radius: 6px;
    font-weight: 400;
    font-size: 0.875rem;
}

.play-btn:hover, .download-btn:hover {
    background: #e5e5e5;
    color: #0a0a0a;
    border-color: #e5e5e5;
}

/* Merch Section */
.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(229, 229, 229, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(229, 229, 229, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.buy-btn {
    padding: 0.875rem 1.75rem;
    border: 1px solid rgba(229, 229, 229, 0.2);
    background: transparent;
    color: #a1a1aa;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 0.875rem;
    border-radius: 6px;
    font-weight: 400;
}

.buy-btn:hover {
    background: #e5e5e5;
    color: #0a0a0a;
    border-color: #e5e5e5;
}

.product-title {
    padding: 1.5rem;
    font-size: 1.125rem;
    margin: 0;
    color: #ffffff;
    font-weight: 400;
}

.product-price {
    padding: 0 1.5rem 1.5rem;
    color: #e5e5e5;
    font-weight: 500;
    font-size: 1rem;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 400;
}

.contact-info p {
    color: #d4d4d8;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #a1a1aa;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 1rem;
    border: 1px solid transparent;
    border-radius: 8px;
    background: rgba(26, 26, 26, 0.3);
}

.contact-link:hover {
    color: #ffffff;
    border-color: rgba(229, 229, 229, 0.2);
    background: rgba(26, 26, 26, 0.5);
}

.link-icon {
    font-size: 1.25rem;
    color: #e5e5e5;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(229, 229, 229, 0.1);
    color: #e8e8e8;
    font-family: inherit;
    transition: all 0.3s ease;
    border-radius: 8px;
    font-weight: 300;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(229, 229, 229, 0.3);
    background: rgba(26, 26, 26, 0.7);
}

.submit-btn {
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid rgba(229, 229, 229, 0.2);
    color: #a1a1aa;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 400;
    border-radius: 8px;
}

.submit-btn:hover {
    background: #e5e5e5;
    color: #0a0a0a;
    border-color: #e5e5e5;
}

/* Form validation styles */
.form-group input.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}

.form-group input.valid {
    border-color: #10b981;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

.error-message {
    display: block;
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-family: 'Inter', sans-serif;
    opacity: 0;
    transition: opacity 0.3s ease;
    min-height: 1.25rem;
}

.error-message.show {
    opacity: 1;
}

/* Footer */
.footer {
    background: rgba(10, 10, 10, 0.95);
    padding: 4rem 0;
    text-align: center;
    border-top: 1px solid rgba(229, 229, 229, 0.1);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #ffffff;
    letter-spacing: 0.1em;
}

.footer-tagline {
    color: #a1a1aa;
    margin-bottom: 2.5rem;
    font-style: italic;
    font-weight: 300;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #71717a;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 300;
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: #e5e5e5;
}

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

.footer-social .social-icon {
    color: #71717a;
    transition: all 0.3s ease;
    padding: 0.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.footer-social .social-icon svg {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.footer-social .social-icon:hover {
    color: #e5e5e5;
    background: rgba(229, 229, 229, 0.1);
    transform: translateY(-3px);
}

.footer-disclaimer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(229, 229, 229, 0.1);
    text-align: center;
}

.footer-disclaimer p {
    color: #a1a1aa;
    font-size: 0.75rem;
    line-height: 1.4;
    margin: 0;
    opacity: 0.8;
}

/* Animations */
@keyframes smoke-drift {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes static-flicker {
    0%, 100% { opacity: 0.02; }
    50% { opacity: 0.04; }
}

@keyframes glitch-shift {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(1px); }
}

@keyframes title-fade-in {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes tagline-fade-in {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes scroll-fade-in {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes glitch-1 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-1px, 1px); }
    40% { transform: translate(-1px, -1px); }
    60% { transform: translate(1px, 1px); }
    80% { transform: translate(1px, -1px); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(1px, -1px); }
    40% { transform: translate(1px, 1px); }
    60% { transform: translate(-1px, -1px); }
    80% { transform: translate(-1px, 1px); }
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .desktop-social-icons {
        display: none;
    }
    
    .mobile-social-container {
        display: block;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(229, 229, 229, 0.1);
    }

    .mobile-social-container .mobile-social-icons {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .mobile-social-container .mobile-social-icons .social-icon {
        color: #a1a1aa;
        transition: all 0.3s ease;
        padding: 0.75rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        min-height: 44px;
        min-width: 44px;
    }

    .mobile-social-container .mobile-social-icons .social-icon:hover {
        color: #ffffff;
        background: rgba(229, 229, 229, 0.1);
        transform: translateY(-2px);
    }

    .mobile-social-container .mobile-social-icons .social-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s ease-in-out;
        padding: 6rem 2rem 2rem;
        border-top: 1px solid rgba(229, 229, 229, 0.1);
        gap: 1.5rem;
        backdrop-filter: blur(20px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
        transform: translateX(-100%);
        z-index: 1001;
        margin: 0;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-link {
        padding: 1rem 0;
        font-size: 1.1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .music-grid,
    .merch-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 0.875rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .nav-container {
        padding: 0.875rem 1rem;
        gap: 0.75rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}

/* Responsive adjustments for video background */
@media (max-width: 768px) {
    .video-background iframe {
        width: 100vw;
        height: 100vh;
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.3;
    }
}

@media (max-width: 480px) {
    .video-background iframe {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0.25;
    }
}

/* Additional responsive improvements */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 2rem;
    }
    
    .nav-container {
        padding: 1.25rem 1.5rem;
    }
}

@media (max-width: 640px) {
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
    }
    
    .desktop-social-icons .social-icon {
        width: 36px;
        height: 36px;
    }
    
    .desktop-social-icons .social-icon svg {
        width: 18px;
        height: 18px;
    }
}
