/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    font-weight: 400;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #FFFFFF;
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

.logo {
    margin-right: 2rem;
    flex-shrink: 0;
}

.logo h1 {
    color: #C7B299;
    font-size: 1.5rem;
    margin: 0;
}

.logo span {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 400;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #C7B299;
    background-color: rgba(199, 178, 153, 0.1);
}

/* Navigation Fix - Einzeilig und linksbündig */
.nav-list {
    display: flex !important;
    list-style: none !important;
    gap: 0.75rem !important;
    align-items: center !important;
    text-align: left !important;
    white-space: nowrap !important;
    overflow: visible !important;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: left !important;
    white-space: nowrap !important;
    display: inline-block !important;
    line-height: 1.2 !important;
}

.nav-link:hover,
.nav-link.active {
    color: #C7B299;
    background-color: rgba(199, 178, 153, 0.1);
}

/* Spezieller Fix für lange Navigation-Items */
@media (min-width: 769px) {
    .nav-list li {
        flex-shrink: 0 !important;
        white-space: nowrap !important;
    }
    
    .nav-link[href="#about"] {
        white-space: nowrap !important;
        min-width: auto !important;
    }
    
    .nav-link[href="verfuegbarkeit.html"] {
        white-space: nowrap !important;
        min-width: auto !important;
    }
    
    /* Hervorgehobener Buchung-Link */
    .nav-booking {
        background: linear-gradient(135deg, #C7B299, #B5A489) !important;
        color: white !important;
        padding: 8px 16px !important;
        border-radius: 25px !important;
        font-weight: 600 !important;
        box-shadow: 0 2px 10px rgba(199, 178, 153, 0.3) !important;
        transition: all 0.3s ease !important;
        border: 2px solid transparent !important;
    }
    
    .nav-booking:hover {
        background: linear-gradient(135deg, #B5A489, #A0957A) !important;
        color: white !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 15px rgba(199, 178, 153, 0.4) !important;
    }
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 2px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(199, 178, 153, 0.8), rgba(181, 154, 130, 0.6));
    z-index: -1;
}

.hero-content {
    text-align: left;
    color: white;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.colored-word {
    color: #C7B299;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: #C7B299;
    color: white;
}

.btn-primary:hover {
    background: #b59a82;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(199, 178, 153, 0.3);
}

/* Large CTA Button Styles */
.btn-large {
    padding: 18px 36px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(199, 178, 153, 0.3);
}

.btn-large:hover {
    background: linear-gradient(135deg, #b59a82, #a68c73);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(199, 178, 153, 0.4);
    color: white;
}

.btn-cta {
    background: linear-gradient(135deg, #C7B299, #b59a82);
    color: white;
    border: none;
    box-shadow: 0 8px 25px rgba(199, 178, 153, 0.4);
}

.btn-cta:hover {
    background: linear-gradient(135deg, #b59a82, #a68c73);
    color: white;
}

.btn-icon {
    font-size: 1.4rem;
}

.btn-secondary {
    background: transparent;
    color: #C7B299;
    border: 2px solid #C7B299;
}

.btn-secondary:hover {
    background: #C7B299;
    color: white;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #C7B299;
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section-bg {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

/* Booking CTA Section */
.booking-cta-section {
    background: linear-gradient(135deg, #C7B299 0%, #b59a82 100%);
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.booking-cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.booking-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.booking-cta-section .btn-cta {
    background: white;
    color: #C7B299;
    font-size: 1.3rem;
    font-weight: 700;
}

.booking-cta-section .btn-cta:hover {
    background: #f8f9fa;
    color: #b59a82;
    transform: translateY(-3px);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    color: #C7B299;
    margin-bottom: 1rem;
}

/* Spezielle Schriftgröße für Zahlungsbedingungen (handy-optimiert) */
.section-title-small {
    color: #C7B299;
    margin-bottom: 1rem;
    font-size: 1.4rem; /* Angepasst an neue kleinere Schriftgrößen */
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 1.5rem;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    color: #22c55e;
    font-weight: bold;
    font-size: 1.2rem;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Equipment Section */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.equipment-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.equipment-item:hover {
    transform: translateY(-5px);
}

.equipment-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #C7B299, #b59a82);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.equipment-item h3 {
    color: #C7B299;
    margin-bottom: 1rem;
}

.equipment-item ul {
    list-style: none;
    text-align: left;
}

.equipment-item li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding-left: 1.5rem;
}

.equipment-item li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

.equipment-item li:last-child {
    border-bottom: none;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

/* Technical Data */
.tech-data {
    max-width: 600px;
    margin: 0 auto;
}

.tech-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tech-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.tech-row:last-child {
    border-bottom: none;
}

.tech-label {
    font-weight: 600;
    color: #475569;
}

.tech-value {
    font-weight: 700;
    color: #C7B299;
}

/* Pricing Section */
.price-notice {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    border-left: 4px solid #f59e0b;
}

.notice-content h3 {
    color: #92400e;
    margin-bottom: 1rem;
}

.notice-content ul {
    list-style: none;
}

.notice-content li {
    padding: 0.5rem 0;
    color: #78350f;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.price-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.price-card:hover {
    transform: translateY(-5px);
}

.price-card.featured {
    border: 3px solid #C7B299;
    transform: scale(1.05);
}

.price-card.featured:before {
    content: 'BELIEBT';
    position: absolute;
    top: 20px;
    right: -30px;
    background: #C7B299;
    color: white;
    padding: 0.5rem 40px;
    font-size: 0.8rem;
    font-weight: bold;
    transform: rotate(45deg);
    z-index: 10;
}

.price-header {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.price-header h3 {
    color: #C7B299;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.price-period {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.price-display {
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #C7B299;
}

.price-period-text {
    color: #64748b;
    font-size: 1rem;
}

.price-per-day {
    color: #64748b;
    font-weight: 500;
}

.price-features {
    padding: 1.5rem 2rem;
}

.price-features .feature {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.price-features .feature:last-child {
    border-bottom: none;
}

.price-card .btn {
    margin: 1rem 2rem 2rem;
    width: calc(100% - 4rem);
}

/* Pricing Section - Alternative Klassen für dynamisches Rendering */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    padding: 1rem;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pricing-featured {
    border: 3px solid #C7B299;
    transform: scale(1.02);
}

.pricing-featured .pricing-badge {
    background: #C7B299;
    color: white;
    padding: 0.4rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 1rem;
}

.pricing-season {
    color: #C7B299;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-period {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.pricing-price {
    margin: 1.5rem 0;
}

.pricing-price .price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #C7B299;
    display: block;
}

.pricing-price .price-label {
    color: #64748b;
    font-size: 1rem;
    display: block;
    margin-top: 0.5rem;
}

.pricing-price-secondary {
    color: #475569;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 8px;
    margin-top: 1rem;
}

.pricing-features {
    list-style: none;
    padding: 1.5rem 0;
    margin-top: 1rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-notice {
    background: #1F2937;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    border-left: 4px solid #C7B299;
}

.pricing-notice h3 {
    color: #C7B299;
    margin-bottom: 1.5rem;
}

.notice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

/* Mobile Anpassung für Wichtige Hinweise */
@media (max-width: 768px) {
    .notice-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .notice-grid {
        grid-template-columns: 1fr;
    }
}

.notice-item {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #e5e7eb;
}

.notice-item strong {
    color: #C7B299;
}

/* Booking Widget Styles */
.booking-widget {
    margin: 2rem 0;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.booking-notice {
    margin-top: 2rem;
}

.notice-card {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #C7B299;
}

.notice-card h4 {
    color: #C7B299;
    margin-bottom: 1rem;
}

.notice-list {
    list-style: none;
    padding: 0;
}

.notice-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #C7B299;
}

.notice-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #C7B299;
    font-weight: bold;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
    color: #C7B299;
    margin-bottom: 1.5rem;
}

.info-card ul {
    list-style: none;
}

.info-card li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding-left: 1.5rem;
}

.info-card li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #C7B299;
    font-weight: bold;
}

.info-card li:last-child {
    border-bottom: none;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #C7B299, #b59a82);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step h3 {
    color: #C7B299;
    margin-bottom: 1rem;
}

/* Payment Info */
.payment-info {
    max-width: 800px;
    margin: 0 auto;
}

.payment-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.payment-card h3 {
    color: #C7B299;
    margin-bottom: 1.5rem;
}

.payment-card ul {
    list-style: none;
}

.payment-card li {
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding-left: 2rem;
}

.payment-card li:before {
    content: '€';
    position: absolute;
    left: 0;
    background: #C7B299;
    color: white;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.payment-card li:last-child {
    border-bottom: none;
}

/* Payment Categories for Enhanced Display */
.payment-terms {
    max-width: 1000px;
    margin: 0 auto;
}

.payment-category {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border-left: 4px solid #C7B299;
}

.category-title {
    color: #C7B299;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 0.5rem;
}

.payment-list {
    list-style: none;
    padding: 0;
}

.payment-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding-left: 2rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.payment-list li:last-child {
    border-bottom: none;
}

.payment-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1rem;
    color: #C7B299;
    font-weight: bold;
    font-size: 1.1rem;
}

.payment-category:last-child {
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #C7B299, #b59a82);
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #60a5fa;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Booking Info Section */
.booking-info-section {
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.booking-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.booking-info-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #C7B299;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.booking-info-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.booking-info-value {
    color: #666;
}

@media (max-width: 768px) {
    .booking-info-grid {
        grid-template-columns: 1fr;
    }
}

/* Weitere Informationen - Kompakte Liste */
.info-compact-list {
    max-width: 900px;
    margin: 0 auto;
}

.info-list-compact {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
    column-gap: 3rem;
}

.info-list-compact li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    break-inside: avoid;
    margin-bottom: 0.5rem;
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
}

.info-list-compact li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.75rem;
    color: #C7B299;
    font-weight: bold;
    font-size: 1rem;
}

.info-list-compact li:hover {
    background-color: rgba(199, 178, 153, 0.05);
    border-radius: 4px;
    padding-left: 1.5rem;
}

@media (max-width: 768px) {
    .info-list-compact {
        columns: 1;
    }
    
    .info-list-compact li {
        padding: 1rem 0;
        padding-left: 1.5rem;
    }
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #C7B299;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.legal-content h1 {
    color: #C7B299;
    border-bottom: 3px solid #C7B299;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.legal-content h2 {
    color: #C7B299;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Utility Classes */
.img-fluid {
    width: 100%;
    height: auto;
}

.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #FFFFFF;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        padding: 1rem 0;
    }
    
    .nav.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: stretch !important;
        gap: 0 !important;
    }
    
    .nav-list li {
        width: 100%;
        border-bottom: 1px solid #f1f5f9;
    }
    
    .nav-list li:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        display: block !important;
        padding: 1rem 1.5rem !important;
        width: 100%;
        text-align: left !important;
        border-radius: 0 !important;
    }
    
    .nav-booking {
        background: linear-gradient(135deg, #C7B299, #B5A489) !important;
        color: white !important;
        margin: 0.5rem 1rem !important;
        border-radius: 8px !important;
        text-align: center !important;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hamburger-line {
        width: 25px;
        height: 3px;
        background: #333;
        margin: 3px 0;
        transition: all 0.3s ease;
        display: block;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .equipment-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .price-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .price-card.featured {
        transform: none;
    }
    
    .pricing-featured {
        transform: none;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .legal-content {
        padding: 2rem 1rem;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .price-amount {
        font-size: 1.75rem; /* Angepasst an neue kleinere Schriftgrößen */
    }
    
    .cta-content h2 {
        font-size: 1.75rem; /* Angepasst an neue kleinere Schriftgrößen */
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Additional Gallery Images */
.gallery-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.gallery-full .gallery-item {
    aspect-ratio: 4/3;
}

.gallery-full .gallery-img {
    height: 100%;
}

/* AGB Styles */
.agb-content {
    line-height: 1.7;
}

.agb-content h2 {
    color: #C7B299;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0.5rem;
}

.agb-content h2:first-child {
    margin-top: 1rem;
}

.agb-content h3 {
    color: #334155;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.agb-content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.agb-content ol ol {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.agb-content li {
    margin-bottom: 0.5rem;
}

.agb-content ul {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.agb-content li li {
    margin-bottom: 0.25rem;
}

.agb-content strong {
    color: #C7B299;
    font-weight: 600;
}

.agb-content em {
    color: #64748b;
    font-style: italic;
}

.agb-content p {
    margin-bottom: 1rem;
}

/* Technische Daten Styles */
.technical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.technical-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.technical-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.15);
    border-color: #C7B299;
}

.technical-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.technical-value {
    font-size: 1.1rem;
    color: #C7B299;
    font-weight: 700;
    line-height: 1.4;
}/* Slideshow Styles */
.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: auto;
    background: #1F2937;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.slideshow-wrapper {
    position: relative;
    width: 100%;
    height: 650px;
}

.slide {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    animation: slideIn 0.5s ease-in-out;
}

.slide.active {
    display: block !important;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #000;
}

.slide-caption {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    max-width: 80%;
    /* Text Outline für bessere Lesbarkeit ohne Panel */
    text-shadow: 
        -2px -2px 0 #000,
        2px -2px 0 #000,
        -2px 2px 0 #000,
        2px 2px 0 #000,
        -2px 0 0 #000,
        2px 0 0 #000,
        0 -2px 0 #000,
        0 2px 0 #000,
        0 0 8px rgba(0, 0, 0, 0.8);
}

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border: none;
    padding: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.slide-btn:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.prev-btn {
    left: 15px;
}

.next-btn {
    right: 15px;
}

.slide-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slideshow Full Width Fix */
.gallery-grid .slideshow-container {
    grid-column: 1 / -1 !important;
    width: 70% !important;
    max-width: none !important;
    margin: 0 auto !important;
}

/* Responsive Slideshow */
@media (max-width: 768px) {
    .slideshow-wrapper {
        height: 400px;
    }
    
    .gallery-grid .slideshow-container {
        width: 100% !important;
    }
    
    .slide-btn {
        padding: 0.8rem;
        font-size: 1.2rem;
        width: 40px;
        height: 40px;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
    
    .slide-caption {
        padding: 0.5rem 0.75rem;
        font-size: 1.1rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

/* Navigation Ausrichtung Fix */
.nav-list {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    align-items: center;
    text-align: left !important;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: left !important;
}

/* ===========================================
   V14 WEBSITE UPDATES
   =========================================== */

/* 1. Leerzeile über Zusatzleistungen */
#additional .additional-grid {
    margin-top: 2rem;
}

/* 2. Mobile Überschriften-Probleme beheben - Kein seitliches Scrollen */
h1, h2, h3, h4, h5, h6 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    hyphens: auto;
}

.section-title {
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
    padding: 0 1rem;
}

/* 3. Navigation-Scroll-Offset (Header-Höhe) */
@media (min-width: 768px) {
    html {
        scroll-padding-top: 100px; /* Header-Höhe + Puffer */
    }
}

/* 4. Logo-Stile für Image */
.logo img {
    max-height: 50px;
    width: auto;
    border-radius: 0;
    box-shadow: none;
}

/* 5. Zusatzinformationen: Überschriften färben und zentrieren */
#additional-grid .additional-section h3 {
    color: #C7B299;
    text-align: center;
}

/* 6. Mehr Platz über "Voraussetzungen & Richtlinien" */
#additional-grid .additional-section:first-child {
    margin-top: 2rem;
}

/* ========================================
   MOBILE OPTIMIERUNGEN (max-width: 480px)
   ======================================== */
@media (max-width: 480px) {
    /* 1. Basis-Skalierung für bessere Lesbarkeit */
    :root {
        font-size: 15px; /* Reduziert für kleinere Schrift */
    }
    
    /* 2. Fließtext Optimierungen */
    body p {
        font-size: 1rem; /* Reduziert auf 15px */
        line-height: 1.6;
        max-width: 35ch; /* Optimale Zeilenlänge für Mobil */
        margin: 0 auto 1rem auto; /* Zentriert und Abstand unten */
    }
    
    /* 3. Überschriften-Größen für Mobil */
    h1 {
        font-size: 1.75rem; /* Reduziert auf ~26px */
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    h2 {
        font-size: 1.4rem; /* Reduziert auf ~21px */
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    h3 {
        font-size: 1.2rem; /* Reduziert auf ~18px */
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* 4. Container und Layout für Mobil */
    .container {
        padding: 0 1rem; /* Reduzierte Seitenränder */
    }
    
    /* 5. Section-Padding reduzieren */
    .section {
        padding: 2rem 0; /* Optimiert für mobile Ansicht */
    }
    
    /* 6. Hero-Bereich anpassen */
    .hero-title {
        font-size: 1.5rem; /* Noch kleiner für bessere Zeilenlänge */
        line-height: 1.2;
        margin-bottom: 1rem;
        padding: 0 0.5rem 0 0;
        text-align: left;
        width: 100%;
        margin-left: 0;
        box-sizing: border-box;
        word-break: normal; /* Keine Worttrennung */
        hyphens: none; /* Keine Silbentrennung */
    }
    
    .hero-subtitle {
        font-size: 1rem; /* Angepasst an neue kleinere Schriftgrößen */
        padding: 0 0.25rem; /* Minimaler Abstand nach links */
        max-width: 100%; /* Maximale Breite nutzen */
        margin: 0 0 1.25rem 0; /* Reduzierter Abstand */
        line-height: 1.5;
        text-align: left;
    }
    
    /* Independence.jpg Bild komplett sichtbar */
    #about-image {
        max-width: 100%;
        height: auto;
        object-fit: contain;
        border-radius: 8px;
    }
    
    /* Technische Daten Kacheln kompakter */
    .technical-item {
        padding: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .technical-label {
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
    }
    
    .technical-value {
        font-size: 1.1rem;
        line-height: 1.2;
    }
    
    /* Preis-Kacheln kompakter */
    .pricing-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .pricing-season {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .pricing-period {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .pricing-features {
        margin-top: 1rem;
    }
    
    .pricing-features li {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }
    
    /* Buchungskalender responsive */
    wls-boat-book-calendar {
        max-width: 100%;
        width: 100% !important; /* Responsive Breite statt feste 1000px */
        min-height: 400px;
        margin: 0 auto;
        padding: 0 15px;
        box-sizing: border-box;
        display: block;
        overflow-x: hidden;
    }
    
    /* 7. Header/Navigation für Mobil */
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 0;
        gap: 0;
    }
    
    .logo {
        margin-right: 0;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .logo span {
        font-size: 0.75rem;
    }
    
    .nav-list {
        gap: 1rem; /* Reduziert von 2rem */
        flex-wrap: wrap; /* Erlaubt Zeilenumbruch */
        justify-content: center;
    }
    
    .nav-link {
        padding: 0.4rem 0.8rem; /* Kompakter */
        font-size: 0.9rem;
    }
    
    /* 8. About-Sektion */
    .about-content {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .features-list {
        grid-template-columns: 1fr; /* Stack statt Grid */
        gap: 0.5rem;
    }
    
    /* 9. Equipment-Sektion */
    .equipment-grid {
        grid-template-columns: 1fr; /* Single Column */
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .equipment-item {
        padding: 1rem;
    }
    
    /* 10. Galerie-Anpassungen */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    /* 11. Pricing-Sektion */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .price-card.featured {
        transform: none; /* Entferne Skalierung auf Mobil */
    }
    
    .price-header {
        padding: 1.25rem;
    }
    
    /* 12. Button-Anpassungen für Touch */
    .btn {
        padding: 1.2rem 2rem; /* Mehr Touch-Target */
        font-size: 1rem;
        min-height: 44px; /* Apple's empfohlene Touch-Target-Größe */
    }
    
    /* 13. Footer für Mobil */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    /* 14. Technical Data für Mobil */
    .tech-table {
        margin: 0 1rem;
    }
    
    .tech-row {
        padding: 0.75rem;
        flex-direction: column;
        gap: 0.4rem;
        text-align: center;
    }
    
    /* Info Cards kompakter */
    .info-card {
        padding: 1.25rem;
    }
    
    .info-card h3 {
        margin-bottom: 1rem;
    }
    
    .info-card li {
        padding: 0.5rem 0;
    }
    
    /* 15. Slideshow Navigation für Touch */
    .slide-btn {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
    
    .slide-indicators {
        bottom: 15px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
        margin: 0 3px;
    }
    
    /* 16. Zusätzliche mobile Text-Verbesserungen */
    .section-header {
        margin-bottom: 1.5rem; /* Reduziert von 3rem */
    }
    
    .section-title {
        font-size: 1.4rem; /* Angepasst an neue kleinere Schriftgrößen */
        padding: 0 1rem;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem; /* Kleinere Untertitel */
        padding: 0 1rem;
        margin: 0 auto 1.25rem auto;
    }
    
    /* Legal Content kompakter */
    .legal-content {
        padding: 1.5rem 1rem;
        margin-top: 0.75rem;
    }
    
    .legal-content h2 {
        margin-bottom: 1rem;
    }
    
    .legal-content p {
        margin-bottom: 1rem;
    }
    
    /* 17. Buchungskalender für Mobil - Optimiert */
    .booking-widget {
        margin: 0 1rem;
        font-size: 15px;
    }
    
    /* Eingebetteter Kalender - Mobile Optimierung */
    .booking-calendar,
    .calendar-container,
    .availability-widget,
    .contact-form-calendar {
        margin: 0 1rem;
        max-width: 100%;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        padding: 10px;
    }
    
    /* Kalender-Inhalte für mobile Geräte - Verbessert */
    .calendar-table {
        font-size: 13px;
        width: 100%;
        border-collapse: collapse;
    }
    
    .calendar-day,
    .calendar-button,
    .calendar-link {
        font-size: 14px;
        padding: 12px 8px;
        min-height: 44px; /* Vergrößert für bessere Touch-Bedienung */
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 6px;
        transition: all 0.2s ease;
        touch-action: manipulation;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Verfügbare Tage hervorheben */
    .calendar-day.available {
        background-color: #e6f3ff;
        border: 1px solid #1e40af;
        color: #1e40af;
        font-weight: 500;
    }
    
    /* Ausgewählte Tage */
    .calendar-day.selected,
    .calendar-button.selected {
        background-color: #1e40af;
        color: white;
        font-weight: 600;
        border: 2px solid #1e40af;
    }
    
    .calendar-header {
        font-size: 15px;
        font-weight: bold;
        padding: 8px;
        background-color: #f8fafc;
        border-radius: 6px;
        margin-bottom: 10px;
    }
    
    /* Kalender-Monate und Navigation - Vergrößert */
    .calendar-nav {
        font-size: 16px;
        padding: 12px;
        min-width: 48px;
        min-height: 48px; /* Vergrößert für bessere Touch-Bedienung */
        border-radius: 6px;
        background-color: #f1f5f9;
        border: 1px solid #e2e8f0;
        transition: all 0.2s ease;
        touch-action: manipulation;
    }
    
    /* Kalender-Navigation Hover-Effekt */
    .calendar-nav:hover {
        background-color: #e2e8f0;
        border-color: #cbd5e1;
    }
    
    /* Einzelne Monatsansicht auf Mobile */
    .calendar-months {
        display: block !important;
        width: 100%;
        overflow-x: hidden;
    }
    
    .calendar-month {
        width: 100%;
        margin-bottom: 20px;
        display: block;
    }
    
    /* Kalender-Wochentage */
    .calendar-weekdays {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 4px;
        margin-bottom: 8px;
        font-size: 12px;
        font-weight: 600;
        color: #64748b;
        text-align: center;
    }
    
    .calendar-weekday {
        padding: 8px 4px;
        min-height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    }
    
    /* 18. Formulare und Inputs für Touch */
    input, textarea, select {
        font-size: 16px; /* Verhindert iOS Zoom */
        padding: 12px;
    }
    
    /* 19. Checklisten und Listen */
    .notice-content li,
    .price-features li {
        padding: 0.75rem 0;
        font-size: 0.95rem; /* Angepasst an neue kleinere Schriftgrößen */
    }
    
    /* 20. Zusätzliche Abschnitte */
    .additional-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ===== KONTAKTSEITE STYLES ===== */

/* Kontakt Information Section */
.contact-info-section {
    max-width: 900px;
    margin: 0 auto;
}

.contact-info-card {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.contact-grid {
    display: grid;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 3px solid #C7B299;
}

.contact-item strong {
    color: #374151;
    font-size: 1rem;
}

.contact-item a {
    font-weight: 500;
    text-decoration: none;
}

/* Why Choose Section */
.why-choose-section {
    max-width: 1000px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.benefit-item h4 {
    color: #C7B299;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.benefit-item p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
}

/* Booking Request Section */
.booking-request-section {
    max-width: 800px;
    margin: 0 auto;
}

.form-container {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-group label {
    color: #374151;
    font-weight: 600;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C7B299;
    box-shadow: 0 0 0 3px rgba(199, 178, 153, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* FAQ Section */
.faq-section {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h4 {
    color: #374151;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #C7B299;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #f8fafc;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 2rem 2rem;
    max-height: 200px;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive für Kontaktseite */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-card,
    .form-container {
        padding: 2rem;
    }
    
    .benefit-item {
        padding: 2rem;
    }
    
    .faq-question {
        padding: 1.5rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
}

