/**
 * Red Rabbit Club - Hauptstylesheet
 * 
 * Modernes Design mit eckigen Elementen an den oberen linken und unteren rechten Ecken
 */

/* ============== Variablen und Basis-Setup ============== */
:root {
    --primary: #e60000;
    --primary-dark: #c50000;
    --primary-light: #ff4d4d;
    --secondary: #1a1a1a;
    --dark: #0a0a0a;
    --light: #f8f8f8;
    --gray: #888888;
    --gray-dark: #333333;
    --gray-light: #dddddd;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8;
    
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    
    --transition: all 0.3s ease;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* ============== Globale Stile ============== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--light);
    background-color: var(--dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

p {
    margin-bottom: 20px;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-light);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

@media (min-width: 768px) {
    .section {
        padding: 100px 0;
    }
}

/* ============== Typografie ============== */
.section-title {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.section-title span {
    color: var(--primary);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary);
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-primary {
    color: var(--primary);
}

.text-light {
    color: var(--light);
}

.text-gray {
    color: var(--gray);
}

/* ============== Buttons mit eckiger Gestaltung ============== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary);
    color: var(--light);
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    position: relative;
    /* Keine Abrundung der Kanten, stattdessen eckig */
    /* Die obere linke und untere rechte Ecke bleiben eckig */
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 0);
}

.btn:hover {
    background-color: var(--primary-dark);
    color: var(--light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(230, 0, 0, 0.3);
}

.btn.outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 0);
}

.btn.outline:hover {
    background-color: var(--primary);
    color: var(--light);
}

.btn.btn-secondary {
    background-color: var(--secondary);
}

.btn.btn-secondary:hover {
    background-color: var(--gray-dark);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 16px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 12px;
}

/* ============== Header und Navigation ============== */
/**
 * Red Rabbit Club - Erweiterte Menü-Stile
 * 
 * Stylisches Menü mit sanften permanenten Effekten,
 * verbesserten Hover-Zuständen und moderneren Submenüs
 */

/* ============== Header und Navigation ============== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(230, 0, 0, 0.1);
}

header.scrolled {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
    background-color: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid rgba(230, 0, 0, 0.2);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    transition: all 0.3s ease;
}

/* Logo-Styling */
.logo {
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-secondary);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
}

.logo img {
    height: 40px;
    margin-right: 15px;
    width: auto;
    transition: all 0.4s ease;
    filter: drop-shadow(0 3px 5px rgba(230, 0, 0, 0.3));
}

.logo a {
    color: var(--light);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.logo a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.logo:hover a::after {
    transform: scaleX(1);
}

.logo span {
    color: var(--primary);
    position: relative;
}

/* Sanfter Glow-Effekt für Logo-Span beim Hovern */
.logo:hover span {
    text-shadow: 0 0 10px rgba(230, 0, 0, 0.5);
}

.logo:hover img {
    transform: translateY(-2px);
    filter: drop-shadow(0 5px 10px rgba(230, 0, 0, 0.5));
}

/* Primäre Navigation */
.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-links li {
    position: relative;
    margin-left: 35px;
    padding: 5px 0;
}

.nav-links a {
    color: var(--light);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
    transition: all 0.3s ease;
}

/* Eleganter Hover-Effekt für Hauptmenü-Links */
.nav-links a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary);
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-links a:hover::before,
.nav-links li.active > a::before {
    visibility: visible;
    transform: scaleX(1);
}

.nav-links a:hover,
.nav-links li.active > a {
    color: var(--primary);
    text-shadow: 0 0 5px rgba(230, 0, 0, 0.3);
}

/* Stylishes Submenu ohne Punkte */
.submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 220px;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    padding: 15px 0;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(230, 0, 0, 0.1);
    z-index: 1001;
    overflow: hidden;
}

/* Pfeil für das Submenü */
.submenu::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background-color: rgba(26, 26, 26, 0.95);
    border-top: 1px solid rgba(230, 0, 0, 0.1);
    border-left: 1px solid rgba(230, 0, 0, 0.1);
}

/* Border an der linken Seite */

.submenu::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), transparent);
}

.nav-links li:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.submenu li {
    margin: 0;
    padding: 0;
    text-align: center;
    position: relative;
}

.submenu a {
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0;
    display: block;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.submenu a::before {
    display: none;
}

/* Hover-Effekt für Submenü-Links */
.submenu a:hover,
.submenu li.active > a {
    background-color: rgba(230, 0, 0, 0.1);
    color: var(--primary);
    text-shadow: 0 0 5px rgba(230, 0, 0, 0.3);
}

/* Effekt für Submenü-Links nacheinander */
.submenu li {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    transition-delay: 0s;
}

.nav-links li:hover .submenu li {
    opacity: 1;
    transform: translateY(0);
}

/* Dynamische Verzögerung für jedes Submenü-Element */
.nav-links li:hover .submenu li:nth-child(1) {
    transition-delay: 0.05s;
}

.nav-links li:hover .submenu li:nth-child(2) {
    transition-delay: 0.1s;
}

.nav-links li:hover .submenu li:nth-child(3) {
    transition-delay: 0.15s;
}

.nav-links li:hover .submenu li:nth-child(4) {
    transition-delay: 0.2s;
}

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--light);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(26, 26, 26, 0.5);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.mobile-nav-toggle:hover {
    background-color: rgba(230, 0, 0, 0.2);
    box-shadow: 0 5px 15px rgba(230, 0, 0, 0.3);
    transform: translateY(-2px);
}

/* Responsives Menü */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background-color: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 100px 0 30px;
        transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        z-index: 999;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
        border-left: 1px solid rgba(230, 0, 0, 0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 0;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        transition-delay: 0s;
        width: 100%;
    }
    
    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    /* Dynamische Verzögerung für jedes Menü-Element */
    .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 a {
        display: block;
        padding: 12px 25px;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-links a::before {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .submenu {
        position: static;
        transform: none !important; /* Verhindert das Verschieben nach links */
        left: 0 !important; /* Erzwingt die Ausrichtung links */
        width: 100%; /* Volle Breite im mobilen Modus */
    }
    
    /* Links im Submenu korrigieren */
    .submenu a {
        text-decoration: none !important; /* Durchstreichung entfernen */
    }
    
    /* Hover-Effekt für Submenu-Links anpassen */
    .submenu a:hover, 
    .submenu li.active > a {
        text-decoration: none !important; /* Durchstreichung beim Hover entfernen */
        text-shadow: none; /* Text-Schatten entfernen */
    }
    
    /* Kleiner Pfeil vor Submenu-Links */
    .submenu a::before {
        display: inline-block !important; /* Pfeil anzeigen */
    }
    
    /* Untermenü-Animation für mobile Geräte anpassen */
    .nav-links li:hover .submenu {
        transform: none !important;
    }
    
    .nav-links li:has(.submenu) > a::after {
        content: '\f107';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        position: absolute;
        right: 25px;
        top: 50%;
        transform: translateY(-50%);
        transition: transform 0.3s ease;
    }
    
    .nav-links li:has(.submenu.active) > a::after {
        transform: translateY(-50%) rotate(180deg);
    }
}

/* Glow-Effekt für mobiles Menüsymbol */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(230, 0, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(230, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(230, 0, 0, 0);
    }
}

/* Pulsierender Effekt für den mobilen Menübutton */
@media (max-width: 992px) {
    .mobile-nav-toggle {
        animation: pulse-glow 2s infinite;
    }
}

/* Verbesserungen für kleinere Bildschirme */
@media (max-width: 576px) {
    .logo img {
        height: 30px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .mobile-nav-toggle {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
}

/* ============== Hero Section ============== */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    z-index: 1;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 4.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
}

/* ============== Events Section ============== */
.events-section {
    background-color: var(--secondary);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

/* Event Cards mit eckiger Gestaltung an oberer linker und unterer rechter Ecke */
.event-card {
    background-color: var(--dark);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 0);
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.event-image {
    height: 200px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-details {
    padding: 25px;
}

.event-date {
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 10px;
}

.event-title {
    font-size: 20px;
    margin-bottom: 15px;
}

.event-description {
    font-size: 15px;
    margin-bottom: 20px;
    opacity: 0.8;
    line-height: 1.6;
}

.events-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 10px;
}

.filter-btn {
    padding: 8px 20px;
    background-color: transparent;
    border: 1px solid var(--gray);
    color: var(--light);
    cursor: pointer;
    transition: var(--transition);
    /* Eckige Gestaltung wie Buttons */
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 0);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* ============== Gallery Section ============== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-auto-rows: 250px;
    gap: 15px;
}

/* Gallerie-Items mit eckiger Gestaltung */
.gallery-item {
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 0);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    color: var(--light);
    font-size: 18px;
}

@media (max-width: 768px) {
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* ============== VIP Section ============== */
.vip-section {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7)), url('../images/vip-bg.webp') center/cover no-repeat;
    text-align: center;
}

.vip-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* VIP Features mit eckiger Gestaltung */
.vip-feature {
    background-color: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    transition: var(--transition);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 0);
}

.vip-feature:hover {
    background-color: rgba(230, 0, 0, 0.1);
    transform: translateY(-10px);
}

.vip-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}

.vip-title {
    font-size: 22px;
    margin-bottom: 15px;
}

.vip-description {
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.6;
}

/* ============== Contact Section ============== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

@media (min-width: 768px) {
    .contact-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 25px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    /* Eckige Kontakt-Icons */
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 0);
}

.contact-text {
    font-size: 16px;
}

.social-media {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
    color: var(--light);
    /* Eckige Social Media Icons */
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 0);
}

.social-icon:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
}

/* Kontaktformular mit eckiger Gestaltung */
.contact-form {
    background-color: var(--secondary);
    padding: 30px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 0);
}

@media (min-width: 768px) {
    .contact-form {
        padding: 40px;
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: none;
    background-color: var(--dark);
    color: var(--light);
    font-size: 16px;
    /* Eckige Form-Elemente */
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 0);
}

.form-control:focus {
    outline: 2px solid var(--primary);
}

.form-control::placeholder {
    color: var(--gray);
}

textarea.form-control {
    height: 150px;
    resize: none;
}

/* Form validation styles */
.form-control.is-invalid {
    border: 1px solid var(--danger);
}

.invalid-feedback {
    color: var(--danger);
    font-size: 14px;
    margin-top: 5px;
}

/* Alerts mit eckiger Gestaltung */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 0);
}

.alert-success {
    background-color: rgba(40, 167, 69, 0.2);
    border: 1px solid var(--success);
    color: var(--success);
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.2);
    border: 1px solid var(--danger);
    color: var(--danger);
}

.alert-warning {
    background-color: rgba(255, 193, 7, 0.2);
    border: 1px solid var(--warning);
    color: var(--warning);
}

.alert-info {
    background-color: rgba(23, 162, 184, 0.2);
    border: 1px solid var(--info);
    color: var(--info);
}

/* ============== Footer ============== */
footer {
    background-color: var(--secondary);
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

@media (min-width: 576px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: var(--font-secondary);
}

.footer-logo span {
    color: var(--primary);
}

.footer-text {
    font-size: 15px;
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-title {
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 50px;
    background-color: var(--primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--light);
    opacity: 0.8;
    font-size: 15px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    opacity: 1;
    padding-left: 5px;
}

.footer-newsletter .form-control {
    margin-bottom: 15px;
}

.copyright {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    opacity: 0.7;
}

/* ============== Reservation Page ============== */
.reservation-hero {
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), url('../images/reservation-bg.webp') center/cover no-repeat;
}

/* Reservierungsformular mit eckiger Gestaltung */
.reservation-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: var(--secondary);
    margin-top: -100px;
    position: relative;
    z-index: 2;
    box-shadow: var(--box-shadow);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 0);
}

.reservation-form .form-title {
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============== Animations ============== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeIn 0.8s ease forwards;
}

/* ============== Utility Classes ============== */
.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 10px;
}

.mb-2 {
    margin-bottom: 20px;
}

.mb-3 {
    margin-bottom: 30px;
}

.mb-4 {
    margin-bottom: 40px;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 10px;
}

.mt-2 {
    margin-top: 20px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-5 {
    margin-top: 50px;
}

.py-1 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.py-2 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.py-3 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.py-4 {
    padding-top: 40px;
    padding-bottom: 40px;
}

.py-5 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.px-1 {
    padding-left: 10px;
    padding-right: 10px;
}

.px-2 {
    padding-left: 20px;
    padding-right: 20px;
}

.px-3 {
    padding-left: 30px;
    padding-right: 30px;
}

.px-4 {
    padding-left: 40px;
    padding-right: 40px;
}

.px-5 {
    padding-left: 50px;
    padding-right: 50px;
}
@media (max-width: 576px) {
    .logo img {
        height: 30px;
        margin-right: 8px;
    }
    
    .logo {
        font-size: 20px;
    }
}
h1, h2, h3, h4, h5, h6 {
    /* Erlaubt Umbrüche für zu lange Wörter */
    word-wrap: break-word;
    /* Aktiviert verbesserte Silbentrennung, wo verfügbar */
    hyphens: auto;
    /* Überlauftexte abschneiden und mit Ellipsen anzeigen */
    overflow-wrap: break-word;
}
@media (max-width: 576px) {
    h1 {
        font-size: 2.2rem; /* Kleinere Schriftgröße auf Mobilgeräten */
        line-height: 1.2;
    }
    
    h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    h3 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
}