/* Grundlegende Stile */
:root {
    --primary-color: #d17a02;
    --secondary-color: #f7a837;
    --dark-bg: #221a11;
    --text-color: #f0f0f0;
    --light-text-color: #cccccc;
    --card-bg: #3b2a1e;
    --border-color: #5c412d;
    --transition-speed: 0.3s;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { color: var(--primary-color); text-decoration: none; transition: color var(--transition-speed) ease; }
a:hover { color: var(--secondary-color); }
h1, h2, h3 { color: var(--text-color); margin-bottom: 15px; font-weight: 700; }

h2.section-title {
    text-align: center;
    font-size: 3em;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 10px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
}
h2.section-title.fade-in-up-visible { animation: fadeInUp 1s ease-out forwards; }
h2.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed) ease;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 12px 25px;
    border-radius: 8px;
    transition: background-color var(--transition-speed) ease, transform var(--transition-speed) ease;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
}
.btn:hover { 
    background-color: var(--secondary-color); 
    transform: scale(1.05); 
    color: var(--dark-bg);
}

/* Header */
header {
    background-color: var(--dark-bg);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: padding var(--transition-speed) ease, background-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}
header.scrolled { padding: 10px 0; background-color: rgba(34, 26, 17, 0.95); box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); }
header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; }
.logo img { height: 40px; margin-right: 10px; transition: height var(--transition-speed) ease; }
header.scrolled .logo img { height: 30px; }
.logo h1 { font-size: 2.2em; margin: 0; color: var(--primary-color); letter-spacing: 2px; transition: font-size var(--transition-speed) ease; }
header.scrolled .logo h1 { font-size: 1.8em; }
.logo p { font-size: 0.8em; margin-left: 10px; color: var(--light-text-color); text-transform: uppercase; letter-spacing: 1px; transition: opacity var(--transition-speed) ease; }
header.scrolled .logo p { opacity: 0.8; }
nav ul { list-style: none; display: flex; }
nav ul li { margin-left: 30px; }
nav ul li a {
    color: var(--text-color);
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 5px;
    transition: color var(--transition-speed) ease, transform var(--transition-speed) ease;
}
nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed) ease;
}
nav ul li a:hover::after { width: 100%; }
nav ul li a:hover { transform: translateY(-2px); color: var(--secondary-color); }

/* Hero Section */
#hero {
    background: url('/images/Hero_Background_2.jpg') no-repeat center center/cover;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-color);
    position: relative;
    overflow: hidden;
}
#hero::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5); z-index: 0; }
.hero-content { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; width: 100%; padding: 0 20px; }
.hero-content h2 { font-size: 4em; margin-bottom: 30px; line-height: 1.2; text-shadow: 2px 2px 4px rgba(0,0,0,0.7); opacity: 0; transform: translateY(20px); }
.hero-content h2.animated, .hero-content .btn.animated, .hero-content .hero-info-box.animated { animation: fadeInUp 0.8s ease-out forwards; }
.hero-content .btn { opacity: 0; transform: translateY(20px); animation-delay: 0.3s; }

/* Neue Info Box im Hero (für Samstags Info) */
.hero-info-box {
    background-color: rgba(34, 26, 17, 0.85);
    border: 2px solid var(--primary-color);
    padding: 15px 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translateY(20px);
    max-width: 800px;
    backdrop-filter: blur(5px);
}
.hero-info-box p {
    margin: 0;
    font-size: 1.25em;
    color: var(--text-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero-info-box span.highlight {
    color: var(--primary-color);
}

/* Menu Section */
.menu-section { padding: 80px 0; background-color: var(--dark-bg); }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.menu-item {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    opacity: 0;
    transform: translateY(20px);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    will-change: transform, opacity;
    backface-visibility: hidden;
}
.menu-item.fade-in-up-visible { animation: fadeInUp 0.7s ease-out forwards; }
.menu-grid .menu-item:nth-child(1) { animation-delay: 0.1s; }
.menu-grid .menu-item:nth-child(2) { animation-delay: 0.2s; }
.menu-grid .menu-item:nth-child(3) { animation-delay: 0.3s; }
.menu-grid .menu-item:nth-child(4) { animation-delay: 0.4s; }
.menu-grid .menu-item:nth-child(5) { animation-delay: 0.5s; }
.menu-grid .menu-item:nth-child(6) { animation-delay: 0.6s; }
.menu-item:hover { transform: translateY(-8px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5); }
.menu-item .icon { width: 80px; height: 80px; margin: 0 auto 20px auto; background-color: var(--primary-color); border-radius: 50%; display: flex; justify-content: center; align-items: center; transition: transform var(--transition-speed) ease, background-color var(--transition-speed) ease; }
.menu-item .icon img { width: 45px; height: 45px; transition: transform var(--transition-speed) ease; }
.menu-item:hover .icon { transform: translateY(-5px) scale(1.05); background-color: var(--secondary-color); }
.menu-item:hover .icon img { transform: scale(1.1); }
.menu-item h3 { font-size: 1.8em; color: var(--secondary-color); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
.menu-item p { color: var(--light-text-color); font-size: 1.1em; }
.menu-item p strong { color: #fff; font-weight: 700; }

.menu-button-wrapper { 
    text-align: center;
    margin-top: 60px; 
}

/* Services & About Section */
.services-section, .about-section { padding: 80px 0; background-color: var(--dark-bg); border-top: 1px solid var(--border-color); text-align: center; }
.service-content { max-width: 800px; margin: 0 auto 40px auto; opacity: 0; transform: translateY(20px); text-align: center; }
.service-content.fade-in-up-visible { opacity: 1; transform: none; animation: fadeInUp 0.8s ease-out forwards; }
.service-content p, .about-section p { font-size: 1.1em; color: var(--light-text-color); margin-bottom: 20px; line-height: 1.8; }
.about-section p { max-width: 800px; margin: 0 auto 30px auto; }

/* Contact Section on Homepage */
.contact-section { padding: 80px 0; background-color: var(--dark-bg); border-top: 1px solid var(--border-color); text-align: center; }
.contact-info { max-width: 600px; margin: 0 auto; }
.contact-info.fade-in-up-visible { animation: fadeInUp 0.8s ease-out forwards; }
.contact-info p { font-size: 1.1em; margin-bottom: 15px; color: var(--light-text-color); max-width: 500px; margin-left: auto; margin-right: auto; }
.contact-actions { margin-top: 30px; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.contact-email-link { font-weight: bold; }

/* Social Links */
.social-links { margin-top: 20px; margin-bottom: 30px; display: flex; justify-content: center; gap: 25px; }
.social-links a { display: inline-block; transition: transform var(--transition-speed) ease; }
.social-links a:hover { animation: bounce 0.6s ease-in-out; }
.social-icon { width: 40px; height: auto; vertical-align: middle; }

/* Footer */
footer { background-color: var(--card-bg); color: var(--light-text-color); text-align: center; padding: 25px 0; border-top: 1px solid var(--border-color); font-size: 0.9em; }

/* Hamburger Menu */
.hamburger-menu { display: none; cursor: pointer; background: none; border: none; padding: 0; flex-direction: column; justify-content: space-around; width: 30px; height: 25px; transition: all 0.3s ease; }
.hamburger-menu .bar { width: 100%; height: 5px; border-radius: 10px; transition: all 0.3s ease; }
.hamburger-menu .bar:nth-child(1) { background: #f4c542; }
.hamburger-menu .bar:nth-child(2) { background: #7b3f00; }
.hamburger-menu .bar:nth-child(3) { background: #f4c542; }

/* Keyframe Animations */
@keyframes fadeInUp { from { opacity: 0; transform: translate3d(0, 20px, 0); } to { opacity: 1; transform: translate3d(0, 0, 0); } }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-10px); } 60% { transform: translateY(-5px); } }

/* Responsivität */
@media (max-width: 900px) { .hero-content h2 { font-size: 3em; } .menu-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); } .logo p { display: none; } }
@media (max-width: 768px) {
    header .container { flex-wrap: wrap; justify-content: space-between; padding-right: 70px; }
    .logo { margin-bottom: 0; }
    nav { display: none; width: 100%; background-color: var(--card-bg); border-top: 1px solid var(--border-color); padding: 15px 0; position: absolute; top: 70px; left: 0; text-align: center; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); }
    nav.active { display: block; }
    nav ul { flex-direction: column; }
    nav ul li { margin: 10px 0; }
    .hamburger-menu { display: flex; position: absolute; right: 20px; top: 25px; }
    .hero-content h2 { font-size: 2.5em; }
    h2.section-title, .contact-page-section .section-title { font-size: 2.5em; margin-bottom: 40px; }
    .menu-item h3 { font-size: 1.5em; }
    .menu-item p { font-size: 1em; }
    .hero-info-box p { font-size: 1em; }
}
@media (max-width: 480px) { .logo h1 { font-size: 1.8em; } .hero-content h2 { font-size: 1.8em; } h2.section-title, .contact-page-section .section-title { font-size: 2em; margin-bottom: 30px; } .menu-item { padding: 20px; } }

/* Sprachumschalter */
.lang-switcher { display: flex; gap: 8px; margin-left: 20px; align-items: center; }
.lang-btn { background: var(--card-bg); color: var(--text-color); border: 1px solid var(--border-color); border-radius: 4px; padding: 4px 12px; cursor: pointer; font-size: 1em; transition: background var(--transition-speed), color var(--transition-speed); }
.lang-btn:hover, .lang-btn.active { background: var(--primary-color); color: #fff; }

/* Sticky Footer Layout */
html, body { height: 100%; margin: 0; display: flex; flex-direction: column; }
main { flex: 1; }
footer { margin-top: 0; }

/* ================================== */
/* Legal & Static Page Styles         */
/* ================================== */
.legal-page-header .container { display: flex; justify-content: space-between; align-items: center; }
.legal-page-header nav a { font-weight: bold; text-transform: uppercase; color: var(--text-color); padding: 8px 15px; border: 1px solid var(--border-color); border-radius: 5px; transition: background-color var(--transition-speed) ease, border-color var(--transition-speed) ease; }
.legal-page-header nav a:hover { background-color: var(--card-bg); border-color: var(--secondary-color); }
.legal-content { padding: 60px 20px; color: var(--light-text-color); }
.legal-content .container { max-width: 850px; background-color: var(--card-bg); padding: 30px 40px; border-radius: 12px; border: 1px solid var(--border-color); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); }
.legal-content .section-title { text-align: left; font-size: 2.8em; margin-bottom: 40px; padding-bottom: 0; }
.legal-content .section-title::after { display: none; }
.legal-content h2 { color: var(--secondary-color); margin-top: 40px; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid var(--border-color); font-size: 1.6em; }
.legal-content h3 { color: #eee; margin-top: 30px; margin-bottom: 15px; font-size: 1.3em; font-weight: 600; }
.legal-content p, .legal-content li { line-height: 1.8; margin-bottom: 15px; color: #ccc; }
.legal-content a { color: var(--secondary-color); text-decoration: underline; transition: color 0.3s ease; }
.legal-content a:hover { color: var(--primary-color); }
.contact-details { background-color: rgba(0,0,0,0.2); border-left: 4px solid var(--primary-color); padding: 20px; margin: 20px 0; border-radius: 4px; }
.contact-details p { margin: 0; line-height: 1.7; }
@media (max-width: 768px) { .legal-content { padding: 40px 10px; } .legal-content .container { padding: 20px; } .legal-content .section-title { font-size: 2.2em; } }

/* ======================================= */
/* Styles for new Contact Page             */
/* ======================================= */
.contact-page-section { padding: 80px 20px; }
.contact-page-section .section-title { margin-bottom: 20px; padding-bottom: 0; text-align: center; }
.contact-page-section .section-title::after { display: none; }
.contact-page-section .contact-intro { text-align: center; max-width: 600px; margin: 0 auto 40px auto; color: var(--light-text-color); font-size: 1.1em; }
.contact-form-container { max-width: 700px; margin: 0 auto; padding: 40px 50px; background-color: var(--card-bg); border: 1px solid var(--border-color); border-radius: 12px; }
.form-group { margin-bottom: 20px; }
.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    background-color: #2a2017;
    border: 1px solid #4a3629;
    border-radius: 8px;
    color: var(--text-color);
    font-family: 'Barlow', sans-serif;
    font-size: 1em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-group textarea { resize: vertical; min-height: 150px; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--light-text-color); opacity: 0.8; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(209, 122, 2, 0.5); }
.form-submit-wrapper { text-align: center; margin-top: 30px; }
@media (max-width: 768px) { .contact-form-container { padding: 30px 20px; } .form-group input, .form-group textarea { font-size: 16px; } }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

/* Modal / Pop-up Stile */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.modal-overlay.visible { opacity: 1; pointer-events: auto; }
.modal-content {
    background-color: var(--card-bg);
    padding: 30px 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}
.modal-overlay.visible .modal-content { transform: scale(1); }
#modal-message { font-size: 1.2em; color: var(--text-color); margin-bottom: 25px; line-height: 1.5; }
#modal-close-btn { display: inline-block; }


/* ======================================= */
/* Homepage Locations Section (POSTER DESIGN) */
/* ======================================= */
:root {
    --poster-color: #ebd6b7; /* Beigeton aus dem Bild */
}

.home-locations-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.poster-wrapper {
    max-width: 650px;
    margin: 0 auto;
    background-color: #0b0b0b; /* Sehr tiefer Schwarzton für das Poster */
    padding: 50px 40px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

.poster-header {
    text-align: center;
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
}

.poster-header.fade-in-up-visible {
    animation: fadeInUp 0.8s ease-out forwards;
}

.poster-header svg {
    margin-bottom: -5px;
}

.poster-header h2 {
    font-size: 5em;
    margin: 0;
    line-height: 1;
    letter-spacing: 2px;
    color: var(--poster-color);
    text-transform: uppercase;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
}

.poster-badge {
    background-color: var(--poster-color);
    color: #0b0b0b;
    font-weight: 800;
    font-size: 1.25em;
    text-transform: uppercase;
    padding: 4px 15px;
    display: inline-block;
    transform: rotate(-2deg);
    margin-top: 5px;
    letter-spacing: 1px;
}

.poster-list {
    display: flex;
    flex-direction: column;
}

.poster-row {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(235, 214, 183, 0.3); /* Leichte beigefarbene Linie */
    padding: 20px 0;
    opacity: 0;
    transform: translateY(20px);
}

.poster-row.fade-in-up-visible {
    animation: fadeInUp 0.6s ease-out forwards;
}

.poster-row:last-child {
    border-bottom: none;
}

.poster-day-col {
    flex: 0 0 160px;
    padding-right: 20px;
}

.poster-day {
    font-size: 1.6em;
    font-weight: 700;
    color: var(--poster-color);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 2px;
}

.poster-time {
    font-size: 1.1em;
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
}

.poster-loc-col {
    flex: 1;
}

.poster-city {
    font-size: 3.2em;
    font-weight: 700;
    color: var(--poster-color);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 2px;
    letter-spacing: 1px;
}

.poster-address {
    font-size: 1.1em;
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
}

.poster-address a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.poster-address a:hover {
    color: var(--poster-color);
    text-decoration: underline;
}

.poster-footer {
    text-align: center;
    margin-top: 25px;
    opacity: 0;
    transform: translateY(20px);
}

.poster-footer.fade-in-up-visible {
    animation: fadeInUp 0.6s ease-out forwards;
}

.poster-footer span {
    background-color: var(--poster-color);
    color: #0b0b0b;
    font-weight: 800;
    font-size: 1.1em;
    padding: 6px 15px;
    text-transform: uppercase;
    display: inline-block;
    letter-spacing: 0.5px;
}

/* Responsives Layout für das Poster */
@media (max-width: 600px) {
    .poster-wrapper {
        padding: 30px 20px;
    }
    .poster-header h2 { font-size: 3.8em; }
    .poster-badge { font-size: 1em; }
    .poster-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 0;
    }
    .poster-day-col {
        flex: auto;
        margin-bottom: 5px;
    }
    .poster-day { font-size: 1.4em; }
    .poster-city { font-size: 2.5em; }
    .poster-address { font-size: 1em; }
    .poster-footer span { font-size: 0.9em; }
}

.poster-logo-img {
    width: 100%;
    max-width: 250px; /* Beschränkt die maximale Breite. Passe diesen Wert an (z.B. 300px oder 200px), bis es perfekt aussieht */
    height: auto;
    display: block;
    margin: 0 auto 20px auto; /* Zentriert das Bild und gibt nach unten etwas Abstand */
}


/* ======================================= */
/* Styles für die Event Seite (Hardcoded)  */
/* ======================================= */
.events-list-section {
    padding: 60px 0;
    background-color: var(--dark-bg);
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.event-box {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    opacity: 1; 
    transform: translateY(20px);
}

.event-box.animate-on-scroll.fade-in-up-visible {
    animation: fadeInUp 0.6s ease-out forwards;
}

.event-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    border-color: var(--primary-color);
}

.event-header {
    background-color: rgba(0,0,0,0.2); 
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.event-header h3 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.4em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-date {
    background-color: var(--primary-color);
    color: #fff; 
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.9em;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.event-body {
    padding: 25px;
    color: #ddd;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.event-info-row {
    font-size: 1.1em;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.location-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.location-link span {
    font-size: 0.8em;
    color: var(--secondary-color);
    font-weight: normal;
}

.location-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.event-description p {
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    color: var(--light-text-color);
    line-height: 1.6;
    font-weight: normal;
    font-size: 0.95em;
}

.page-header-section {
    position: relative;
    padding: 100px 0;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.header-overlay {
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: rgba(0,0,0,0.6);
}
.page-header-section .container { position: relative; z-index: 1; }
.page-header-section h2 { font-size: 3.5em; margin-bottom: 10px; text-transform: uppercase; color: #fff; }
.page-header-section p { font-size: 1.5em; color: var(--secondary-color); font-weight: bold; }

.cta-section {
    text-align: center;
    margin-bottom: 0;
    padding: 60px 20px;
    background-color: #2a2017;
    border-top: 1px solid var(--border-color);
}
.cta-section h3 { font-size: 2em; color: var(--primary-color); }
.cta-section p { margin-bottom: 25px; color: var(--light-text-color); }

@media (max-width: 600px) {
    .event-header { flex-direction: column; align-items: flex-start; }
    .page-header-section h2 { font-size: 2.5em; }
}

.hidden-event {
    display: none !important;
}

.load-more-container {
    width: 100%;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

.info-modal-content {
    position: relative;
    max-width: 500px;
    padding: 40px 30px 30px 30px; 
    border: 2px solid var(--primary-color); 
}

.modal-close-icon {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2em;
    color: var(--light-text-color);
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.modal-close-icon:hover {
    color: var(--primary-color);
}

.info-text-wrapper h3 {
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 1.5em;
    margin-bottom: 20px;
}

.info-text-wrapper p {
    color: var(--text-color);
    font-size: 1.1em;
    margin-bottom: 10px;
    text-transform: uppercase; 
}

.instagram-btn {
    margin-top: 20px;
    background-color: #E1306C; 
    color: white;
}
.instagram-btn:hover {
    background-color: #C13584;
    color: white;
}