/* Skip Link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 6px;
    background: #ffffff;
    color: #000000;
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid #333333;
}

.skip-link:focus {
    top: 6px;
}


/* Font Declarations */
@font-face {
    font-family: 'League Gothic';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('./fonts/league-gothic-v12-latin-ext-regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Khand';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('./fonts/khand-v21-latin-ext-300.woff2') format('woff2');
}

@font-face {
    font-family: 'Khand';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('./fonts/khand-v21-latin-ext-regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Khand';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('./fonts/khand-v21-latin-ext-500.woff2') format('woff2');
}

@font-face {
    font-family: 'Khand';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('./fonts/khand-v21-latin-ext-600.woff2') format('woff2');
}

@font-face {
    font-family: 'Khand';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('./fonts/khand-v21-latin-ext-700.woff2') format('woff2');
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Khand', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: heroEnter 1.5s ease 0.3s both;
}

@keyframes heroEnter {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.logo-container {
    margin-bottom: 4rem;
    display: inline-block;
    text-align: left;
}

.logo-main {
    font-family: 'League Gothic', sans-serif;
    font-size: clamp(6rem, 15vw, 18rem);
    font-weight: 400;
    line-height: 0.8;
    color: #ffffff;
    margin: 0;
    padding: 0;
    border: 0;
    animation: logoGlow 2s ease 1s both;
}

@keyframes logoGlow {
    0% {
        text-shadow: none;
    }
    100% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.1),
                     0 0 40px rgba(255, 107, 107, 0.1);
    }
}

.logo-sub {
    font-family: 'Khand', sans-serif;
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 300;
    color: #cccccc;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-top: -0.5rem;
    margin-left: clamp(.15rem, 0.4vw, .3rem);
    animation: subLogoSlide 1s ease 1.2s both;
}

@keyframes subLogoSlide {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.coming-soon {
    font-family: 'Khand', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.8rem);
    font-weight: 300;
    color: #999999;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin: 0;
    animation: comingSoonFade 1s ease 1.5s both;
}

@keyframes comingSoonFade {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: scrollIndicatorFade 1s ease 2s both;
    cursor: pointer;
}

@keyframes scrollIndicatorFade {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.scroll-arrow {
    width: 2px;
    height: 3rem;
    position: relative;
    background: linear-gradient(to bottom, transparent, #ffffff, transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-arrow span {
    position: absolute;
    width: 10px;
    height: 10px;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    animation: scrollMove 2s ease-in-out infinite;
}

.scroll-arrow span:nth-child(1) {
    top: 0.2rem;
    animation-delay: 0s;
}

.scroll-arrow span:nth-child(2) {
    top: 0.8rem;
    animation-delay: 0.3s;
}

.scroll-arrow span:nth-child(3) {
    top: 1.4rem;
    animation-delay: 0.6s;
}

@keyframes scrollMove {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px) rotate(45deg);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) rotate(45deg);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(10px) rotate(45deg);
    }
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.scroll-text {
    font-family: 'Khand', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: #aaaaaa;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: scrollTextPulse 2s ease-in-out infinite;
}

@keyframes scrollTextPulse {
    0%, 100% {
        opacity: 0.3;
        transform: translateY(0);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-2px);
    }
}

/* Section Styles */
section {
    padding: 4rem 0;
}

.section-title {
    font-family: 'League Gothic', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    line-height: 1;
    text-align: center;
    margin-bottom: 6rem;
    color: #ffffff;
    text-transform: uppercase;
}

/* Upcoming Single Section */
.upcoming-single {
    background: #111111;
    padding: 8rem 0;
}

.single-card {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 700px;
    margin: 0 auto;
}

.single-artwork {
    flex: 0 0 300px;
    position: relative;
    aspect-ratio: 1;
}

.single-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    display: block;
}

.artwork-fallback {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    display: none;
    align-items: center;
    justify-content: center;
    font-family: 'League Gothic', sans-serif;
    font-weight: 400;
    font-size: 2rem;
    color: #ffffff;
    text-align: center;
}

.single-image:not([src]) + .artwork-fallback,
.single-image[src=""] + .artwork-fallback {
    display: flex;
}

.antisemit-artwork {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
}

.single-info {
    flex: 1;
}

.single-title {
    font-family: 'League Gothic', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.single-artist {
    font-family: 'Khand', sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 400;
    color: #cccccc;
    margin-bottom: 3rem;
}

.release-dates {
    display: flex;
    gap: 3rem;
}

.preorder-date,
.release-date {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.release-dates .label {
    font-family: 'Khand', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #aaaaaa;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.release-dates .date {
    font-family: 'Khand', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #ffffff;
}

/* Artist Sections */
.artist-section {
    padding: 8rem 0;
}

.musikuss-section {
    background: #000000;
}

.artist-content {
    display: grid;
    grid-template-columns: 1fr 5fr;
    gap: 6rem;
    align-items: start;
    margin-bottom: 8rem;
}

.artist-content:last-child {
    margin-bottom: 0;
}

.artist-intro {
    display: block;
}

.artist-portrait {
    margin-bottom: 0;
}

.artist-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 3px solid #333333;
}

.artist-info {
    margin-bottom: 4rem;
}

.artist-name {
    font-family: 'League Gothic', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.artist-description {
    font-family: 'Khand', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #cccccc;
    line-height: 1.6;
}

/* Albums Grid */
.albums-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.album-card {
    transition: transform 0.3s ease;
}

.album-card:hover {
    transform: scale(1.05);
}

.album-artwork {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    margin-bottom: 1rem;
}

.album-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.album-image:not([src]) + .artwork-fallback,
.album-image[src=""] + .artwork-fallback {
    display: flex;
}

.artwork-fallback {
    border-radius: 10px;
}

.album-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.album-title {
    font-family: 'League Gothic', sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    flex: 1;
}

.album-artist {
    display: none;
}

/* Streaming Platforms */
.streaming-platforms {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.platform-link {
    display: block;
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.platform-link:hover {
    transform: scale(1.2);
    opacity: 1;
}

.platform-icon {
    width: 100%;
    height: 100%;
    display: block;
    vertical-align: top;
}

/* Artwork Fallbacks */
.bit-artwork { background: linear-gradient(135deg, #4ecdc4, #44a08d); }
.see-through-artwork { background: linear-gradient(135deg, #ff6b6b, #ee5a52); }
.linksradikal-artwork { background: linear-gradient(135deg, #667eea, #764ba2); }
.mama-artwork { background: linear-gradient(135deg, #f093fb, #f5576c); }
.daydream-artwork { background: linear-gradient(135deg, #a8edea, #fed6e3); }
.journey-artwork { background: linear-gradient(135deg, #ffecd2, #fcb69f); }
.fruehling-artwork { background: linear-gradient(135deg, #a18cd1, #fbc2eb); }
.silenced-artwork { background: linear-gradient(135deg, #667eea, #764ba2); }

/* About Label Section */
.about-label {
    background: #111111;
    padding: 6rem 0;
}

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

.about-content p {
    font-family: 'Khand', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-info {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #333333;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.contact-email {
    font-family: 'Khand', sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 600;
    color: #ff6b6b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-email:hover {
    color: #ffffff;
}

/* Footer */
.footer {
    background: #000000;
    padding: 2rem 0;
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.footer-logo {
    font-family: 'League Gothic', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-right {
    font-family: 'Khand', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #aaaaaa;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Image Loading States */
img {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img.loaded {
    opacity: 1;
}

/* Responsive Design */

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .artist-content {
        grid-template-columns: 1fr 3fr;
        gap: 3rem;
    }
    
    .albums-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .single-card {
        gap: 3rem;
        padding: 2rem;
    }
    
    .artist-name {
        font-size: 2rem;
    }
    
    .single-title {
        font-size: 2.5rem;
    }
    
    .artist-image {
        width: 180px;
        height: 180px;
    }
    
    .logo-main {
        font-size: clamp(6rem, 10vw, 10rem);
    }
    
    .platform-link {
        width: 28px;
        height: 28px;
    }
}

/* Mobile and Small Tablet Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        text-align: center;
    }
    
    .logo-main {
        font-size: clamp(5.5rem, 16vw, 10rem);
        letter-spacing: -0.02em;
    }
    
    .logo-sub {
        font-size: clamp(1.4rem, 4vw, 2.5rem);
        margin-left: 0.1em;
    }
    
    .coming-soon {
        font-size: clamp(0.9rem, 2vw, 1.2rem);
    }
    
    .scroll-indicator {
        bottom: 2rem;
    }
    
    .single-card {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem;
    }
    
    .single-artwork {
        flex: 0 0 auto;
    }
    
    .artist-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .artist-intro {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .artist-portrait {
        flex: 0 0 auto;
        display: flex;
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .albums-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 1rem;
    }
    
    .album-card {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .album-artwork {
        width: calc(100% - 2rem);
        height: 0;
        padding-bottom: calc(100% - 2rem);
        position: relative;
        margin: 0 1rem 1rem 1rem;
        overflow: hidden;
        border-radius: 10px;
    }
    
    .album-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }
    
    .artwork-fallback {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 10px;
    }
    
    .artist-info {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .artist-name {
        text-align: center;
    }
    
    .artist-description {
        text-align: center;
    }
    
    .platform-link {
        width: 32px;
        height: 32px;
    }
    
    .streaming-platforms {
        gap: 1rem;
        justify-content: flex-start;
    }
    
    .album-info {
        text-align: left;
        width: calc(100% - 2rem);
        margin: 0 1rem;
    }
    
    .album-title {
        text-align: left;
        font-size: clamp(1.4rem, 3.5vw, 1.8rem);
    }
    
    .album-artist {
        text-align: left;
    }
    
    .single-info {
        padding: 1.5rem;
    }
    
    .release-dates {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    section {
        padding: 2.5rem 0;
    }
    
    .single-card {
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .container {
        padding: 0 0.75rem;
    }
    
    .platform-link {
        width: 36px;
        height: 36px;
    }
    
    .streaming-platforms {
        gap: 1rem;
    }
    
    .single-artwork {
        flex: 0 0 250px;
    }
    
    .single-image,
    .artwork-fallback {
        height: 100%;
    }
    
    .artist-image {
        width: 150px;
        height: 150px;
    }
    
    .album-artwork {
        height: 200px;
    }
}

/* Scroll Animations */
@media (prefers-reduced-motion: no-preference) {
    .section-title,
    .single-card,
    .artist-intro,
    .album-card,
    .about-content {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease;
    }
    
    .section-title.visible,
    .single-card.visible,
    .artist-intro.visible,
    .album-card.visible,
    .about-content.visible {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Staggered animations for album grids */
    .album-card {
        transition-delay: 0s;
    }
    
    .album-card:nth-child(1) {
        transition-delay: 0.1s;
    }
    
    .album-card:nth-child(2) {
        transition-delay: 0.2s;
    }
    
    .album-card:nth-child(3) {
        transition-delay: 0.3s;
    }
    
    .album-card:nth-child(4) {
        transition-delay: 0.4s;
    }
}

/* Accessibility */
.using-keyboard *:focus {
    outline: 2px solid #ff6b6b;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .platform-link {
        border: 2px solid #ffffff;
        border-radius: 4px;
    }
    
    .album-card,
    .single-card {
        border-color: #ffffff;
    }
}