:root {
    --primary-color: #5a4b41;
    --secondary-color: #fcfbfa; /* Sehr helles beige */
    --accent-color: #c08552;
    --text-color: #4a4a4a;
    --heading-color: #2c2c2c;
    --bg-color: #ffffff;
    --border-radius: 12px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.8;
}

h1, h2, h3, .logo {
    font-family: 'Lora', serif;
    color: var(--heading-color);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: var(--secondary-color);
}

.content-section {
    padding: 80px 0;
}

.subtitle {
    margin-bottom: 20px;
    color: #666;
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Text Content */
.text-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-box {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    border-top: 4px solid var(--accent-color);
}

.feature-box h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Galerie */
.grid-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.grid-gallery img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.grid-gallery img:hover {
    transform: translateY(-5px);
}

/* Buchung & Kalender */
.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Formular Styles */
.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.half {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

input, textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    background-color: #fafafa;
    transition: border-color 0.3s;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: white;
}

.btn {
    background-color: var(--accent-color);
    color: white;
    padding: 16px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    transition: background 0.3s ease;
}

.btn:hover {
    background-color: #a67246;
}

/* FullCalendar Anpassungen */
.fc {
    font-family: 'Open Sans', sans-serif;
    background: white;
}
.fc-toolbar-title {
    font-family: 'Lora', serif;
    font-size: 1.2em !important;
}
.fc .fc-button-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}
.fc .fc-button-primary:hover {
    background-color: #3f342d !important;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: rgba(255,255,255,0.8);
    padding: 40px 0;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
    .booking-wrapper {
        grid-template-columns: 1fr;
    }
    .nav-links {
        display: none; /* Für Mobile bräuchte man hier noch ein Hamburger-Menü, aktuell einfach ausgeblendet zugunsten der Übersicht */
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
}