:root {
    --accent: #c5a059;
    --text: #2c3e50;
    --bg-light: #fdfdfd;
    --white: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text);
    line-height: 1.7;
    scroll-behavior: smooth;
}

h1, h2, h3, .logo { font-family: 'Playfair Display', serif; }

/* Navbar */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 8%; background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.03);
}
.logo { font-size: 1.6rem; font-weight: 700; }
.logo span { color: var(--accent); }

.lang-btn {
    background: none; border: 1px solid var(--accent);
    padding: 5px 12px; border-radius: 4px; cursor: pointer;
    font-size: 0.8rem; transition: 0.3s;
}
.lang-btn:hover { background: var(--accent); color: white; }

/* Hero */
.hero {
    height: 85vh; display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 0 10%;
    background: linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)), 
                url('https://images.unsplash.com/photo-1470770841072-f978cf4d019e?auto=format&fit=crop&w=1920&q=80');
    background-size: cover; background-position: center;
}
.hero h1 { font-size: 4rem; margin-bottom: 20px; color: #1a252f; line-height: 1.2; }
.hero p { font-size: 1.25rem; margin-bottom: 35px; max-width: 800px; color: #4a5568; }

.btn-primary, .btn-secondary {
    padding: 15px 35px; border-radius: 50px; text-decoration: none;
    font-weight: 600; transition: 0.3s; display: inline-block; cursor: pointer; border: none;
}
.btn-primary { background: var(--accent); color: white; margin-right: 15px; }
.btn-secondary { background: white; color: var(--text); border: 1px solid #ddd; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(197,160,89,0.3); }

/* Card Grid mit Flip-Effekt */
.services { padding: 100px 8%; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 50px; }

.card-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px;
    max-width: 1200px; margin: auto;
}

.card { perspective: 1500px; height: 380px; cursor: pointer; }
.card-inner {
    position: relative; width: 100%; height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

/* HOVER auf Desktop & CLICK auf Mobile */
.card:hover .card-inner, .card.flipped .card-inner { transform: rotateY(180deg); }

.card-front, .card-back {
    position: absolute; width: 100%; height: 100%;
    backface-visibility: hidden; border-radius: 20px;
    padding: 40px; display: flex; flex-direction: column;
    justify-content: center; align-items: center; text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.card-front { background: white; border: 1px solid #eee; }
.card-back { background: var(--accent); color: white; transform: rotateY(180deg); }
.card-icon { font-size: 3.5rem; margin-bottom: 15px; }

/* Booking Form */
.booking { padding: 80px 8%; background: #f4f7f9; }
.booking-card { 
    max-width: 750px; margin: auto; background: white; 
    padding: 50px; border-radius: 25px; box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}
.booking-form { display: flex; flex-direction: column; gap: 15px; }
.form-group { display: flex; gap: 15px; }
.booking-form input, .booking-form select, .booking-form textarea {
    width: 100%; padding: 15px; border: 1px solid #eee; border-radius: 10px;
    background: #fafafa; font-family: inherit;
}

.site-footer {
    background-color: var(--white);
    padding: 30px 8%; /* Gleicher Seitenabstand wie Navbar */
    border-top: 1px solid #eee;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; /* Links und Rechts verteilen */
    align-items: center; /* Vertikal mittig ausrichten */
}

.footer-left p {
    font-size: 0.9rem;
    color: #718096;
}

.footer-nav {
    display: flex;
    gap: 25px; /* Abstand zwischen den Links */
}

.footer-nav a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--accent);
}

/* Mobile Optimierung: Untereinander stapeln, wenn der Platz zu eng wird */
@media (max-width: 600px) {
    .footer-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .form-group { flex-direction: column; }
    .card-grid { grid-template-columns: 1fr; }
}

/* Formular-Sektion Styling */
.booking {
    padding: 100px 5%;
    background-color: #f9fbfc; /* Ganz leichtes Blau/Grau für Kontrast */
}

.booking-card {
    max-width: 850px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.04);
}

.booking-card h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.form-intro {
    text-align: center;
    color: #718096;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* Formular Logik */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: flex;
    gap: 25px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-form input, 
.booking-form select, 
.booking-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background-color: #fcfcfc;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

/* Fokus-Effekt für die Felder */
.booking-form input:focus, 
.booking-form select:focus, 
.booking-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.1);
}

.booking-form textarea {
    resize: none;
}

#btn-submit {
    margin-top: 20px;
    width: 100%;
    font-size: 1.1rem;
    padding: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile Optimierung */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 25px;
    }
    
    .booking-card {
        padding: 30px 20px;
    }
}

.testimonials {
    padding: 80px 8%;
    background-color: #fff;
    text-align: center;
}

.testi-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.testi-item {
    flex: 1;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    border-left: 5px solid var(--accent);
    font-style: italic;
}

.testi-author {
    display: block;
    margin-top: 20px;
    font-weight: 600;
    color: var(--accent);
    font-style: normal;
}