/* Impressum Page Styles */

/* Normal scroll behavior for impressum page */
.impressum-page {
    overflow-y: auto;
    scroll-behavior: smooth;
}

.impressum-page .scroll-container {
    height: auto;
    overflow-y: visible;
    scroll-snap-type: none;
}

.impressum-page section {
    scroll-snap-align: none;
    scroll-snap-stop: normal;
    min-height: auto;
    padding: 120px 0 60px 0; /* Account for fixed navbar */
}

/* Impressum Content */
.impressum-content {
    padding-top: 76px; /* Height of navbar */
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
}

.impressum-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.impressum-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    color: #e43147;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.impressum-section {
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.impressum-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    color: #e43147;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.impressum-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.2rem;
    color: #e43147;
    margin: 25px 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.impressum-section p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #f0f0f0;
}

.impressum-section strong {
    color: #e43147;
    font-weight: 600;
}

.back-link {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #e43147;
    text-decoration: none;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border: 2px solid #e43147;
    border-radius: 5px;
}

.back-link:hover {
    color: white;
    background-color: #e43147;
    text-decoration: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .impressum-wrapper {
        padding: 20px 15px;
    }
    
    .impressum-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .impressum-section {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .impressum-section h2 {
        font-size: 1.5rem;
    }
    
    .impressum-section h3 {
        font-size: 1.1rem;
    }
    
    .impressum-section p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .impressum-title {
        font-size: 1.8rem;
    }
    
    .impressum-section {
        padding: 15px;
    }
    
    .impressum-section h2 {
        font-size: 1.3rem;
    }
    
    .impressum-section h3 {
        font-size: 1rem;
    }
    
    .impressum-section p {
        font-size: 0.9rem;
    }
}

/* Hide scroll arrows on impressum page */
.impressum-page .fixed-arrows {
    display: none;
}

/* Ensure fixed elements work properly */
.impressum-page .fixed-logo-container,
.impressum-page .fixed-instagram-container,
.impressum-page .fixed-reservation {
    position: fixed;
    z-index: 1000;
}

/* Smooth transitions */
.impressum-section {
    transition: all 0.3s ease;
}

.impressum-section:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Print styles */
@media print {
    .impressum-page .fixed-logo-container,
    .impressum-page .fixed-instagram-container,
    .impressum-page .fixed-reservation,
    .impressum-page .navbar {
        display: none;
    }
    
    .impressum-content {
        padding-top: 0;
        background: white;
        color: black;
    }
    
    .impressum-section {
        background: white;
        border: 1px solid #ccc;
        color: black;
    }
    
    .impressum-title,
    .impressum-section h2,
    .impressum-section h3 {
        color: black;
    }
    
    .impressum-section p {
        color: black;
    }
} 