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

body {
    font-family: 'Roboto', sans-serif;
    background: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* ===================================
   Loading Screen
   =================================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hide {
    opacity: 0;
    visibility: hidden;
}

.loading-logo {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 8px;
    background: linear-gradient(45deg, #ff0000, #8b0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse-logo 2s ease-in-out infinite;
    margin-bottom: 2rem;
}

@keyframes pulse-logo {
    0%, 100% { 
        opacity: 0.6;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.05);
    }
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(139, 0, 0, 0.3);
    border-top: 4px solid #ff0000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    margin-top: 2rem;
    color: #888;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: fade 1.5s ease-in-out infinite;
}

@keyframes fade {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* ===================================
   Header
   =================================== */
header {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(139, 0, 0, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(70, 0, 0, 0.3) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

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

h1 {
    font-family: 'Cinzel', serif;
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 8px;
    text-transform: uppercase;
    background: linear-gradient(45deg, #ff0000, #8b0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(139, 0, 0, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 10px rgba(139, 0, 0, 0.5)); }
    to { filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.8)); }
}

.tagline {
    font-size: 1.5rem;
    letter-spacing: 4px;
    color: #aaa;
    margin-bottom: 2rem;
}

/* ===================================
   Navigation
   =================================== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    border-bottom: 1px solid rgba(139, 0, 0, 0.3);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: fixed;
    top: 1.5rem;
    right: 2rem;
    z-index: 101;
    gap: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #fff;
    transition: all 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: #ff0000;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: #ff0000;
}

.nav-menu {
    display: flex;
    gap: 3rem;
}

.nav-menu.mobile {
    display: none;
}

nav a {
    font-family: 'Cinzel', serif;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff0000;
    transition: width 0.3s;
}

nav a:hover {
    color: #ff0000;
}

nav a:hover::after {
    width: 100%;
}

/* ===================================
   Sections
   =================================== */
section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #ff0000;
}

/* ===================================
   Artist Section
   =================================== */
.artist-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.member {
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(139, 0, 0, 0.2);
}

.member:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
    border-color: rgba(255, 0, 0, 0.5);
}

.member-icon {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #8b0000, #ff0000);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.member h3 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.artist-role {
    font-size: 1.2rem;
    color: #ff0000;
    margin-bottom: 0.5rem;
}

.artist-location {
    font-size: 1rem;
    color: #888;
    margin-bottom: 2rem;
}

.artist-quote {
    color: #ff0000;
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 2rem;
    border-left: 3px solid #8b0000;
    padding-left: 1.5rem;
    text-align: left;
}

.artist-description {
    color: #aaa;
    line-height: 1.8;
    text-align: left;
    margin-bottom: 2rem;
}

.sound-title {
    font-family: 'Cinzel', serif;
    color: #ff0000;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-align: left;
}

.sound-description {
    text-align: left;
    color: #aaa;
    line-height: 1.8;
}

.sound-description p {
    margin-bottom: 1.5rem;
}

.sound-description strong {
    color: #ff0000;
}

/* ===================================
   Spotify Section
   =================================== */
.spotify-section {
    max-width: 800px;
    margin: 0 auto 5rem;
    text-align: center;
}

.spotify-title {
    font-family: 'Cinzel', serif;
    color: #ff0000;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-align: center;
}

.spotify-player {
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(139, 0, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s;
}

.spotify-player:hover {
    border-color: rgba(255, 0, 0, 0.5);
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.2);
}

.videos-title {
    font-family: 'Cinzel', serif;
    color: #ff0000;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-align: center;
}

/* ===================================
   Video Section
   =================================== */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.video-container h3 {
    color: #ff0000;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
    text-align: center;
    font-size: 1rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    border: 2px solid rgba(139, 0, 0, 0.3);
    transition: all 0.3s;
}

.video-wrapper:hover {
    border-color: rgba(255, 0, 0, 0.5);
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.2);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ===================================
   Contact Section
   =================================== */
.contact-content {
    text-align: center;
}

.contact-intro {
    margin-bottom: 2rem;
    color: #aaa;
}

.contact-subtitle {
    font-family: 'Cinzel', serif;
    color: #ff0000;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: 3rem;
}

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

.social-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.social-link:hover {
    color: #ff0000;
}

.social-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.social-label {
    letter-spacing: 1px;
}

/* ===================================
   Button
   =================================== */
.btn {
    background: linear-gradient(135deg, #8b0000, #ff0000);
    color: #fff;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 3rem;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.5);
}

/* ===================================
   Cookie Consent Banner
   =================================== */
.cookie-consent {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
    border-top: 2px solid rgba(139, 0, 0, 0.5);
    padding: 1.5rem 2rem;
    z-index: 1000;
    transition: bottom 0.5s ease-in-out;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

.cookie-consent.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text {
    color: #aaa;
    line-height: 1.6;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background: linear-gradient(135deg, #8b0000, #ff0000);
    color: #fff;
}

.cookie-accept:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

.cookie-reject {
    background: transparent;
    color: #888;
    border: 1px solid #444;
}

.cookie-reject:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-color: #666;
}

/* ===================================
   Footer
   =================================== */
footer {
    background: #0a0a0a;
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(139, 0, 0, 0.3);
}

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

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #ff0000;
}

.copyright {
    color: #666;
}

/* ===================================
   Back to Top Button
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8b0000, #ff0000);
    border: 2px solid rgba(139, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 998;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.5);
}

/* ===================================
   Social Share Buttons
   =================================== */
.social-share {
    position: fixed;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 998;
}

.share-btn {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
    border: 2px solid rgba(139, 0, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    opacity: 0;
    animation: slideInLeft 0.5s ease forwards;
}

.share-btn:nth-child(1) { animation-delay: 0.1s; }
.share-btn:nth-child(2) { animation-delay: 0.2s; }
.share-btn:nth-child(3) { animation-delay: 0.3s; }
.share-btn:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.share-btn:hover {
    background: linear-gradient(135deg, #8b0000, #ff0000);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

/* ===================================
   Scroll Animations
   =================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===================================
   Parallax Effect
   =================================== */
.parallax {
    transform: translateY(0);
    transition: transform 0.1s ease-out;
}

/* ===================================
   Glitch Effect
   =================================== */
.glitch {
    position: relative;
    animation: glitch 3s infinite;
}

@keyframes glitch {
    0%, 90%, 100% {
        text-shadow: 
            0 0 30px rgba(139, 0, 0, 0.5);
    }
    92% {
        text-shadow: 
            2px 2px #ff0000,
            -2px -2px #00ffff,
            0 0 30px rgba(139, 0, 0, 0.8);
    }
    94% {
        text-shadow: 
            -2px 2px #ff0000,
            2px -2px #00ffff,
            0 0 30px rgba(139, 0, 0, 0.8);
    }
}

/* ===================================
   Custom Scrollbar
   =================================== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
    border-left: 1px solid rgba(139, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #8b0000, #ff0000);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff0000, #ff4444);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
        letter-spacing: 4px;
    }

    nav {
        gap: 1rem;
        padding: 1rem;
    }

    nav a {
        font-size: 0.8rem;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    h2 {
        font-size: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .loading-text {
        font-size: 0.8rem;
    }

    .loading-logo {
        font-size: 2.5rem;
    }

    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .nav-menu.mobile {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }

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

    .nav-menu.mobile a {
        font-size: 2rem;
    }

    .social-share {
        left: 1rem;
        gap: 0.7rem;
    }

    .share-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .spotify-section {
        margin-bottom: 3rem;
    }

    .spotify-player {
        padding: 1rem;
    }

    .spotify-title,
    .videos-title {
        font-size: 1.5rem;
    }
}