@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@500;700&family=Inter:wght@400;600&display=swap');

:root {
    --navy: #0F172A;
    --orange: #FF9500;
    --aqua: #00B4D8;
    --b2b-blue: #4F46E5;
    --light: #F8FAFC;
    --white: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background-color: var(--light); color: var(--navy); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Fredoka', sans-serif; color: var(--navy); }

/* --- ANIMATIONEN --- */
@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-up { opacity: 0; animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* Navigation */
nav { display: flex; justify-content: space-between; align-items: center; padding: 10px 5%; background: var(--white); box-shadow: 0 4px 20px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 100; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--navy); font-weight: 600; transition: color 0.3s; }
.nav-links a:hover { color: var(--orange); }
.nav-links a.b2b-link { color: var(--b2b-blue); }

/* Buttons & Formulare */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 15px 30px; border-radius: 30px; font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 18px; text-decoration: none; transition: all 0.3s ease; cursor: pointer; border: none; }
.btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 10px 25px rgba(255, 149, 0, 0.4); }
.btn-primary { background: var(--orange); color: var(--white); }
.btn-b2b { background: var(--b2b-blue); color: var(--white); }
.btn-outline { background: transparent; border: 2px solid var(--white); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.1); box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2); }

/* Das neue Kalender-Feld */
.booking-form { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.date-picker { padding: 15px 20px; font-size: 16px; border: 2px solid #E2E8F0; border-radius: 30px; font-family: 'Inter', sans-serif; font-weight: 600; color: var(--navy); outline: none; flex-grow: 1; transition: border-color 0.3s; }
.date-picker:focus { border-color: var(--orange); }

/* Hero Section */
.hero { min-height: 80vh; display: flex; align-items: center; padding: 0 5%; background-size: cover; background-position: center; position: relative; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(135deg, rgba(15,23,42,0.9) 0%, rgba(15,23,42,0.4) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; color: var(--white); max-width: 800px; }
.hero h1 { color: var(--white); font-size: 4rem; margin-bottom: 20px; line-height: 1.1; }
.hero p { font-size: 1.2rem; margin-bottom: 30px; font-weight: 400; opacity: 0.9; }
.hero-buttons { display: flex; gap: 20px; flex-wrap: wrap; }

/* Split Section (Buchen vs Designen) */
.split-section { display: flex; flex-wrap: wrap; margin: -50px 5% 80px 5%; background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.1); position: relative; z-index: 10; }
.split-half { flex: 1; min-width: 300px; padding: 60px; display: flex; flex-direction: column; justify-content: center; transition: background 0.3s; }
.split-half.bg-orange { background: var(--orange); color: var(--white); }
.split-half.bg-orange h2 { color: var(--white); }
.split-half h2 { font-size: 2.5rem; margin-bottom: 20px; }
.split-half p { margin-bottom: 30px; font-size: 1.1rem; }

/* Features Grid */
.features { padding: 80px 5%; text-align: center; }
.features h2 { font-size: 2.5rem; margin-bottom: 50px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.card { background: var(--white); padding: 40px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: all 0.3s ease; }
.card:hover { transform: translateY(-15px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.card-icon { font-size: 50px; margin-bottom: 20px; animation: float 6s ease-in-out infinite; display: inline-block; }
.card h3 { font-size: 1.5rem; margin-bottom: 15px; }

/* Footer */
footer { background: var(--navy); color: var(--white); padding: 40px 5%; text-align: center; margin-top: 80px; }
footer a { color: var(--aqua); text-decoration: none; }