/* --- GRUNDEINSTELLUNGEN --- */
:root {
    --brand-green: #8db724; 
    --dark-bg: #121212;
    --white: #ffffff;
    --grey: #f4f4f4;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #333; scroll-behavior: smooth; background: var(--white); }

/* --- NAVIGATION --- */
nav { 
    background: var(--white); 
    padding: 10px 5%; 
    position: sticky; 
    top: 0; 
    z-index: 2000; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.nav-logo-img { height: 50px; position: relative; z-index: 2001; width: auto; }
.nav-links { display: flex; align-items: center; list-style: none; }
.nav-links a { text-decoration: none; color: #333; margin-left: 25px; font-weight: bold; transition: var(--transition); font-size: 0.95rem; }
.nav-links a:hover { color: var(--brand-green); }

/* Burger Menu Icon */
.burger { display: none; cursor: pointer; z-index: 2001; padding: 10px; }
.burger div { width: 25px; height: 3px; background-color: #333; margin: 5px; transition: all 0.3s ease; border-radius: 3px; }

/* --- HERO SECTION --- */
header { 
    /* Hier wurde das Bild auf die lokale Datei geändert */
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('event-party-3005668_1920.jpg'); 
    height: 60vh; 
    background-size: cover; 
    background-position: center; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    color: white; 
    text-align: center; 
    padding: 20px;
}
.hero-logo { max-width: 400px; width: 85%; filter: drop-shadow(0 0 10px rgba(0,0,0,0.3)); }

/* --- SEKTIONEN ALLGEMEIN --- */
.section { padding: 80px 5%; text-align: center; }
.section h2 { font-size: 2.2rem; margin-bottom: 40px; text-transform: uppercase; }
.section h2 span { color: var(--brand-green); }
.ustg-notice { font-size: 0.85rem; color: #777; margin-bottom: 30px; font-style: italic; display: block; }

/* --- TECHNIK PRÄSENTATION --- */
.tech-container { display: flex; align-items: center; justify-content: center; gap: 50px; max-width: 1200px; margin: 0 auto; text-align: left; flex-wrap: wrap; }
.tech-text { flex: 1; min-width: 300px; }
.tech-text h3 { color: var(--brand-green); margin-bottom: 15px; font-size: 1.8rem; text-transform: uppercase; }
.tech-text ul { list-style: none; margin-bottom: 25px; }
.tech-text ul li { margin-bottom: 15px; padding-left: 25px; position: relative; }
.tech-text ul li::before { content: "★"; color: var(--brand-green); position: absolute; left: 0; font-size: 1.2rem; }
.tech-image { flex: 1; min-width: 300px; text-align: center; }
.tech-image img { max-width: 100%; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border: 1px solid #eee; }

/* --- BANNER --- */
.info-banner { background: #fff; border-left: 5px solid var(--brand-green); padding: 20px; max-width: 1000px; margin: 0 auto 40px; text-align: left; border-radius: 0 10px 10px 0; font-size: 0.95rem; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.discount-banner { background: #333; color: white; padding: 30px; border-radius: 20px; max-width: 1000px; margin: 40px auto; border: 2px dashed var(--brand-green); }
.discount-banner h3 { color: var(--brand-green); margin-bottom: 10px; }

/* --- PRICING GRID & CARDS --- */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-bottom: 40px; }

.price-card { 
    background: var(--white); 
    padding: 30px 15px; 
    border-radius: 15px; 
    transition: var(--transition); 
    border-bottom: 5px solid transparent; 
    position: relative; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.08); 
}

.price-card:hover { transform: translateY(-5px); border-color: var(--brand-green); box-shadow: 0 15px 35px rgba(0,0,0,0.15); }
.price-tag { font-size: 1.8rem; font-weight: 800; color: var(--brand-green); margin-bottom: 5px; }
.price-period { font-size: 0.8rem; color: #888; margin-bottom: 20px; font-weight: bold; text-transform: uppercase; }

.features-list { list-style: none; text-align: left; margin: 20px 0; min-height: 120px; font-size: 0.9rem; }
.features-list li { margin-bottom: 8px; padding-left: 20px; position: relative; }
.features-list li::before { content: "✓"; color: var(--brand-green); position: absolute; left: 0; font-weight: bold; }
.feature-highlight { color: var(--brand-green); font-weight: bold; }

/* --- EXTRAS TABELLE --- */
.extras-container { max-width: 900px; margin: 0 auto; }
.extras-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.extras-table th { background: var(--brand-green); color: white; padding: 15px; text-align: left; }
.extras-table td { padding: 15px; border-bottom: 1px solid #eee; text-align: left; }

/* --- BUTTONS --- */
.btn { background: var(--brand-green); color: white !important; padding: 12px 30px; border: none; border-radius: 50px; text-decoration: none; font-weight: bold; text-transform: uppercase; display: inline-block; transition: var(--transition); border: 2px solid var(--brand-green); font-size: 0.9rem; }
.btn:hover { background: #769b1d; border-color: #769b1d; transform: scale(1.03); }

/* --- FOOTER --- */
footer { background: var(--dark-bg); color: white; padding: 50px 5% 20px; text-align: center; }
.footer-logo { max-width: 200px; height: auto; margin-bottom: 20px; display: inline-block; }
.footer-contact { margin-bottom: 30px; }
.footer-contact a { color: var(--brand-green); text-decoration: none; font-weight: bold; }
.impressum-section { margin-top: 40px; padding-top: 20px; border-top: 1px solid #333; text-align: left; max-width: 800px; margin-left: auto; margin-right: auto; font-size: 0.8rem; color: #888; line-height: 1.6; }

/* --- MOBILE OPTIMIERUNG --- */
@media (max-width: 768px) {
    .burger { display: block; }
    
    .nav-links { 
        position: fixed; right: 0; top: 0; height: 100vh; background: var(--white); 
        flex-direction: column; align-items: center; justify-content: center; 
        width: 75%; transform: translateX(100%); transition: 0.4s ease-in; 
        box-shadow: -10px 0 20px rgba(0,0,0,0.1); 
    }
    .nav-active { transform: translateX(0%); }

    /* Burger Animation */
    .toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
    .toggle .line2 { opacity: 0; }
    .toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); }

    /* Technik Sektion Mobil */
    .tech-container { flex-direction: column-reverse; text-align: center; }
    .tech-text ul li { text-align: left; }

    /* Responsive Tabelle */
    .extras-table thead { display: none; }
    .extras-table, .extras-table tbody, .extras-table tr, .extras-table td { display: block; width: 100%; }
    .extras-table tr { margin-bottom: 15px; border: 1px solid #ddd; border-radius: 10px; }
    .extras-table td { text-align: right; padding-left: 50%; position: relative; border-bottom: 1px solid #eee; }
    .extras-table td::before { content: attr(data-label); position: absolute; left: 15px; width: 45%; font-weight: bold; text-align: left; color: var(--brand-green); }
}
	
/* --- SCROLL TO TOP BUTTON --- */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--brand-green);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    z-index: 1000;
    transition: var(--transition);
    opacity: 0; /* Unsichtbar am Anfang */
    pointer-events: none; /* Nicht klickbar, wenn unsichtbar */
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: 2px solid white;
}

.scroll-to-top.show {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: #769b1d;
    transform: translateY(-5px);
    color: white;
}