/* =========================================
   1. VARIABLES & SETUP
   ========================================= */
@font-face {
    font-family: "Archivo Black";
    src: url('../assets/ArchivoBlack.ttf') format('truetype');
    display: swap;
    weight: 500;
    style: normal;
}

:root {
    --bg-color: #050505;
    --text-color: #e0e0e0;
    --accent-color: #9d9d9d;
    --accent-dim: rgba(117, 117, 117, 0.3);
    --secondary-bg: #0f0f0f;

    --font-main: 'Inter', sans-serif;
    --font-heading: 'Archivo Black', sans-serif;
    --font-tech: 'Archivo Black', monospace;

    --spacing-unit: 1rem;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* =========================================
   2. TYPOGRAPHY
   ========================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.7rem;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    background: var(--accent-color);
    margin-top: 5px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

/* =========================================
   3. UTILITIES & LAYOUT
   ========================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.text-center {
    text-align: center;
}

/* =========================================
   4. COMPONENTS
   ========================================= */

/* Clean Button */
.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    font-family: var(--font-tech);
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--accent-color);
    color: #000;
}

/* Simple Title Styling */
.glitch {
    position: relative;
    color: white;
}

/* Cards (Music Platforms & News) */
.platform-link,
.news-item {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid var(--accent-dim);
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 4px;
}

.platform-link:hover,
.news-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.platform-link {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-tech);
    text-transform: uppercase;
}

.platform-link img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.platform-link span {
    height: 27px;
}

.external-icon {
    width: 14px;
    height: 14px;
    height: 0;
    overflow: hidden;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border: 2px solid var(--accent-dim);
    transition: all 0.3s ease;
}

.video-wrapper:hover {
    border-color: var(--accent-color);
}

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

/* =========================================
   5. HEADER & NAV
   ========================================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    z-index: 1000;
    border-bottom: 1px solid var(--accent-dim);
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
}


.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-tech);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* =========================================
   6. SECTIONS
   ========================================= */

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../assets/preview.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
    padding-top: calc(55vh - 100px);
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 40px 40px;
    background: transparent;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    min-height: calc(45vh - 80px);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.1;
    font-weight: 700;
    color: #fff;
}

.hero-content p {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 2.5rem;
    letter-spacing: 3px;
    font-weight: 400;
}

.hero-social-links {
    display: flex;
    gap: 20px;
    margin-top: auto;
    margin-bottom: 0;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
}

.hero-social-links a {
    display: block;
    transition: all 0.3s ease;
}

.hero-social-links img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.hero-social-links a:hover img {
    transform: scale(1.2);
}

/* Video Peek Effect */
.video-peek {
    margin-top: -120px;
    padding-top: 30px !important;
    position: relative;
    z-index: 10;
}

/* About */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.members-list {
    list-style: none;
    border-left: 2px solid var(--accent-color);
    padding-left: 20px;
}

.members-list li {
    margin-bottom: 8px;
    font-family: var(--font-tech);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.members-list strong {
    font-size: 1.3rem;
    color: var(--accent-color);
}

/* Music Platforms */
.music-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.spotify-player {
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Footer */
footer {
    background-color: #000;
    padding: 40px 0;
    border-top: 1px solid var(--accent-dim);
    font-family: var(--font-main);
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    gap: 25px;
    margin-bottom: 15px;
    justify-content: center;
}

.social-links a {
    display: block;
}

.social-links img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.social-links a:hover img {
    transform: scale(1.2);
}

/* =========================================
   7. ANIMATIONS
   ========================================= */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* =========================================
   8. RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
    .hero {
        padding-top: calc(50vh - 100px);
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-social-links {
        gap: 15px;
        flex-wrap: wrap;
    }

    .hero-social-links img {
        width: 28px;
        height: 28px;
    }

    .video-peek {
        margin-top: -60px;
        padding-top: 20px !important;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    header {
        display: none;
    }
}