:root {
    --primary: #2c3e50;
    --secondary: #7f8c8d;
    --accent: #3498db;
    --light: #f8f9fa;
    --dark: #1a2b3c;
}

/* Grundlayout */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: white;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Bilderkarussell */
.gallery-container {
    position: relative;
    margin: 30px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 500px;
}

.gallery {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.gallery img {
    min-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    flex-shrink: 0;
}

/* Navigation */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.nav-btn:hover {
    background: rgba(0,0,0,0.8);
    transform: translateY(-50%) scale(1.1);
}

.prev { left: 20px; }
.next { right: 20px; }

/* Navigationspunkte */
.dots-container {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: white;
    transform: scale(1.3);
}

/* Textbereiche */
.content {
    max-width: 1000px;
    margin: 40px auto;
}

.description h1 {
    color: var(--primary);
    font-weight: 300;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 50px 0;
}

.detail-card {
    background: var(--light);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.detail-card h2 {
    color: var(--accent);
    margin-top: 0;
    font-weight: 400;
}

/* Kontaktformular Stile */
.contact-form {
    max-width: 600px;
    margin: 60px auto;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background: #2980b9;
}

.status-message {
    margin-top: 20px;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
}

.status-message.success {
    background: #d4edda;
    color: #155724;
}

.status-message.error {
    background: #f8d7da;
    color: #721c24;
}

.page-header {
    text-align: center;
    margin: 20px 0;
}

.page-header h1 {
    color: var(--primary);
    font-weight: 300;
    font-size: 2rem;
}

.faq .detail-card {
    margin-bottom: 15px;
}

.faq .detail-card h3 {
    color: var(--accent);
    margin-top: 0;
}

.booking-info {
    text-align: center;
    color: var(--secondary);
    font-size: 14px;
}

.booking-calendar {
    max-width: 600px;
    margin: 40px auto;
    font-family: 'Helvetica Neue', sans-serif;
}

.calendar {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.weekdays, .days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.weekdays div {
    text-align: center;
    font-weight: bold;
    padding: 5px;
}

.days div {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: pointer;
}

.days div:hover {
    background: #f0f0f0;
}

.day-available {
    background: #e8f5e9;
    color: #2e7d32;
}

.day-booked {
    background: #ffebee;
    color: #c62828;
    text-decoration: line-through;
}
