/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #13325d;
    --secondary-color: #1a4278;
    --dark-bg: #ffffff;
    --dark-bg-2: #f5f5f5;
    --dark-bg-3: #e8e8e8;
    --text-light: #333333;
    --text-gray: #666666;
    --text-dark: #ffffff;
    --accent-color: #2a5a9e;
    --cream-bg: #e6ddb2;
    --cream-light: #f3eedc;
    --overlay-dark: rgba(255, 255, 255, 0.9);
    --overlay-darker: rgba(255, 255, 255, 0.95);
    --transition: all 0.3s ease;

    /* Legacy variable names for compatibility */
    --gold-primary: #13325d;
    --gold-secondary: #2a5a9e;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .nav-logo,
.navbar.scrolled .nav-link {
    color: #333333;
}

.navbar.scrolled .nav-link:hover {
    color: var(--primary-color);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.nav-logo:hover {
    color: var(--primary-color);
}

.nav-logo:hover img {
    transform: scale(1.05);
}

.nav-logo img {
    height: 70px;
    width: auto;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 20px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    color: #ffffff !important;
}

.hero-buttons .btn-secondary {
    color: #ffffff !important;
    border-color: #ffffff;
}

.hero-buttons .btn-secondary:hover {
    background: #ffffff;
    color: #333333 !important;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: #ffffff !important;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-color) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(19, 50, 93, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #333333;
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 50px;
    font-size: 1.1rem;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.title-divider {
    width: 100px;
    height: 3px;
    background: var(--primary-color);
    margin: 0 auto 20px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    font-style: italic;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--cream-light);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 50px;
}

.about-card {
    background: var(--dark-bg);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.about-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.about-icon i {
    font-size: 2rem;
    color: var(--dark-bg);
}

.about-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.about-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-gray);
}

.about-cta {
    text-align: center;
}

/* Legacy about styles (if needed) */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    text-align: center;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-gray);
}

.about-placeholder {
    font-style: italic;
}

/* Menu Section */
.menu-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.section-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-darker);
    z-index: 2;
}

.menu-section .container {
    position: relative;
    z-index: 3;
}

.menu-content {
    text-align: center;
}

.menu-buttons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.menu-card {
    background: var(--cream-light);
    padding: 40px 30px;
    border-radius: 15px;
    border: 2px solid rgba(19, 50, 93, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.menu-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: 0 10px 40px rgba(19, 50, 93, 0.3);
}

.menu-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.menu-card-icon i {
    font-size: 2rem;
    color: #fff;
}

.menu-card h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.menu-card p {
    color: #333;
    margin-bottom: 15px;
    line-height: 1.6;
}

.menu-card .btn {
    margin-top: 20px;
}

.lunch-special {
    border-color: rgba(19, 50, 93, 0.5);
    background: var(--cream-bg);
}

.lunch-time {
    color: var(--gold-primary);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.lunch-details {
    font-size: 0.95rem;
    color: #ddd;
}

.lunch-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin: 15px 0 5px 0;
}

.lunch-note {
    font-size: 0.85rem;
    color: #999;
    font-style: italic;
    margin-bottom: 10px;
}

.btn-secondary {
    background: transparent;
    color: var(--gold-primary);
    border: 2px solid var(--gold-primary);
}

.btn-secondary:hover {
    background: var(--gold-primary);
    color: #000;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: var(--dark-bg);
}

.gallery-slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
}

.gallery-slider {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-slide.active {
    opacity: 1;
    z-index: 1;
}

.gallery-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: var(--dark-bg);
    border: none;
    padding: 20px 25px;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 5px;
    transition: var(--transition);
    z-index: 10;
}

.slider-btn:hover {
    background: var(--accent-color);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

.slider-dot:hover {
    background: var(--primary-color);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: var(--cream-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--dark-bg);
    border-radius: 10px;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--dark-bg);
}

.feature-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Reservation Section */
.reservation-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.reservation-section .container {
    position: relative;
    z-index: 3;
}

.reservation-content {
    max-width: 800px;
    margin: 0 auto;
}

.reservation-form {
    background: var(--dark-bg-2);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.reservation-form>.form-group:first-child {
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.form-group label i {
    margin-right: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid var(--dark-bg-3);
    border-radius: 5px;
    background: var(--dark-bg);
    color: var(--text-light);
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

/* Date input specific styling */
.form-group input[type="date"] {
    color-scheme: light;
    position: relative;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2313325d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
    cursor: pointer;
    width: 24px;
    height: 24px;
    opacity: 1;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 0.8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Flatpickr Calendar Styling */
.flatpickr-calendar {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    font-family: 'Raleway', sans-serif;
}

.flatpickr-months {
    background: var(--primary-color);
    border-radius: 8px 8px 0 0;
}

.flatpickr-month {
    background: var(--primary-color);
    color: #ffffff;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    background: var(--primary-color);
    color: #ffffff;
    font-weight: 600;
}

.flatpickr-current-month .numInputWrapper {
    color: #ffffff;
}

.flatpickr-current-month .numInputWrapper span {
    border-color: rgba(255, 255, 255, 0.3);
}

.flatpickr-current-month .numInputWrapper span:hover {
    background: rgba(255, 255, 255, 0.1);
}

.flatpickr-prev-month,
.flatpickr-next-month {
    color: #ffffff !important;
    fill: #ffffff !important;
}

.flatpickr-prev-month:hover,
.flatpickr-next-month:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

.flatpickr-weekdays {
    background: #f8f9fa;
}

.flatpickr-weekday {
    color: var(--primary-color);
    font-weight: 600;
}

.flatpickr-day {
    color: #333333;
    border-radius: 5px;
}

.flatpickr-day:hover:not(.flatpickr-disabled):not(.selected) {
    background: #f0f0f0;
    border-color: #f0f0f0;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.flatpickr-day.today {
    border-color: var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
}

.flatpickr-day.today:hover {
    background: rgba(19, 50, 93, 0.1);
}

.flatpickr-day.disabled,
.flatpickr-day.disabled:hover {
    color: #cccccc !important;
    background: #f9f9f9;
    cursor: not-allowed;
    text-decoration: line-through;
}

.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
    color: #cccccc;
}

/* Flatpickr input styling */
.flatpickr-input {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
}

/* Checkbox Group */
.checkbox-group {
    margin: 30px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.checkbox-text {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.checkbox-text a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.checkbox-text a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.reservation-form button[type="submit"] {
    width: 100%;
    margin-top: 20px;
}

/* Hours Section */
.hours-section {
    padding: 100px 0;
    background: var(--dark-bg-2);
}

.hours-grid {
    max-width: 600px;
    margin: 0 auto;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--dark-bg-3);
    transition: var(--transition);
}

.hours-item:hover {
    background: var(--dark-bg-3);
    padding-left: 30px;
}

.hours-item .day {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.hours-item .time {
    color: var(--text-gray);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--cream-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--dark-bg);
}

.contact-details h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-details p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.contact-details a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--primary-color);
}

.contact-map {
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
}

/* Footer */
.footer {
    background: var(--dark-bg-2);
    padding: 60px 0 30px;
    border-top: 1px solid var(--dark-bg-3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 100px;
    margin-bottom: 20px;
}

.footer-logo p {
    color: var(--text-gray);
    font-style: italic;
    font-size: 1.1rem;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--text-gray);
    margin-bottom: 10px;
}

.footer-contact a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--dark-bg-3);
    color: var(--text-gray);
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 600;
}

.footer-bottom a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Impressum & Datenschutz Pages */
.impressum-section {
    padding: 150px 0 100px;
    background: var(--dark-bg);
    min-height: 100vh;
}

/* About Us Page */
.page-header {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
}

.page-header-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none" stroke="%23d4af37" stroke-width="0.5" opacity="0.1"/></svg>');
    opacity: 0.1;
    z-index: 2;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.6) 0%, rgba(10, 10, 10, 0.8) 100%);
    z-index: 2;
}

.page-header .container {
    position: relative;
    z-index: 3;
}

.page-title {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.page-subtitle {
    font-size: 1.3rem;
    color: #ffffff;
    font-style: italic;
}

/* About Page Content */
.about-page-section {
    padding: 80px 0;
    background: var(--dark-bg);
}

.story-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    padding: 0 20px;
}

.story-block:last-child {
    margin-bottom: 0;
}

.story-block.reverse {
    direction: rtl;
}

.story-block.reverse>* {
    direction: ltr;
}

.story-content {
    padding: 30px;
}

.story-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.story-icon i {
    font-size: 1.8rem;
    color: var(--dark-bg);
}

.story-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.story-content p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 18px;
}

.story-content p strong {
    color: var(--text-light);
}

.story-content p:last-child {
    margin-bottom: 0;
}

.story-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.story-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.story-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.story-image:hover img {
    transform: scale(1.05);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-bg-2) 0%, var(--dark-bg-3) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.impressum-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--dark-bg-2);
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.impressum-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
}

.impressum-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.impressum-content h3 {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-top: 30px;
    margin-bottom: 15px;
}

.impressum-content h4 {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-top: 20px;
    margin-bottom: 10px;
}

.impressum-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.impressum-content ul {
    color: var(--text-gray);
    line-height: 1.8;
    margin-left: 30px;
    margin-bottom: 15px;
}

.impressum-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.impressum-content a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.back-to-home {
    text-align: center;
    margin-top: 50px;
}

/* Notification */
.notification {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 20px 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    transition: top 0.5s ease;
}

.notification.show {
    top: 100px;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    font-size: 1.1rem;
}

.notification-content i {
    font-size: 1.5rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        gap: 30px;
    }

    .story-block {
        gap: 50px;
        margin-bottom: 80px;
    }

    .story-content h2 {
        font-size: 2rem;
    }

    .story-image img {
        height: 400px;
    }

    .page-title {
        font-size: 3rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--overlay-darker);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        gap: 0;
        padding: 20px 0;
        backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 15px 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .menu-buttons-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .menu-card {
        padding: 30px 20px;
    }

    .menu-card h3 {
        font-size: 1.6rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 40px;
    }

    .about-card {
        padding: 35px 25px;
    }

    .about-card h3 {
        font-size: 1.5rem;
    }

    .about-card p {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .reservation-form {
        padding: 30px 20px;
    }

    .gallery-slider {
        height: 400px;
    }

    .story-block {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
        padding: 0 10px;
    }

    .story-block.reverse {
        direction: ltr;
    }

    .story-content {
        padding: 15px;
    }

    .story-content h2 {
        font-size: 1.8rem;
    }

    .story-content p {
        font-size: 1rem;
    }

    .story-image img {
        height: 300px;
    }

    .story-icon {
        width: 60px;
        height: 60px;
    }

    .story-icon i {
        font-size: 1.5rem;
    }

    .page-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .page-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }

    .cta-section {
        padding: 60px 20px;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 350px;
    }

    .slider-btn {
        padding: 15px 18px;
        font-size: 1.2rem;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-map {
        height: 300px;
    }

    /* Impressum & Datenschutz - Tablet Optimization */
    .impressum-content {
        padding: 40px 30px;
        margin: 30px 20px;
    }

    .impressum-content h1 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .impressum-content h2 {
        font-size: 1.6rem;
    }

    .impressum-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 15px 20px;
    }

    .nav-logo {
        font-size: 1.2rem;
    }

    .nav-logo img {
        height: 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .gallery-slider {
        height: 300px;
    }

    .slider-btn {
        padding: 12px 15px;
        font-size: 1rem;
    }

    /* Impressum & Datenschutz - Mobile Optimization */
    .impressum-content {
        padding: 30px 20px;
        margin: 20px;
    }

    .impressum-content h1 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

    .impressum-content h2 {
        font-size: 1.4rem;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .impressum-content h3 {
        font-size: 1.2rem;
        margin-top: 20px;
        margin-bottom: 12px;
    }

    .impressum-content h4 {
        font-size: 1.1rem;
        margin-top: 15px;
        margin-bottom: 10px;
    }

    .impressum-content p,
    .impressum-content ul {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .impressum-content ul {
        margin-left: 20px;
    }

    .back-to-home {
        margin-top: 30px;
    }
}