:root {
    --bg-color: #0b0b0f;
    --primary-start: #f31313; /* Dein Rot */
    --primary-end: #ff914d;   /* Dein Orange */
    --primary-gradient: linear-gradient(135deg, var(--primary-start), var(--primary-end));
    --accent-glow: rgba(243, 19, 19, 0.15); /* Sanfter Glow-Effekt in Rot-Orange */
    --text-light: #ffffff;
    --text-muted: #888888;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }
body { 
    background-color: var(--bg-color); 
    color: var(--text-light); 
    font-family: 'Inter', sans-serif; 
    line-height: 1.6;
    overflow-x: hidden;
}

.grid-bg {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), 
                      linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 50px 50px; z-index: -2;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }

/* HEADER */
header {
    padding: 15px 0; position: fixed; top: 0; width: 100%;
    z-index: 1000; background: rgba(11, 11, 15, 0.9);
    backdrop-filter: blur(10px); border-bottom: 1px solid var(--glass-border);
}
.nav-content { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.2rem; font-weight: 900; letter-spacing: 1px; text-decoration: none; color: white; }

.main-nav { display: flex; gap: 25px; }
.main-nav a { 
    text-decoration: none; color: var(--text-muted); 
    font-size: 0.9rem; font-weight: 600; transition: 0.3s; 
}
.main-nav a:hover { color: var(--primary-end); }

.pill {
    padding: 8px 18px; border-radius: 50px; border: 1px solid var(--glass-border);
    text-decoration: none; color: var(--text-light); font-size: 0.8rem;
    background: rgba(255,255,255,0.05); transition: 0.3s;
}
.whatsapp-pill { border-color: #25D366; color: #25D366; }
.whatsapp-pill:hover { background: rgba(37, 211, 102, 0.1); }

/* HERO */

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap; /* Damit sie auf dem Handy untereinander springen */
}

.hero-btn {
    width: auto !important; /* Verhindert, dass sie die volle Breite einnehmen */
    min-width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

/* Kleiner Hover-Effekt für den Outline-Button im Hero */
.btn-outline.hero-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-end);
}
.hero { padding-top: 180px; padding-bottom: 80px; text-align: center; }
.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem); font-weight: 900; line-height: 1.1;
    background: linear-gradient(to bottom, #fff 60%, var(--primary-end));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-subtext { color: var(--text-muted); max-width: 600px; margin: 20px auto 40px; }

/* ÜBER UNS (JETZT IN DEINEM ORANGE/ROT) */
.about-section { padding: 80px 0; background: radial-gradient(circle at center, rgba(243, 19, 19, 0.08) 0%, transparent 70%); }
.section-title { font-size: 2.5rem; margin-bottom: 40px; }
.about-logo-wrapper { margin-bottom: 30px; display: flex; justify-content: center; }
.about-logo-circle {
    width: 160px; height: 160px; border-radius: 50%;
    border: 2px solid var(--primary-start);
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.5); position: relative;
    box-shadow: 0 0 40px rgba(243, 19, 19, 0.2);
}
.about-logo-circle i { font-size: 3.5rem; color: var(--primary-end); }

.slogan-text { 
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800; font-size: 1.4rem; 
    margin-bottom: 30px; letter-spacing: 0.5px;
}
.about-description { max-width: 850px; margin: 0 auto 60px; color: #ccc; font-size: 1.05rem; }
.highlight-text { color:var(--primary-end); font-weight: 900; }

.about-features-grid { 
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
    gap: 20px; margin-top: 50px; 
}
.feature-card { 
    background: var(--glass-bg); padding: 30px; border-radius: 20px; 
    border: 1px solid var(--glass-border); transition: 0.3s;
}
.feature-card:hover { border-color: var(--primary-end); transform: translateY(-3px); }
.feature-card .icon-box { 
    width: 50px; height: 50px; background: var(--primary-gradient); 
    border-radius: 12px; display: flex; align-items: center; 
    justify-content: center; margin: 0 auto 15px; 
}
.feature-card .icon-box i { color: white; font-size: 1.2rem; }
.feature-card h4 { margin-bottom: 10px; font-weight: 800; }
.feature-card p { color: var(--text-muted); font-size: 0.85rem; }

/* GALERIE */
.gallery-section { background: rgba(255,255,255,0.01); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.gallery-item { 
    position: relative; border-radius: 20px; overflow: hidden; 
    border: 1px solid var(--glass-border); aspect-ratio: 16/10; 
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; opacity: 0.7; }
.gallery-item:hover img { transform: scale(1.05); opacity: 1; }
.gallery-label { 
    position: absolute; bottom: 15px; left: 15px; background: rgba(0,0,0,0.9); 
    padding: 6px 12px; border-radius: 8px; font-size: 0.7rem; 
    font-weight: bold; border: 1px solid var(--primary-start); 
}

/* PAKETE */
.section-padding { padding: 100px 0; }
.gradient-text { background: var(--primary-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.package-category-title { text-align: center; margin-bottom: 40px; font-size: 1.6rem; color: var(--primary-end); text-transform: uppercase; }

.packages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 25px; }
.package-card { 
    background: var(--glass-bg); border: 1px solid var(--glass-border); 
    padding: 35px; border-radius: 28px; transition: 0.3s;
}
.package-card:hover { border-color: var(--primary-start); transform: translateY(-5px); }
.package-card.highlight { border: 2px solid var(--primary-start); background: rgba(243, 19, 19, 0.05); }

.price-tag { font-size: 2.8rem; font-weight: 900; margin: 15px 0; }
.price-tag span { font-size: 1rem; color: var(--text-muted); }

.pkg-list { list-style: none; margin-bottom: 25px; }
.pkg-list li { color: #bbb; display: flex; gap: 12px; margin-bottom: 10px; font-size: 0.95rem; }
.pkg-list li i { color: var(--primary-start); margin-top: 4px; }

.extras-section { margin-bottom: 25px; padding: 15px; background: rgba(255,255,255,0.03); border-radius: 15px; }
.extras-label { font-size: 0.8rem; font-weight: 800; margin-bottom: 10px; color: var(--primary-end); }
.extra-item { display: block; font-size: 0.9rem; margin-bottom: 8px; cursor: pointer; color: #ccc; }
.extra-item input { margin-right: 10px; accent-color: var(--primary-start); }

.btn-main {
    padding: 16px; border-radius: 15px; font-weight: 800; 
    background: var(--primary-gradient); color: white; border: none; 
    cursor: pointer; width: 100%; transition: 0.3s;
}
.btn-main:hover { opacity: 0.9; box-shadow: 0 10px 20px rgba(243, 19, 19, 0.2); }
.btn-outline { background: transparent; border: 1px solid var(--glass-border); color: white; }
.btn-outline:hover { border-color: var(--primary-end); }

/* TABLE */
.table-container { background: var(--glass-bg); border-radius: 24px; padding: 30px; overflow-x: auto; border: 1px solid var(--glass-border); }
table { width: 100%; border-collapse: collapse; min-width: 600px; }
th, td { padding: 20px; text-align: left; border-bottom: 1px solid var(--glass-border); }
th { color: var(--primary-end); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; }
td { color: #ccc; }

/* FOOTER */
footer { padding: 60px 0; text-align: center; border-top: 1px solid var(--glass-border); margin-top: 50px; background: rgba(0,0,0,0.2); }
.footer-links { margin: 20px 0; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: 0.3s; }
.footer-links a:hover { color: var(--primary-end); }

/* MOBILE STYLES */
@media (max-width: 768px) {
    .main-nav { display: none; }
    .hero h1 { font-size: 2.8rem; }
    .about-features-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 2rem; }
}