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

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #ffffff;
    overflow-x: hidden;
    height: 100%;
    position: relative;
}

/* Fixed Background */
.fixed-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('./background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
    pointer-events: none;
}

/* Section Base Styles */
.section {
    width: 100vw;
    position: relative;
    flex-shrink: 0;
    background: transparent;
    z-index: 2;
}

/* Section 1: Landing */
.landing-section {
    background: transparent;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.landing-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    position: relative;
    z-index: 3;
}

.band-logo {
    max-width: 520px;
    width: 80%;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
    animation: fadeInUp 1s ease-out;
}

.social-icons {
    display: flex;
    gap: 2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.social-icon {
    width: 48px;
    height: 48px;
    color: #ffffff;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 1;
    cursor: pointer;
    filter: brightness(1.1);
}

.social-icon:hover {
    transform: scale(1.2);
    opacity: 1;
    filter: brightness(1.2);
}

.social-icon svg {
    width: 100%;
    height: 100%;
    fill: #ffffff;
    stroke: none;
}

/* Section 2: About */
.about-section {
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 6rem 0;
    min-height: auto;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
    align-items: center;
    position: relative;
    z-index: 3;
}

.intro-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.intro-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.intro-header {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.9;
}

.intro-paragraph {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #ffffff;
    text-align: left;
    font-weight: 300;
}

.intro-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.intro-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.video-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    text-decoration: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-link:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: none;
}

.video-link:hover .play-button {
    background: rgba(0, 0, 0, 0.8);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button svg {
    width: 50px;
    height: 50px;
    margin-left: 4px;
}

.contact-buttons-content {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;
    flex-wrap: wrap;
    max-width: 1400px;
    width: 90%;
    margin: 6rem auto;
}

.contact-button {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    color: #ffffff;
    background: transparent;
    border: 2px solid #ffffff;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    animation: fadeInUp 1s ease-out;
}

.contact-button:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.contact-button.booking-button {
    animation-delay: 0.1s;
}

.contact-button.kontakt-button {
    animation-delay: 0.2s;
}

/* Section 3: Gallery */
.contact-section {
    background: transparent;
    padding: 6rem 0;
    min-height: auto;
}

.gallery-content {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 0;
    position: relative;
    z-index: 3;
}

.gallery-title {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeIn 1s ease-out;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 1.5rem;
    padding: 0 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
    z-index: 10;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    z-index: 1001;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Section Content Styles */
.section-content {
    text-align: center;
    position: relative;
    z-index: 3;
}

.section-content h2 {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fadeIn 1s ease-out;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .intro-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        width: 85%;
    }

    .intro-video {
        order: -1;
    }
}

@media (max-width: 768px) {
    .band-logo {
        max-width: 364px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

    .social-icons {
        gap: 1.5rem;
    }

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

    .intro-content {
        width: 90%;
        gap: 2rem;
    }

    .intro-title {
        font-size: 2rem;
    }

    .intro-header {
        font-size: 1.2rem;
    }

    .intro-paragraph {
        font-size: 0.9rem;
    }

    .contact-buttons-content {
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .contact-button {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 200px;
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gallery-item.wide {
        grid-column: span 2;
    }

    .gallery-item.tall {
        grid-row: span 2;
    }

    .gallery-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .band-logo {
        max-width: 286px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

    .social-icons {
        gap: 1.2rem;
    }

    .section-content h2 {
        font-size: 1.3rem;
    }


    .contact-buttons-content {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }

    .contact-button {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 150px;
        gap: 0.8rem;
        padding: 0;
    }

    .gallery-item.large,
    .gallery-item.wide {
        grid-column: span 2;
    }

    .gallery-item.tall {
        grid-row: span 2;
    }

    .gallery-title {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
}
