/* =================================================================
   MODERN LIGHT UI - LANDINGPAGE STYLE
   ================================================================= */

/* Spezifische Styles für die Landingpage */

/* Überschreibt Standard-Margin für den speziellen Look */
.landing-container {
    max-width: 1100px;
    width: 95%;
    margin: 40px auto;
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: transparent; 
    box-shadow: none;
}

main {
    border-radius: var(--radius-md);
    overflow: hidden;
    /* Schatten angepasst für helle Umgebung (weicher) */
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.1);
    background-color: var(--bg-card);
}

/* HERO SECTION - Premium Light Look */
#hero {
    /* Gradient Background: Sehr helles Blau zu Weiß */
    background: linear-gradient(to bottom, #eff6ff 0%, #ffffff 100%);
    padding: 100px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

/* Ein leuchtender Strich oben am Hero */
#hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--primary-gradient);
}

.hero-logo-center {
    height: 140px; 
    width: auto;
    margin: 30px auto;
    /* Schatten dunkler und weicher statt "Glow" */
    filter: drop-shadow(0 10px 15px rgba(79, 70, 229, 0.2));
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-logo-center:hover {
    transform: scale(1.1) rotate(2deg);
}

#hero h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    /* Verlauf von Dunkelgrau zu Primary Color */
    background: linear-gradient(to right, var(--text-main), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
    /* Kein schwerer Text-Shadow mehr nötig, wirkt sauberer */
}

#hero h2 {
    color: var(--primary-color);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 10px;
    font-weight: 600;
}

#hero p {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 50px;
    font-weight: 400; /* Etwas dicker als im Dark Mode für Lesbarkeit */
}

.hero-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons auf der Landingpage */
.btn {
    padding: 14px 28px;
    font-size: 1rem;
}

/* Secondary Button (Outline Style) */
.btn-outline {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-main);
    box-shadow: none;
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(79, 70, 229, 0.05); /* Zartes Indigo statt Weiß */
    transform: translateY(-2px);
}

.secondary-btn {
    /* Call to Action - Orange (angepasst an Helligkeit) */
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.25);
    color: white;
}

.secondary-btn:hover {
    box-shadow: 0 8px 25px rgba(234, 88, 12, 0.4);
}

/* CONTENT SECTIONS */
.content-section {
    padding: 60px 50px;
    background-color: var(--bg-card);
}

.light-bg {
     background-color: #f8fafc; /* Slate-50: Minimal dunkler als Weiß */
     border-top: 1px solid var(--border-color);
     border-bottom: 1px solid var(--border-color);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Info Boxen - Clean Look */
.info-box {
    background-color: #ffffff;
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
}

.info-box:hover {
    transform: translateY(-10px);
    background-color: #ffffff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08); /* Weicher Schatten */
    border-color: var(--primary-color);
}

.info-box h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* REGULATIONS LIST */
.regulations-list {
    margin-top: 30px;
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.regulations-list dt {
    background-color: #f1f5f9; /* Slate-100 */
    color: var(--text-main);
    font-weight: 600;
}
.regulations-list dd { color: var(--text-muted); }

/* FOOTER */
footer {
    background-color: #f1f5f9; /* Helles Grau statt Dunkelblau */
    color: var(--text-muted);
    padding: 40px;
    text-align: center;
    font-size: 0.9rem;
    border-top: 1px solid var(--border-color);
}

/* MOBILE */
@media (max-width: 768px) {
    .landing-container { width: 100%; margin: 0; border-radius: 0; }
    #hero h1 { font-size: 2.5rem; }
    .content-section { padding: 40px 20px; }
    .info-grid { grid-template-columns: 1fr; }
    .regulations-list dl { grid-template-columns: 1fr; }
    .regulations-list dt { border-right: none; border-bottom: none; color: var(--primary-color);}
    .regulations-list dd { border-bottom: 1px solid var(--border-color); padding-bottom: 15px; margin-bottom: 10px;}
}