 
/* ============================================================
   BCMSLite - Frontend Styles
   ------------------------------------------------------------
   Enthält Layout, Typografie, Formulare, Tabellen, Buttons,
   sowie Utility-Klassen zur Wiederverwendung im gesamten System.
   ============================================================ */

/* ---------------------------
   1. Schriftart einbinden
---------------------------- */
@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-Light.ttf') format('truetype');
    font-weight: 100;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-Bold.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-Regular.ttf') format('truetype');
    font-weight: 200;
}


/* CSS Variables */
:root {
    --primary-color: #0d519b;
    --primary-hover: color-mix(in srgb, var(--primary-color), black 15%);
    --text-color: #222222;
    --light-bg: #f8f9fa;
    --dark-bg: #1a1a2e;
    --white: #ffffff;
    --footer-bg: #212529;
    --navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230d519b' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    --border-width: 0px;
    --navbar-toggler-border-color: #0d519b;
}

/* General */
html {
    scroll-behavior: smooth;
}

body {
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

p {
    font-weight: 200;
}

ul {
    font-weight: 200;
}

/* Navbar */

.navbar-toggler-icon{
 background-image: var(--navbar-toggler-icon-bg);
}

.navbar-toggler {
    border: var(--border-width) solid var(--navbar-toggler-border-color);
w}

.navbar {
    background-color: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px);
    transition: background-color 0.3s ease;
}

.navbar-nav {
    align-items: flex-end;
}

.navbar.scrolled {
    background-color: rgb(149 149 149 / 95%) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-weight: 600;
    font-size: 1.5rem;
}

.navbar-brand .logo {
    height: 70px;
    width: auto;
}

.nav-link {
    font-weight: 600;
    font-size: 20px;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s ease;
    color: var(--text-color);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Content Sections */
.content-section {
    padding: 80px 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
    color: var(--text-color);
}

.section-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 1rem auto 0;
}

.column-heading {
    color: var(--primary-color);
    margin-bottom: 1rem;
    margin-top: 1rem;
    font-weight: 200;
}

.column-text {
    color: var(--text-color);;
}

.column-text p {
    margin-bottom: 1rem;
}

.column-text p:last-child {
    margin-bottom: 0;
}

.column-image {
    border-radius: 8px;
    margin-bottom: 1rem;
    margin-right: 1rem;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
}

/* Accordion Section */
.accordion-section {
    padding: 80px 0;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 8px !important;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    font-weight: 600;
    font-size: 20px;
    padding: 1.25rem;
    background-color: var(--white);
    color: var(--text-color);
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-size: 1rem;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    padding: 1.5rem;
    background-color: var(--white);
}

.accordion-body p {
    margin-bottom: 0.5rem;
}

.accordion-body p:last-child {
    margin-bottom: 0;
}


  .hours-wrap{
    max-width: 520px;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    color:#111;
  }
  .hours-title{
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 .6rem 0;
  }
  .hours-table{
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    overflow: hidden; /* keeps rounded corners */
    background: #fff;
  }
  .hours-table th,
  .hours-table td{
    padding: 12px 14px;
    text-align: left;
    vertical-align: top;
  }
  .hours-table thead th{
    background: #f6f7f9;
    font-weight: 700;
    font-size: .95rem;
    border-bottom: 1px solid #e6e6e6;
  }
  .hours-table tbody tr + tr td{
    border-top: 1px solid #f0f0f0;
  }
  .hours-table td:first-child{
    width: 35%;
    font-weight: 600;
    color:#222;
  }
  .hours-note{
    margin-top: .5rem;
    font-size: .9rem;
    color:#555;
  }



/* Footer */
.footer {
    background-color: var(--footer-bg);
    color: #ccc;
    padding: 60px 0 30px;
}

.footer-address {
    line-height: 2;
}

.footer-address a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-address a:hover {
    color: var(--primary-color);
}

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    margin-left: 1.5rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #999;
}

/* Responsive */
@media (max-width: 991px) {
    .navbar-collapse {
        /* background-color: rgba(0, 0, 0, 0.95);
        padding: 1rem;
        margin-top: 0.5rem;
        border-radius: 8px; */
        line-height: 10px;
    }

    .nav-link {
        padding: 0.75rem 1rem !important;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .content-section {
        padding: 60px 0;
    }

    .section-heading {
        font-size: 1.75rem;
    }

    .footer-links {
        text-align: left;
        margin-top: 2rem;
    }

    .footer-links a {
        display: block;
        margin-left: 0;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-cta {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
    }

    .accordion-button {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .column-heading {
        text-align: center;
    }

    .column-text {
        text-align: justify;
        padding: 20px;
    }

    .column-image {
        border-radius: 30px;
        padding: 20px;
    }

    .footer {
         text-align: center;
    }

    .footer-links {
        text-align: center;
        margin-top: 2rem;
    }

}

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

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

/* Utility Classes */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}

/* Smooth scroll offset for fixed navbar */
:target {
    scroll-margin-top: 80px;
}
