/* Google Fonts - Optional, aber empfohlen für ein professionelles Schriftbild */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* Globale Stile und Variablen */
:root {
    --primary-color: #054893; 
    --primary-hover: #0b5ed7;
    --dark-color: #212529;    
    --light-color: #f8f9fa;   
    --body-font: 'Poppins', sans-serif;
    --border-radius: 0.5rem;
}

.btn-primary{
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.text-primary{
    color: var(--primary-color) !important;
}

.bg-primary{
    background-color: var(--primary-color) !important;
}

.btn-outline-primary{
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-outline-primary:hover{
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color);
    color: white !important;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

/* Navbar */
.navbar-brand {
    font-size: 1.5rem;
}
.navbar .nav-link {
    transition: color 0.3s ease;
}
.navbar .nav-link:hover, .navbar .nav-link.active {
    color: var(--primary-color) !important;
}
.dropdown-menu {
    border-radius: var(--border-radius);
    border: 1px solid #eee;
}

/* Mobiles Menü Styling (jetzt weiß/hell) */
.offcanvas {
    background-color: #fff; /* Geändert von dark-color */
}
@media (max-width: 991.98px) {
    .offcanvas-end {
        width: 300px !important; 
    }
}
.offcanvas-header {
    border-bottom: 1px solid #dee2e6; /* Hellere Border */
}
.offcanvas-body .nav-link {
    color: var(--dark-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(10, 20, 30, 0.7), rgba(10, 20, 30, 0.7)), url('/assets/images/background.jpeg') no-repeat center center;
    background-size: cover;
    height: 90vh;
    min-height: 500px;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

/* Sektionen für besseren Abstand */
section {
    padding: 80px 0;
    overflow-x: hidden;
}

/* Section Divider Shapes */
.angled-top-left {
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
    padding-top: 120px;
}
.angled-bottom-right {
     clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
     padding-bottom: 120px;
}

/* Feature Cards (Vorteile) */
.feature-card {
    padding: 2rem;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.1);
}
.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    font-size: 2rem;
    box-shadow: 0 0 20px rgba(13, 110, 253, 0.3);
}

/* Anleitung "So geht's" */
.step-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border: 4px solid #fff;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}
#anleitung.bg-light .step-icon {
    border-color: var(--light-color);
}

/* NEU: Bildergalerie */
.gallery-img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 1rem 2rem rgba(0,0,0,0.15) !important;
}

/* Service Icons */
.service-icon {
    width: 80px;
    height: 80px;
    background-color: #fff;
    color: var(--primary-color);
    font-size: 2.5rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
    transition: all 0.3s ease;
}
.service-icon:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}

/* Payment Logos (ohne Graustufen) */
.payment-logo {
    height: 40px;
    width: auto;
    /* Graustufen-Filter entfernt für farbige Darstellung */
}

/* NEU: "Bremen Entdecken" Card Styling */
.discover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.discover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 .75rem 1.5rem rgba(0,0,0,.1) !important;
}
.discover-card .card-img-top {
    height: 200px;
    object-fit: cover;
}


/* Buchungs-Platzhalter */
.booking-placeholder {
    border: 2px dashed #ccc;
    padding: 40px;
    border-radius: var(--border-radius);
    background-color: #fff;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.05);
}

/* Google Maps Container */
.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 0 25px rgba(0,0,0,0.1);
}

/* FAQ Accordion */
.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
}
.accordion-button:focus {
    box-shadow: 0 0 0 .25rem rgba(13,110,253,.25);
}
.accordion-item {
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid #dee2e6;
}
.accordion-header {
    margin-bottom: 0;
}

/* Footer & Social Icons */
footer a {
    text-decoration: none;
    transition: color 0.2s;
}
footer a:hover {
    color: #fff !important;
}
.social-icons a i {
    transition: transform 0.3s ease;
}
.social-icons a:hover i {
    transform: scale(1.2);
}

/* Scroll-to-Top Button */
#scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1030;
    display: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    transform: translateY(20px);
}
#scrollToTopBtn.show {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   Cookie Banner
   ========================================= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1050; /* Stellt sicher, dass der Banner über anderen Elementen liegt */
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    pointer-events: none; /* Verhindert Interaktion, wenn unsichtbar */
}

.cookie-banner.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto; /* Erlaubt Interaktion, wenn sichtbar */
}