/* Corporate Design Blockhausferien */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.header, header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #1F4E2C;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    font-weight: normal;
    color: #fff;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #1F4E2C;
    background: rgba(255,255,255,0.9);
}

.hero {
    height: 100vh;
    background: url('images/Blockhausferien-Waldviertel.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: normal;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: #1F4E2C;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(31, 78, 44, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(31, 78, 44, 0.4);
    background: #2a6b3d;
}

.section {
    padding: 5rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.section-title {
    text-align: center;
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: #1F4E2C;
    position: relative;
    letter-spacing: 1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #1F4E2C;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.feature-image {
    width: 200px;
    height: 150px;
    border-radius: 8px;
    margin-bottom: 1rem;
    object-fit: cover;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1F4E2C;
    font-weight: 500;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.contact-section {
    background: linear-gradient(135deg, #1F4E2C, #2a6b3d);
    color: white;
    padding: 5rem 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #90EE90;
    font-weight: 500;
}

.booking-form-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 5rem 0;
    margin-top: 3rem;
}

.booking-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.booking-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(31, 78, 44, 0.1);
    border: 1px solid rgba(31, 78, 44, 0.1);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label, label {
    font-weight: 500;
    color: #1F4E2C;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-input,
.form-select,
.form-textarea,
input[type="text"],
input[type="email"],
input[type="number"],
input[type="date"],
select,
textarea {
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
    background: white;
    margin-bottom: 1rem;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #1F4E2C;
    box-shadow: 0 0 0 3px rgba(31, 78, 44, 0.1);
}

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

/* Button Styling für Kontaktformular */
.form-submit,
button[type="submit"],
button[style*="btn-primary"] {
    background: #1F4E2C !important;
    color: white !important;
    padding: 1.2rem 3rem !important;
    border: none !important;
    border-radius: 50px !important;
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(31, 78, 44, 0.3) !important;
    margin-top: 1rem !important;
    width: 100% !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    font-family: 'Roboto', sans-serif !important;
}

.form-submit:hover,
button[type="submit"]:hover,
button[style*="btn-primary"]:hover {
    background: #2a6b3d !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(31, 78, 44, 0.4) !important;
}

.form-submit:active,
button[type="submit"]:active,
button[style*="btn-primary"]:active {
    transform: translateY(1px) !important;
    box-shadow: 0 2px 8px rgba(31, 78, 44, 0.3) !important;
}

.form-note {
    background: rgba(31, 78, 44, 0.1);
    color: #1F4E2C;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    font-size: 0.9rem;
    border-left: 4px solid #1F4E2C;
}

.form-success {
    background: rgba(34, 139, 34, 0.1);
    color: #228B22;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    border-left: 4px solid #228B22;
    display: none;
}

.form-error {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    border-left: 4px solid #dc3545;
    display: none;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-form {
        padding: 2rem 1.5rem;
    }
}

.footer {
    background: #1F4E2C;
    color: white;
    text-align: center;
    padding: 3rem 0;
}

.footer-social {
    display: flex;
    flex-direction: column;   /* untereinander statt nebeneinander */
    align-items: center;      /* zentriert horizontal */
    gap: 0.5rem;              /* etwas Abstand zwischen Text und Logo */
}

.fb-logo {
    height: 40px;
    width: auto;
    display: block;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-logo {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-website {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #90EE90;
}

.social-links {
    margin-bottom: 2rem;
    text-align: center;
}

.social-links a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #90EE90;
}

.scroll-indicator {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #1F4E2C;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-indicator:hover {
    transform: scale(1.1);
    background: #2a6b3d;
}

.parallax-section {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2071&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.parallax-content {
    max-width: 600px;
    padding: 0 2rem;
}

.parallax-content h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: normal;
    letter-spacing: 1px;
}

.parallax-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 3rem 2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

/* Base Button Styles */
.btn {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* Primär-Button (Hauptaktion) */
.btn-primary {
    background-color: #1F4E2C;
    color: #FFFFFF;
    font-size: 18px;
    padding: 16px 32px;
    box-shadow: 0 4px 12px rgba(31, 78, 44, 0.3);
}

.btn-primary:hover {
    background-color: #2E7A4F;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(31, 78, 44, 0.4);
}

.btn-primary:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(31, 78, 44, 0.3);
}

.btn-primary:disabled {
    background-color: #1F4E2C;
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Sekundär-Button (Nebenaktionen) */
.btn-secondary {
    background-color: #FFFFFF;
    color: #1F4E2C;
    border: 2px solid #1F4E2C;
    font-size: 18px;
    padding: 14px 30px;
}

.btn-secondary:hover {
    background-color: #F5F5F5;
    border-color: #2E7A4F;
    color: #2E7A4F;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(31, 78, 44, 0.2);
}

.btn-secondary:active {
    transform: translateY(1px);
    background-color: #E8E8E8;
}

.btn-secondary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Tertiär-Button (Text-Links) */
.btn-tertiary {
    background-color: transparent;
    color: #1F4E2C;
    font-size: 16px;
    font-weight: 400;
    padding: 8px 16px;
    text-transform: none;
    border-radius: 4px;
}

.btn-tertiary:hover {
    color: #2E7A4F;
    text-decoration: underline;
    background-color: rgba(31, 78, 44, 0.05);
}

.btn-tertiary:active {
    background-color: rgba(31, 78, 44, 0.1);
}

/* Ghost-Button (auf dunklen Flächen) */
.btn-ghost {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    font-size: 18px;
    padding: 14px 30px;
}

.btn-ghost:hover {
    background-color: #FFFFFF;
    color: #1F4E2C;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.btn-ghost:active {
    transform: translateY(1px);
    background-color: #F5F5F5;
}

/* Button-Größen */
.btn-large {
    font-size: 20px;
    padding: 20px 40px;
}

.btn-large.btn-secondary {
    padding: 18px 38px; /* Anpassung wegen Border */
}

.btn-large.btn-ghost {
    padding: 18px 38px; /* Anpassung wegen Border */
}

.btn-small {
    font-size: 16px;
    padding: 12px 24px;
}

.btn-small.btn-secondary {
    padding: 10px 22px; /* Anpassung wegen Border */
}

.btn-small.btn-ghost {
    padding: 10px 22px; /* Anpassung wegen Border */
}

/* Spezielle Anwendungen */
.btn-cta {
    font-size: 20px;
    padding: 20px 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.btn-form-submit {
    width: 100%;
    max-width: 300px;
    margin-top: 20px;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .btn {
        font-size: 16px;
        padding: 14px 28px;
    }
    
    .btn-secondary,
    .btn-ghost {
        padding: 12px 26px;
    }
    
    .btn-large {
        font-size: 18px;
        padding: 16px 32px;
    }
    
    .btn-large.btn-secondary,
    .btn-large.btn-ghost {
        padding: 14px 30px;
    }
    
    .btn-small {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    .btn-small.btn-secondary,
    .btn-small.btn-ghost {
        padding: 8px 18px;
    }
}

/* Focus States für Accessibility */
.btn:focus {
    outline: 3px solid rgba(31, 78, 44, 0.3);
    outline-offset: 2px;
}

.btn-ghost:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
}

/* Loading State */
.btn-loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.btn-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    margin-left: -10px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: btn-spin 1s linear infinite;
}

.btn-primary.btn-loading::after {
    border-top-color: #FFFFFF;
}

.btn-secondary.btn-loading::after {
    border-top-color: #1F4E2C;
}

@keyframes btn-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Verbesserte Buchungsformular-Sektion */
.booking-form-section {
    background: linear-gradient(135deg, #1F4E2C, #2E7A4F) !important;
    padding: 80px 0 !important;
}

.booking-form-container {
    max-width: 600px !important;
    margin: 0 auto !important;
    background: white !important;
    border-radius: 15px !important;
    box-shadow: 0 15px 35px rgba(31, 78, 44, 0.2) !important;
    overflow: hidden !important;
}

/* Form Header */
.form-header {
    background: #1F4E2C !important;
    color: white !important;
    padding: 30px !important;
    text-align: center !important;
}

.form-header h2 {
    font-family: 'Bebas Neue', cursive !important;
    font-size: 2.5rem !important;
    letter-spacing: 2px !important;
    margin-bottom: 10px !important;
    color: white !important;
}

.form-header h2::after {
    display: none !important; /* Entfernt die Linie unter dem Titel */
}

.form-header p {
    opacity: 0.9 !important;
    font-size: 1.1rem !important;
    margin-bottom: 0 !important;
}

/* Form Content */
.form-content {
    padding: 40px !important;
}

/* Booking Info Box */
.booking-info {
    background: #f8f9fa !important;
    border-left: 4px solid #1F4E2C !important;
    padding: 20px !important;
    margin-bottom: 30px !important;
    border-radius: 5px !important;
}

.booking-info h3 {
    color: #1F4E2C !important;
    margin-bottom: 10px !important;
    font-size: 1.2rem !important;
}

.booking-info p {
    color: #666 !important;
    margin-bottom: 8px !important;
}

/* Enhanced Form Groups */
.booking-form-section .form-group {
    margin-bottom: 25px !important;
}

.booking-form-section .form-group label {
    display: block !important;
    color: #1F4E2C !important;
    font-weight: 500 !important;
    margin-bottom: 8px !important;
    font-size: 1rem !important;
}

.required {
    color: #e74c3c !important;
}

/* Enhanced Form Inputs */
.booking-form-section .form-input,
.booking-form-section .form-select,
.booking-form-section textarea {
    width: 100% !important;
    padding: 15px !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    font-family: inherit !important;
    transition: all 0.3s ease !important;
    background: white !important;
    margin-bottom: 0 !important; /* Override existing margin */
}

.booking-form-section .form-input:focus,
.booking-form-section .form-select:focus,
.booking-form-section textarea:focus {
    outline: none !important;
    border-color: #1F4E2C !important;
    box-shadow: 0 0 0 3px rgba(31, 78, 44, 0.1) !important;
}

.booking-form-section .form-input:invalid {
    border-color: #e74c3c !important;
}

.booking-form-section .form-input:valid {
    border-color: #27ae60 !important;
}

.booking-form-section textarea {
    min-height: 120px !important;
    resize: vertical !important;
}

/* Date Inputs Grid */
.date-inputs {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
}

/* Enhanced Primary Button for Booking Form */
.booking-form-section .btn-primary {
    width: 100% !important;
    background: linear-gradient(135deg, #1F4E2C, #2E7A4F) !important;
    color: white !important;
    border: none !important;
    padding: 18px 30px !important;
    border-radius: 8px !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-family: inherit !important;
    margin-top: 20px !important;
    box-shadow: 0 4px 15px rgba(31, 78, 44, 0.3) !important;
}

.booking-form-section .btn-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(31, 78, 44, 0.3) !important;
    background: linear-gradient(135deg, #2a6b3d, #3e8c5a) !important;
}

.booking-form-section .btn-primary:active {
    transform: translateY(0) !important;
}

/* Error and Success Messages */
.error-message {
    background: #fff5f5 !important;
    border: 1px solid #fed7d7 !important;
    color: #c53030 !important;
    padding: 15px !important;
    border-radius: 8px !important;
    margin-bottom: 20px !important;
    display: none !important;
}

.success-message {
    background: #f0fff4 !important;
    border: 1px solid #c6f6d5 !important;
    color: #2d7748 !important;
    padding: 15px !important;
    border-radius: 8px !important;
    margin-bottom: 20px !important;
    display: none !important;
}

/* Responsive Adjustments for Booking Form */
@media (max-width: 768px) {
    .booking-form-container {
        margin: 10px !important;
        border-radius: 10px !important;
    }
    
    .form-content {
        padding: 20px !important;
    }
    
    .date-inputs {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .form-header h2 {
        font-size: 2rem !important;
    }
    
    .form-header {
        padding: 20px !important;
    }
    
    .booking-form-section {
        padding: 40px 0 !important;
    }
}

/* Accessibility Improvements */
.booking-form-section .form-input:focus,
.booking-form-section .form-select:focus,
.booking-form-section textarea:focus {
    outline: 3px solid rgba(31, 78, 44, 0.3) !important;
    outline-offset: 2px !important;
}

/* Readonly styling for checkout date */
.booking-form-section .form-input[readonly] {
    background-color: #f8f9fa !important;
    cursor: not-allowed !important;
    opacity: 0.8 !important;
}

/* Loading state for the form */
.booking-form-section .btn-primary.loading {
    position: relative !important;
    color: transparent !important;
    pointer-events: none !important;
}

.booking-form-section .btn-primary.loading::after {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 20px !important;
    height: 20px !important;
    margin-top: -10px !important;
    margin-left: -10px !important;
    border: 2px solid transparent !important;
    border-top-color: #FFFFFF !important;
    border-radius: 50% !important;
    animation: btn-spin 1s linear infinite !important;
}

/*Bildergalerie CSS */

.gallery-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 250px;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Lightbox Styles */

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    max-height: 80%;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 3rem;
    color: white;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: opacity 0.3s ease;
}

.lightbox-close:hover {
    opacity: 0.7;
}

.lightbox-caption {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    background: rgba(0,0,0,0.7);
    padding: 1rem 2rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.lightbox-caption h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: white;
}

.lightbox-caption p {
    opacity: 0.9;
    margin: 0;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-50%) scale(1.1);
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .lightbox-content {
        width: 95%;
        max-height: 70%;
    }
    
    .lightbox-close {
        top: 1rem;
        right: 1.5rem;
        font-size: 2rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 1.5rem;
        padding: 0.8rem 1rem;
    }
    
    .lightbox-prev {
        left: 1rem;
    }
    
    .lightbox-next {
        right: 1rem;
    }
    
    .lightbox-caption {
        bottom: 1rem;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .gallery-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    
    .gallery-overlay h3 {
        font-size: 1.1rem;
    }
    
    .gallery-overlay p {
        font-size: 0.8rem;
    }
}

/* Mobile Menu - Hamburger Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}

/*verhindere Scroll wenn das Menu offen ist */
body.menu-open {
    overflow: hidden;
}

/* Tablet/Medium screens - kleinere Schrift und Spacing */
@media (max-width: 1100px) {
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a {
        font-size: 0.9rem;
        padding: 0.5rem 0.8rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .logo-img {
        height: 35px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        z-index: 1003;
    }

    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #1F4E2C;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1002;
        padding: 2rem;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.3s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links.active li:nth-child(1) {transition-delay: 0.1s;}
    .nav-links.active li:nth-child(2) {transition-delay: 0.2s;}
    .nav-links.active li:nth-child(3) {transition-delay: 0.3s;}
    .nav-links.active li:nth-child(4) {transition-delay: 0.4s;}
    .nav-links.active li:nth-child(5) {transition-delay: 0.5s;}
    .nav-links.active li:nth-child(6) {transition-delay: 0.6s;}

    .nav-links a {
        display: block;
        width: 100%;
        text-align: center;
        padding: 1rem 2rem;
        min-height: 44px; 
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 3rem 2rem;
    }

    .section-title {
        font-size: 2.2rem; 
    }
}

.scroll-indicator {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Links in der Kontakt-Section */
.contact-section a {
    color: #90EE90;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-section a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

.contact-section a:active {
    color: #7FD87F;
}

/* Links im Footer */
.footer a {
    color: #90EE90;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

.footer a:active {
    color: #7FD87F;
}

/* Impressum & Datenschutz Seite */
.impressum-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: white;
    margin-top: 2rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.page-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    color: #1F4E2C;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    letter-spacing: 2px;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #1F4E2C;
}

.quick-links {
    background: linear-gradient(135deg, #E8D8C3, #F5F5F5);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    border-left: 4px solid #1F4E2C;
}

.quick-links h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    color: #1F4E5C;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.quick-links ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.quick-links li {
    margin-bottom: 0.5rem;
}

.quick-links a {
    color: #1F4E2C;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.5rem 1 rem;
    border-radius: 20px;
}

.quick-links a:hover {
    background: #1F4E2C;
    color: white;
    transform: translateX(5px);
}

address {
    background: linear-gradient(135deg, #1F4E2C, #2a6b3d);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    font-style: normal;
    line-height: 1.8;
}

address strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #90ee90;
}

address a {
    color: #90EE90;
    text-decoration: none;
    transition: color 0.3s ease;
}

address a:hover {
    color: white;
    text-decoration: underline;
}

.highlight-box {
    background: rgba(31, 78, 44, 0.05);
    border-left: 4px solid #1F4E2C;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 10px 10px 0;
}

.highlight-box p {
    margin-bottom: 0;
    color: #1F4E2C;
    font-weight: 500;
}

.content-section {
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.content-section:not(:last-child) {
    border-bottom: 1px solid #E8D8C3;
}

.content-section h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: #1F4E2C;
    margin: 3rem 0 1.5rem 0;
    border-bottom: 2px solid #E8D8C3;
    padding-bottom: 0.5rem;
    letter-spacing: 1px;
}

.content-section h3 {
    color: #1F4E2C;
    margin: 1.5rem 0 0.5rem 0;
    font-weight: 500;
    font-size: 1.3rem;
}

.content-section p {
    margin-bottom: 1rem;
    color: #666;
    text-align: justify;
}

.content-section ul, 
.content-section ol {
    margin-bottom: 1rem;
    color: #666;
    margin-left: 1.5rem;
}

.content-section ul li, 
.content-section ol li {
    margin-bottom: 0.5rem;
}

.important-notice {
    background: linear-gradient(135deg, #2E7A4F, #1F4E2C);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
}

.important-notice h3 {
    color: #90EE90;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.important-notice p {
    color: white;
    margin-bottom: 0;
}

.navigation-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.nav-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.nav-button.primary {
    background: #1F4E2C;
    color: white;
}

.nav-button.primary:hover {
    background: #2a6b3d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(31, 78, 44, 0.3);
}

.nav-button.secondary {
    background: white;
    color: #1F4E2C;
    border: 2px solid #1F4E2C;
}

.nav-button.secondary:hover {
    background: #1F4E2C;
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .impressum-container {
        margin: 1rem;
        padding: 2rem 1.5rem;
    }

    .page-title {
        font-size: 2.2rem;
    }

    .content-section h2 {
        font-size: 2rem;
    }

    .quick-links ul {
        grid-template-columns: 1fr;
    }

    .navigation-buttons {
        flex-direction: column;
        align-items: center;
    }

    .nav-button {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }
}