@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&family=Orbitron:wght@400;700;900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Sedgwick+Ave+Display&display=swap');

/* Added for Punk feel */

:root {
    --bg-color: #000000;
    --neon-pink: #f907dd;
    --neon-orange: #cc4903;
    --text-color: #ffffff;
    --glass-bg: rgba(20, 20, 20, 0.9);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
        url('../img/duo.JPG');
    /* Subtle background texture */
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

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

/* Punk Box Style (formerly crypt-container) */
.crypt-container {
    background: #050505;
    border: 2px solid var(--neon-pink);
    padding: 40px;
    margin-bottom: 60px;
    position: relative;
    box-shadow:
        5px 5px 0px var(--neon-orange),
        -5px -5px 0px rgba(249, 7, 221, 0.3);
    transform: skew(-1deg);
    /* Slight punk skew */
}

.crypt-container:hover {
    border-color: var(--neon-orange);
    box-shadow:
        5px 5px 0px var(--neon-pink),
        -5px -5px 0px rgba(204, 73, 3, 0.3);
}

.crypt-container>* {
    transform: skew(1deg);
    /* Un-skew content */
}

.section-title {
    text-align: center;
    font-size: 4rem;
    /* Increased for Sedgwick Ave Display */
    max-width: 100%;
    overflow-wrap: break-word;
    margin-bottom: 20px;
    /* Reduced from 50px */
    color: #fff;
    text-shadow:
        2px 2px 0px var(--neon-pink),
        -2px -2px 0px var(--neon-orange);
    font-family: 'Sedgwick Ave Display', cursive;
    /* Punk font */
    transform: rotate(-2deg);
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: var(--neon-pink);
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    border: 2px solid var(--neon-pink);
    cursor: pointer;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    transition: all 0.2s ease;
    box-shadow: 0 0 10px var(--neon-pink);
}

.btn:hover {
    background: var(--neon-pink);
    color: #000;
    box-shadow: 0 0 30px var(--neon-pink);
    transform: scale(1.05);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #000;
    border-bottom: 2px solid var(--neon-pink);
    padding: 15px 0;
}

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

.logo img {
    height: 50px;
    filter: drop-shadow(0 0 5px var(--neon-pink));
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: #fff;
    text-transform: uppercase;
    position: relative;
}

.nav-links a:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
    text-decoration: line-through;
    /* Punk style */
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--neon-pink);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 80px;
    background: radial-gradient(circle, #220011 0%, #000000 80%);
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.hero-logo {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 30px;
    filter: drop-shadow(0 0 10px var(--neon-pink));
    animation: glitch 3s infinite;
}

@keyframes glitch {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(-2px, -2px);
    }

    60% {
        transform: translate(2px, 2px);
    }

    80% {
        transform: translate(2px, -2px);
    }

    100% {
        transform: translate(0);
    }
}

.hero-content h2 {
    font-size: 3rem;
    /* Increased size */
    color: var(--neon-orange);
    margin-bottom: 20px;
    text-shadow: 0 0 10px var(--neon-orange);
    font-family: 'Sedgwick Ave Display', cursive;
}

.hero-content p {
    font-size: 1.2rem;
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    border: 1px dashed var(--neon-pink);
    display: inline-block;
}

/* Sections General */
section {
    padding: 80px 0;
}

/* Biography */
.bio-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.bio-img img {
    border: 2px solid var(--neon-orange);
    box-shadow: 10px 10px 0px var(--neon-pink);
    filter: grayscale(100%) contrast(120%);
    transition: all 0.3s ease;
}

.bio-img img:hover {
    filter: grayscale(0%);
    transform: translate(-5px, -5px);
    box-shadow: 15px 15px 0px var(--neon-pink);
}

.bio-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.members {
    margin-top: 30px;
    border-top: 1px dashed var(--neon-pink);
    padding-top: 20px;
}

.member strong {
    color: var(--neon-orange);
}

/* Music */
.music-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.spotify-embed {
    width: 100%;
    max-width: 600px;
    border: 2px solid var(--neon-pink);
    box-shadow: 0 0 20px rgba(249, 7, 221, 0.2);
}

.streaming-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.streaming-btn {
    padding: 10px 25px;
    background: #000;
    border: 2px solid var(--neon-orange);
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.streaming-btn:hover {
    background: var(--neon-orange);
    color: #000;
    box-shadow: 0 0 20px var(--neon-orange);
}

.video-container {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 16 / 9;
    border: 2px solid var(--neon-pink);
    box-shadow: 10px 10px 0 #000, 12px 12px 0 var(--neon-orange);
}

.video-container iframe {
    width: 100%;
    height: 100%;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    border: 2px solid #333;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    border-color: var(--neon-pink);
    z-index: 10;
    transform: scale(1.1) rotate(2deg);
    box-shadow: 0 0 20px var(--neon-pink);
}

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

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

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border: 2px solid var(--neon-pink);
    box-shadow: 0 0 50px var(--neon-pink);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: var(--neon-pink);
    cursor: pointer;
}

/* Blog / Latest News */
.blog-list {
    max-width: 900px;
    margin: 0 auto;
}

.blog-post {
    background: #111;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid #333;
    border-left: 5px solid var(--neon-orange);
    transition: all 0.3s ease;
}

.blog-post:hover {
    border-color: var(--neon-pink);
    background: #000;
    box-shadow: 5px 5px 0px var(--neon-pink);
    transform: translateX(5px);
}

.blog-post h3 {
    color: #fff;
    margin-bottom: 10px;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--neon-orange);
    margin-bottom: 15px;
    display: block;
    font-family: 'Orbitron', sans-serif;
}

/* Store */
.store {
    background: #111;
    border-top: 2px solid var(--neon-pink);
    padding: 80px 0;
}

.store-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.store-image {
    flex: 1;
    max-width: 400px;
    position: relative;
}

.store-image img {
    border: 2px solid var(--neon-orange);
    box-shadow: 10px 10px 0 var(--neon-pink);
    transform: rotate(-3deg);
    transition: all 0.3s ease;
}

.store-image:hover img {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 15px 15px 0 var(--neon-orange);
}

.store-text {
    flex: 1;
    text-align: left;
}

.store-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #fff;
}

@media (max-width: 768px) {
    .store-content {
        flex-direction: column;
        text-align: center;
    }

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

    .store-text .section-title {
        text-align: center !important;
    }
}

/* Footer */
footer {
    background: #000;
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid #333;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.socials a {
    font-size: 1.5rem;
    color: #fff;
}

.socials a:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #000;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        border-bottom: 2px solid var(--neon-pink);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .bio-container {
        grid-template-columns: 1fr;
    }

    .crypt-container {
        padding: 20px;
        transform: none;
        /* Remove skew on mobile for readability */
    }

    .crypt-container>* {
        transform: none;
    }

    /* Force color on mobile */
    .bio-img img,
    .gallery-item img {
        filter: grayscale(0%);
    }

    .section-title {
        font-size: 2.5rem;
        /* Increased mobile size */
    }
}