@font-face {
    font-family: 'MarketPro';
    src: url('fonts/MarketPro.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'HelveticaNeueLTStd';
    src: url('fonts/HelveticaNeueLTStd-BdCn.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'HelveticaNeueLTStd';
    src: url('fonts/HelveticaNeueLTStd-MdCn.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'PompejiItalic';
    src: url('fonts/PompejiItalic Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

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

:root {
    --color-black: #000000;
    --color-white: #ffffff;
    --color-red: #e30613;
    --color-gold: #d4af37;
    --color-dark: #1a1a1a;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--color-black);
    background-color: var(--color-white);
}

/* Header */
.header {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 2rem 0;
}

.header-top {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.logo a {
    display: inline-block;
    text-decoration: none;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--color-red);
}

.header-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.event-title {
    font-family: 'PompejiItalic', sans-serif;
    font-size: 2.5rem;
    font-weight: normal;
    color: var(--color-red);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.event-location {
    font-family: 'PompejiItalic', sans-serif;
    font-size: 1.3rem;
    color: var(--color-white);
    opacity: 0.9;
}

/* Hero Slideshow */
.hero-slideshow {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    background-color: var(--color-black);
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--color-white);
    border: none;
    padding: 1rem 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    transition: background-color 0.3s;
    z-index: 10;
}

.slide-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.slide-btn.prev {
    left: 0;
}

.slide-btn.next {
    right: 0;
}

.slide-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.indicator.active,
.indicator:hover {
    background-color: var(--color-white);
}

/* Banner */
.banner {
    background-color: var(--color-red);
    color: var(--color-white);
    text-align: center;
    padding: 1rem 2rem;
}

.banner h2 {
    font-family: 'MarketPro', sans-serif;
    font-size: 2.5rem;
    font-weight: normal;
    font-style: normal;
    letter-spacing: 2px;
    margin: 0;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.intro {
    text-align: center;
    margin-bottom: 4rem;
}

.intro h2 {
    font-size: 2.5rem;
    color: var(--color-black);
    margin-bottom: 2rem;
    font-weight: 600;
}

.intro-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.video-container {
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.intro-video {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Tickets Section */
.tickets-section {
    background-color: var(--color-red);
    width: 100%;
    padding: 3rem 0;
    margin-bottom: 4rem;
}

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

.tickets-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: 2rem;
}

.ticket-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.ticket-card {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.ticket-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.ticket-card h3 {
    font-size: 1.5rem;
    color: var(--color-red);
    margin-bottom: 1rem;
}

.ticket-discount {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--color-red);
    text-align: center;
    margin-bottom: 0.8rem;
    padding: 0.3rem 0.5rem;
    background-color: rgba(227, 6, 19, 0.1);
    border-radius: 5px;
}

.oeticket-logo {
    max-width: 200px;
    height: auto;
    margin: 1rem 0;
    display: block;
}

.oeticket-link {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.3s;
}

.oeticket-link:hover {
    opacity: 0.8;
}

.ticket-card p {
    margin-bottom: 1rem;
    color: #000;
}

.ticket-info {
    font-size: 0.9rem;
    color: #000;
    text-align: left;
    line-height: 1.6;
}

.ticket-info p {
    margin-bottom: 1rem;
}

.ticket-location {
    margin-bottom: 1rem;
}

.ticket-hours,
.ticket-office,
.ticket-reservation {
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}

.office-link {
    color: var(--color-red);
    text-decoration: underline;
    transition: opacity 0.3s;
}

.office-link:hover {
    opacity: 0.8;
}

.reservation-box {
    background-color: var(--color-white);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.reservation-box h3 {
    font-size: 1.3rem;
    color: var(--color-red);
    margin-bottom: 1rem;
    text-align: center;
}

.reservation-box p {
    color: #000;
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: center;
    margin: 0 0 1rem 0;
}

.reservation-box p:last-child {
    margin-bottom: 0;
}

.email-link {
    color: var(--color-red);
    text-decoration: underline;
    transition: opacity 0.3s;
}

.email-link:hover {
    opacity: 0.8;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--color-red);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: #a01a2e;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--color-black);
    color: var(--color-white);
}

.btn-secondary:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.btn-download {
    background-color: var(--color-red);
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.btn-download:hover {
    background-color: #c10512;
    transform: translateY(-2px);
}

/* Info Section */
.info-section {
    text-align: center;
    margin-bottom: 0.5rem;
}

.info-section h2 {
    font-size: 2.5rem;
    color: var(--color-black);
    margin-bottom: 2rem;
}

.download-section {
    padding: 2rem 0;
}

.download-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #000;
}

.download-section .download-hint {
    font-size: 1.7rem !important;
    color: #666;
    margin-top: 4rem;
    margin-bottom: 0;
    font-style: italic;
}

/* Impressum Section */
.impressum-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.impressum-section h1 {
    font-size: 2.5rem;
    color: var(--color-red);
    margin-bottom: 2rem;
    text-align: center;
}

.impressum-content {
    text-align: left;
    line-height: 1.8;
}

.impressum-content h2 {
    font-size: 1.5rem;
    color: var(--color-black);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.impressum-content h2:first-of-type {
    margin-top: 0;
}

.impressum-content h3 {
    font-size: 1.2rem;
    color: var(--color-black);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.impressum-content p {
    margin-bottom: 1rem;
    color: #000;
    font-size: 1rem;
}

/* Contact Section */
.contact-section {
    background-color: var(--color-red);
    width: 100%;
    padding: 3rem 0;
    margin-bottom: 0;
}

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

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: 2rem;
}

.contact-info {
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.contact-info p {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: var(--color-white);
}

.contact-info .email-link {
    color: var(--color-white);
    text-decoration: underline;
}

.contact-info .email-link:hover {
    opacity: 0.8;
}

.contact-name {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.contact-address {
    margin-bottom: 1rem;
}

.contact-phone,
.contact-email,
.contact-website {
    margin-bottom: 0.8rem;
}

.contact-hours {
    margin-top: 1rem;
    margin-bottom: 0;
}

/* Footer */
.footer {
    background-color: var(--color-black);
    color: var(--color-white);
    text-align: center;
    padding: 2rem;
}

.footer-link {
    color: var(--color-white);
    text-decoration: underline;
    transition: opacity 0.3s;
}

.footer-link:hover {
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .event-title {
        font-size: 1.8rem;
    }

    .hero-slideshow {
        height: 50vh;
    }

    .banner h2 {
        font-size: 1.8rem;
    }

    .intro h2,
    .tickets-section h2,
    .info-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }

    .ticket-options {
        grid-template-columns: 1fr;
    }

    .slide-btn {
        padding: 0.5rem 1rem;
        font-size: 1.5rem;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--color-red);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-align: center;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top::before {
    content: '∧';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
    font-size: 1.5rem;
    transform: translateY(-3px);
}

.back-to-top:hover {
    background-color: #c10512;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.back-to-top.show {
    display: flex;
}

