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

:root {
    --dark-purple: #1a1a2e;
    --dark-burgundy: #4a2545;
    --burgundy: #6b2d44;
    --deep-red: #89261F;
    --primary-red: #D1493B;
    --coral: #E8624D;
    --orange: #FF7F50;
    --navy: #151633;
    --cream: #F5F1E8;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--navy);
    background: linear-gradient(90deg, #2a2444 0%, #4a2545 20%, #6b2d44 40%, #89261F 60%, #D1493B 80%, #FF7F50 100%);
    overflow-x: hidden;
}

/* Section Separators */
.section-separator {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    position: relative;
    background: transparent;
    height: 1px;
}

.section-separator::before {
    content: '';
    display: block;
    width: 80%;
    height: 1px;
    background: radial-gradient(ellipse at center, rgba(21, 22, 51, 0.4) 0%, transparent 70%);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
    background: rgba(21, 22, 51, 0.95);
    backdrop-filter: blur(10px);
}

nav.scrolled {
    background: rgba(21, 22, 51, 0.98);
    backdrop-filter: blur(10px);
    padding: 1.2rem 4rem;
    box-shadow: 0 2px 20px rgba(21, 22, 51, 0.3);
}

.logo {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: var(--cream);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    font-weight: 300;
    position: relative;
    transition: opacity 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--cream);
    transition: width 0.3s ease;
}

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

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--cream);
    opacity: 1;
    transition: all 0.3s ease;
}

/* Sections */
section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 4rem 4rem;
    position: relative;
}

.section-content {
    max-width: 1200px;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button Style */
.btn {
    display: inline-block;
    color: var(--navy);
    text-decoration: none;
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 400;
    letter-spacing: 0.12em;
    padding: 0.8rem 2.5rem;
    border: 1.5px solid rgba(21, 22, 51, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(21, 22, 51, 0.08);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover {
    border-color: rgba(21, 22, 51, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn:hover::before {
    left: 0;
}

.btn span {
    position: relative;
    z-index: 1;
}

/* Music Section */
#music {
    background: linear-gradient(135deg, #FF7F50 0%, #D1493B 50%, #89261F 100%);
}

.cassette-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
    align-items: start;
}

.media-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cassette-image {
    width: 100%;
    height: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease;
}

.cassette-image:hover {
    transform: scale(1.02);
}

.cassette-details {
    background: linear-gradient(135deg, rgba(21, 22, 51, 0.3) 0%, rgba(21, 22, 51, 0.2) 100%);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border: 1px solid rgba(21, 22, 51, 0.2);
}

.cassette-details h3 {
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
    color: var(--cream);
}

.cassette-details .release-title {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    opacity: 0.9;
    color: var(--cream);
}

.cassette-details p {
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 300;
    color: var(--cream);
    opacity: 0.85;
    margin-bottom: 0.8rem;
}

.cassette-photo {
    margin-top: 3rem;
}

.cassette-photo a {
    display: block;
}

.cassette-details .tracklist {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(245, 241, 232, 0.2);
}

.cassette-details .tracklist h4 {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    color: var(--cream);
}

.cassette-details .tracklist p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: var(--cream);
}

/* Bandcamp Player */
.bandcamp-player {
    width: 100%;
    position: relative;
    container-type: inline-size;
}

.bandcamp-player iframe {
    width: 100%;
    border: none;
    height: calc(100cqw + 120px);
}

/* YouTube Player */
.youtube-player {
    width: 100%;
}

.youtube-player iframe {
    width: 100%;
    border: none;
    aspect-ratio: 16/9;
}

/* Order Buttons */
.order-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.order-buttons .btn {
    color: var(--cream);
    border-color: rgba(245, 241, 232, 0.4);
}

.order-buttons .btn::before {
    background: rgba(245, 241, 232, 0.08);
}

.order-buttons .btn:hover {
    border-color: rgba(245, 241, 232, 0.8);
}

/* Photos Section */
#photos {
    background: linear-gradient(135deg, #D1493B 0%, #89261F 50%, #6b2d44 100%);
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.photo-item {
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.1);
}

.photo-landscape {
    grid-column: span 2;
    aspect-ratio: 3/2;
}

.photo-portrait {
    grid-column: span 1;
    aspect-ratio: 2/3;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.photo-item:hover img {
    transform: scale(1.05);
}

.photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(21, 22, 51, 0.8), transparent);
    color: var(--cream);
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photo-item:hover .photo-caption {
    opacity: 1;
}

.photo-credit {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.85rem;
    font-style: italic;
    opacity: 0.7;
    color: var(--navy);
}

/* Info Section */
#info {
    background: linear-gradient(135deg, #6b2d44 0%, #4a2545 50%, #2a2444 100%);
    color: var(--cream);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-top: 4rem;
}

.bio-text {
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
}

.bio-text p {
    margin-bottom: 1.5rem;
}

.language-toggle {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    justify-content: flex-start;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(245, 241, 232, 0.3);
    color: var(--cream);
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: Georgia, 'Times New Roman', serif;
}

.lang-btn:hover {
    border-color: rgba(245, 241, 232, 0.6);
    background: rgba(245, 241, 232, 0.05);
}

.lang-btn.active {
    background: rgba(245, 241, 232, 0.15);
    border-color: rgba(245, 241, 232, 0.8);
}

.bio-content {
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.members {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.member {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.member-photo-link {
    text-decoration: none;
    display: block;
    flex-shrink: 0;
}

.member-photo {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--orange) 100%);
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 2rem;
    font-weight: 300;
    transition: all 0.3s ease;
    cursor: pointer;
}

.member-photo-link:hover .member-photo {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, var(--orange) 0%, var(--coral) 100%);
}

.member-photo-link:hover .member-photo {
    color: rgba(255, 255, 255, 0.7);
}

.member-info h3 {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    margin-bottom: 0.3rem;
}

.member-instrument {
    font-size: 0.9rem;
    opacity: 0.6;
    margin-bottom: 0.8rem;
    font-style: italic;
}

.member-socials {
    display: flex;
    gap: 1rem;
    margin-top: 0.8rem;
}

.social-icon {
    width: 18px;
    height: 18px;
    color: var(--coral);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    opacity: 1;
}

.social-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.member-link {
    color: var(--coral);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.member-link:hover {
    border-bottom-color: var(--coral);
}

/* Pro Section */
#pro {
    background: linear-gradient(135deg, var(--dark-purple) 0%, var(--dark-burgundy) 100%);
    color: var(--cream);
}

.pro-content {
    text-align: center;
    max-width: 600px;
    margin: 4rem auto 0;
}

.pro-content p {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.pro-content .btn {
    color: var(--cream);
    border-color: rgba(245, 241, 232, 0.4);
}

.pro-content .btn::before {
    background: rgba(245, 241, 232, 0.08);
}

.pro-content .btn:hover {
    border-color: rgba(245, 241, 232, 0.8);
}

/* Contact Section */
#contact {
    background: linear-gradient(135deg, #FF7F50 0%, #D1493B 100%);
    position: relative;
    overflow: hidden;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    font-size: 1.1rem;
    line-height: 2;
    font-weight: 300;
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.contact-info .btn {
    color: var(--navy);
    border-color: rgba(21, 22, 51, 0.4);
}

.contact-info .btn::before {
    background: rgba(21, 22, 51, 0.08);
}

.contact-info .btn:hover {
    border-color: rgba(21, 22, 51, 0.8);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    letter-spacing: 0.12em;
    margin-bottom: 1.5rem;
}

.band-name-line {
    display: inline;
}

.section-header .line {
    width: 60px;
    height: 1px;
    background: currentColor;
    margin: 0 auto;
    opacity: 0.4;
}

/* Responsive */
@media (max-width: 968px) {
    .cassette-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .photo-landscape,
    .photo-portrait {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .band-name-line {
        display: block;
    }

    nav {
        padding: 1.5rem 2rem;
    }

    nav.scrolled {
        padding: 1rem 2rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--navy);
        flex-direction: column;
        padding: 6rem 2rem;
        gap: 2rem;
        transition: right 0.4s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    section {
        padding: 6rem 2rem 3rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .member {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .hero-title {
        letter-spacing: 0.1em;
    }

    .order-buttons {
        flex-direction: column;
    }

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

    /* Reduce text sizes on mobile */
    .section-header h2 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .cassette-details h3 {
        font-size: 1.4rem;
    }

    .cassette-details .release-title {
        font-size: 1.1rem;
    }

    .cassette-details p {
        font-size: 0.95rem;
    }

    .bio-text {
        font-size: 1rem;
    }

    .contact-info {
        font-size: 1rem;
    }

    .pro-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cassette-details {
        padding: 2rem;
    }

    .lang-btn {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
}