.site-footer {
    background-color: transparent;
    padding: 60px 40px 40px;
    margin-top: 120px;
    font-family: 'Helvetica', Arial, sans-serif;
    color: black;
    position: relative;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
}

.footer-left,
.footer-right {
    width: 100%;
    text-align: center;
}

.footer-left {
    order: 3;
    padding: 0;
}

.footer-right {
    order: 2;
    padding: 0;
}

.contact-info {
    color: black;
}

.contact-info p {
    margin: 8px 0;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.contact-info .phone-info {
    margin-top: 30px;
    font-size: 20px;
    font-weight: 400;
}

.contact-info .contact-name {
    font-size: 20px;
    font-weight: 400;
}

.contact-info .cvr-info {
    margin-top: 30px;
    font-size: 20px;
    font-weight: 400;
}

/* Full-width scrolling gallery section */
.footer-gallery-section {
    order: 1;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    margin-bottom: 40px;
}

.scrolling-gallery {
    width: 100%;
    overflow: hidden;
}

.scrolling-track {
    display: flex;
    gap: 80px;
    animation: scroll-gallery 90s linear infinite;
}

.scrolling-track img {
    width: 350px;
    height: 350px;
    object-fit: cover;
    flex-shrink: 0;
}

/* 18 images * 350px + 18 gaps * 80px = 7740px */
@keyframes scroll-gallery {
    0% {
        transform: translateX(-7740px);
    }
    100% {
        transform: translateX(0);
    }
}

/* Logo overlay centered on top of scrolling gallery */
.footer-logo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.footer-logo-overlay svg {
    width: 100%;
    height: auto;
    fill: currentColor;
}

.festival-info {
    color: black;
}

.festival-dates {
    font-size: 28px;
    font-weight: 400;
    margin: 0 0 15px 0;
    letter-spacing: 1px;
}

.location,
.postal {
    font-size: 20px;
    font-weight: 400;
    margin: 8px 0;
    letter-spacing: 0.5px;
}

.social-links {
    margin-top: 30px;
}

.social-links a {
    display: inline-block;
    color: black;
    text-decoration: none;
    font-size: 20px;
    font-weight: 400;
    margin: 10px 15px;
    letter-spacing: 1px;
}

.social-links a:hover {
    text-decoration: underline;
}

.footer-button-container {
    margin-top: 30px;
}

.footer-buy-ticket-btn {
    display: inline-block;
    background-color: black;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    font-family: 'Helvetica', Arial, sans-serif;
    text-decoration: none;
}

/* Hover effect handled by button-hover.js */


@media (max-width: 768px) {
    .site-footer {
        padding: 25px 20px;
        margin-top: 40px;
    }

    .footer-container {
        gap: 15px;
        padding: 0 15px;
    }


    .footer-right {
        order: 2;
        padding: 0;
    }

    .footer-left {
        order: 3;
        padding: 0;
    }

    .contact-info p {
        font-size: 16px;
        margin: 4px 0;
    }

    .contact-info .phone-info {
        margin-top: 12px;
        font-size: 16px;
    }

    .contact-info .contact-name {
        font-size: 16px;
    }

    .contact-info .cvr-info {
        margin-top: 12px;
        font-size: 16px;
    }

    .festival-dates {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .location,
    .postal {
        font-size: 16px;
        margin: 3px 0;
    }

    .social-links {
        margin-top: 12px;
        gap: 15px;
    }

    .social-links a {
        font-size: 14px;
    }

    .footer-gallery-section {
        margin-bottom: 20px;
    }

    .scrolling-track {
        gap: 60px;
    }

    .scrolling-track img {
        width: 200px;
        height: 200px;
    }

    .footer-logo-overlay {
        width: 150px;
        height: 150px;
    }

    .footer-logo-overlay svg {
        width: 100%;
        height: 100%;
    }

    .footer-buy-ticket-btn {
        padding: 10px 20px;
        font-size: 14px;
        margin-top: 10px;
    }

    .footer-button-container {
        margin-top: 10px;
    }

    .festival-info {
        margin-bottom: 10px;
    }

    .contact-info {
        margin-top: 10px;
        padding-top: 0;
    }
}