/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ===================================
   CSS VARIABLEN - Modernes Farbschema (Zentrale Stelle)
   =================================== */
:root {
    /* Hauptfarben */
    --primary-blue: #007BFF;          /* Blau (H2-Akzent, Footer-Link-Hover) */
    --dark-blue: #1E3A5F;             /* Dunkelblau (Navbar-Gradient-Ende, H3-Farbe, Strong-Text) */
    --very-dark: #1a1a2e;             /* Fast Schwarz (H2-Farbe, Footer-Gradient-Start) */
    --dark-blue-gradient-start: #004a99; /* Startfarbe Navbar-Gradient */
    
    /* Akzentfarbe */
    --accent-orange: #ff6b35;         /* Orange (H2-Unterstrich, Link-Akzente, Button-Gradient-Start) */
    --accent-orange-hover: #ff4d1a;   /* Dunkleres Orange (Button-Gradient-Ende) */
    
    /* Neutrale Farben */
    --text-dark: #2c3e50;             /* Dunkelgrau für Paragraphen/Listen */
    --background: #F8F9FA;            /* Heller Hintergrund */
    --white: #ffffff;
    
    /* Schatten & Übergänge */
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-button: 0 4px 15px rgba(255, 107, 53, 0.3);
    --transition-fast: 0.3s ease;
}

/* ===================================
   GRUNDLAYOUT 
   =================================== */
html, body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    font-family: 'Inter', sans-serif;
    /* VARIABLE */
    background-color: var(--background);
    /* VARIABLE */
    color: var(--text-dark);
    overflow-x: hidden;
    height: 100%;
}

/* ===================================
   NAVIGATION - MODERNISIERT ✨
   =================================== */
.navbar {
    display: flex;
    justify-content: center;
    /* VARIABLE */
    background: linear-gradient(135deg, var(--dark-blue-gradient-start) 0%, var(--dark-blue) 100%);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 999;
    /* VARIABLE */
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
}

/* Subtiler Shimmer-Effekt */
.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* NEU: Hintergrundfarbe mit Variable, falls nötig */
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    animation: shimmer 3s infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

/* Links in der Navigation */
.nav-links {
    display: flex;
    gap: 0;
    position: relative;
    z-index: 1;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    padding: 18px 28px;
    transition: all var(--transition-fast);
    position: relative;
    letter-spacing: 0.3px;
}

/* Underline-Animation */
.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    /* VARIABLE */
    background: var(--accent-orange);
    transition: all var(--transition-fast);
    transform: translateX(-50%);
}

.nav-links a:hover {
    /* VARIABLE */
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.nav-links a:hover::before,
.nav-links a.active::before {
    width: 70%;
}

.nav-links a.active {
    /* VARIABLE */
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
}

/* Hamburger-Menü */
.hamburger {
    display: none;
    font-size: 28px;
    /* VARIABLE */
    color: var(--white);
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 0;
}

.nav-links.active {
    display: flex;
}

/* ===================================
   HAUPTCONTAINER 
   =================================== */
.container {
    width: 85%;
    max-width: 1100px;
    margin: 30px auto;
    /* VARIABLE */
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    /* VARIABLE */
    box-shadow: var(--shadow-sm);
    flex: 1;
}

/* ===================================
   TYPOGRAFIE - OPTIMIERT ✨
   =================================== */

/* H2 - Hauptüberschriften */
h2 {
    /* VARIABLE */
    color: var(--very-dark);
    /* VARIABLE */
    border-bottom: 3px solid var(--accent-orange);
    padding-bottom: 12px;
    font-size: 2rem;
    font-weight: 700;
    margin: 2.5rem 0 1.5rem 0;
    line-height: 1.3;
    letter-spacing: -0.3px;
    position: relative;
}

h2:first-child {
    margin-top: 0;
}

h2::before {
    content: '';
    position: absolute;
    bottom: -3px; 
    left: 0;
    width: 60px;
    height: 3px;
    /* VARIABLE */
    background: var(--primary-blue); 
}

/* H3 - Unterüberschriften */
h3 {
    /* VARIABLE */
    color: var(--dark-blue);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    line-height: 1.4;
    letter-spacing: -0.2px;
}

/* Paragraphen - Bessere Lesbarkeit */
p {
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    /* VARIABLE */
    color: var(--text-dark);
}

p strong {
    /* VARIABLE */
    color: var(--dark-blue);
    font-weight: 600;
}

/* Listen - Optimierte Abstände */
ul {
    list-style: none;
    padding-left: 0; 
    
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

ul li {
    margin-bottom: 0.8rem;
    /* VARIABLE */
    color: var(--text-dark);
    padding-left: 25px; 
    position: relative;
}

/* Definiert den individuellen Bullet Point */
ul li::before {
    content: '▶';
    position: absolute;
    left: 0;
    
    /* VARIABLE */
    color: var(--accent-orange);
    
    font-size: 1.1rem;
    line-height: 1.2;
    top: 0;
}

ul li strong {
    /* VARIABLE */
    color: var(--dark-blue);
    font-weight: 600;
}

/* ===================================
   BUTTONS - MODERN & ANSPRECHEND ✨
   =================================== */

/* Call-to-Action Container */
.cta {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
}

/* Buttons - Modernes Design */
.button {
    display: inline-block;
    padding: 16px 40px;
    /* VARIABLE */
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-hover) 100%);
    /* VARIABLE */
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    /* VARIABLE */
    transition: all var(--transition-fast) cubic-bezier(0.4, 0, 0.2, 1);
    /* VARIABLE */
    box-shadow: var(--shadow-button);
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

/* Ripple-Effekt beim Hover */
.button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    /* VARIABLE (Hier ist keine Variable nötig, da es ein transparenter Weißwert ist) */
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.button:hover::before {
    width: 300px;
    height: 300px;
}

.button:hover {
    transform: translateY(-3px);
    /* VARIABLE */
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.button:active {
    transform: translateY(-1px);
    /* VARIABLE */
    box-shadow: var(--shadow-button);
}

/* ===================================
   HERO-BEREICH (DESKTOP)
   =================================== */
.hero {
    position: relative;
    width: 100%;
    min-height: 370px;
    height: 80vh;
    background: url('hero.jpg') no-repeat center center/cover;
}

/* Halbtransparentes Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30,58,95,0.5);
}

/* Logo links oben, absolut positioniert */
.logo {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
}
.logo img {
    height: 200px;
    width: auto;
    cursor: pointer;
    margin-bottom: 0;
}
.logo:hover img {
    transform: scale(1.1);
}

/* Text in der Mitte (horizontal + vertikal) */
.header-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 600px;
    /* VARIABLE */
    color: var(--white);
}
.header-text h1 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    /* VARIABLE */
    color: var(--white) !important;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
}
@media (min-width: 992px) {
    .header-text h1 {
        font-size: 45px;
    }
}
.header-text p {
    margin: 5px 0 0 0;
    font-size: 16px;
    /* VARIABLE */
    color: var(--white) !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

/* Hamburger-Menü im Hero */
.hamburger {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    /* VARIABLE */
    color: var(--white);
    cursor: pointer;
    display: none;
}

/* ===================================
   FOOTER - MODERNISIERT ✨
   =================================== */
footer {
    /* VARIABLE */
    background: linear-gradient(135deg, var(--very-dark) 0%, var(--dark-blue) 100%);
    /* VARIABLE */
    color: var(--white);
    text-align: center;
    padding: 30px 0;
    width: 100%;
    /* VARIABLE */
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    margin-top: auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content p {
    /* VARIABLE */
    color: var(--white) !important;
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    flex-direction: row;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

footer a {
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-fast);
    padding: 8px 16px;
    border-radius: 5px;
    position: relative;
}

footer a:hover {
    /* VARIABLE */
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

footer a:visited {
    color: rgba(255, 255, 255, 0.85);
}

/* ===================================
										   
										 
					 
				  
																			
									
												 
					 
					
													
																						   
									   
											   
				  
														 
 

										
				 
					   
 

									
			   
				 
													   
				 
												
															   
 

																		   
														  
						
				  
						 
					  
 

												   
						   
						 
														 
						   
	 
													  
										 
				   
							
	 
 

									  
   MOBILE-BREAKPOINT
   =================================== */
@media (max-width: 768px), (max-height: 500px) {
    /* Navigation */
    .navbar {
        flex-direction: column;
        align-items: center;
    }
    .nav-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        display: none;
    }
    .nav-links.active {
        display: flex;
    }
    .hamburger {
        display: block;
    }

    /* Hero kleiner, Layout gestapelt */
    .hero {
        height: 60vh;
        min-height: 250px;
    }
    .hero-content {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .logo {
        position: static;
        transform: none;
        margin-bottom: 10px;
    }
    .logo img {
        height: 125px;
    }
    .header-text {
        position: static;
        transform: none;
        max-width: 90%;
        text-align: center;
        /* VARIABLE */
        color: var(--white);
    }
    
    /* Typografie auf Mobile angepasst */
    h2 {
        font-size: 1.6rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    p, ul {
        font-size: 1rem;
        line-height: 1.65;
    }
}