* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: url(Images/Background.png);
    background-size: cover;
    background-attachment: fixed;
    color: #E7E4D9;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    padding-top: 0;
}


/* Header Styles */

header {
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 5px 15px 15px rgba(0, 0, 0, 0.63);
    background-color: rgba(0, 0, 0, 0.8);
}

.logo {
    width: 50px;
    height: auto;
    margin-left: 15px;
    margin-top: 5px;
}

.nav-links {
    display: flex;
    gap: 30px;
    flex: 1;
    margin-left: 40px;
}

header a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

header a:hover {
    color: rgb(255, 184, 82);
}

.header-button {
    margin-right: 20px;
    padding: 10px 20px;
    background-color: rgb(96, 17, 10);
    color: rgb(229, 209, 179);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: bold;
}

.header-button:hover {
    background-color: rgb(255, 184, 82);
    color: rgb(96, 17, 10);
}


/* Banner Section */

.banner {
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    background-color: transparent;
    min-height: 400px;
}

.banner h1 {
    font-size: clamp(28px, 6vw, 56px);
    color: rgb(255, 255, 255);
    margin: 0 0 10px 0;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    line-height: 1.1;
}

.banner p {
    font-size: 32px;
    color: rgb(255, 184, 82);
    margin: 0 0 40px 0;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}


/* Button Styles */

.btn {
    padding: 14px 32px;
    font-size: 14px;
    border: 2px solid;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    display: inline-block;
}

.btn-primary {
    background-color: rgb(255, 184, 82);
    color: rgb(96, 17, 10);
    border-color: rgb(255, 184, 82);
}

.btn-primary:hover {
    background-color: transparent;
    color: rgb(255, 184, 82);
}

.btn-secondary {
    background-color: transparent;
    color: rgb(229, 209, 179);
    border-color: rgb(229, 209, 179);
}

.btn-secondary:hover {
    background-color: rgb(229, 209, 179);
    color: rgb(96, 17, 10);
}


/* Main Content */

main {
    padding: 40px 20px;
}

section {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
}

section h2 {
    color: rgb(255, 184, 82);
    font-size: 32px;
    margin-top: 0;
    margin-bottom: 20px;
}

section p {
    color: #E7E4D9;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}


/* Logo Section between header and banner */

.logo-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px 0 60px;
    gap: 40px;
}

.large-logo {
    width: 250px;
    height: auto;
}

.lion-svg {
    width: 380px;
    height: auto;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.95;
}


/* Two Column Banner Section */

.two-column-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 50px 60px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.banner-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.banner-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.two-column-banner h3 {
    color: rgb(255, 255, 255);
    font-size: 22px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}

.two-column-banner p {
    color: #E7E4D9;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}


/* About Section */

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
}

.about-content h2 {
    color: rgb(255, 184, 82);
    font-size: 32px;
    margin-top: 0;
    margin-bottom: 20px;
}

.about-content p {
    color: #E7E4D9;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-images {
    display: flex;
    gap: 15px;
    flex-direction: row;
    align-items: center;
}

.about-img {
    width: 100%;
    max-width: 180px;
    height: auto;
    border-radius: 10px;
}
.about-panel {
    position: fixed;
    z-index: 2000;
}

/* Contact Section */

.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    align-items: center;
}

.contact-images {
    display: flex;
    gap: 15px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}

.contact-content {
    display: flex;
    flex-direction: column;
}

.contact-content h2 {
    color: rgb(255, 184, 82);
    font-size: 32px;
    margin-top: 0;
    margin-bottom: 20px;
}

.contact-content p {
    color: #E7E4D9;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.contact-img {
    width: 100%;
    max-width: 160px;
    height: auto;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .banner h1 {
        font-size: 28px;
    }

    .banner p {
        font-size: clamp(24px, 5vw, 48px);
        line-height: 1.2:;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .hamburger {
        background: none;
        border: none;
        font-size: 32px;
        color: rgb(255, 184, 82);
        cursor: pointer;
        margin-right: 15px;
    }

    .nav-links {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 25px;
        display: none;
        border-bottom: 3px solid rgb(255, 184, 82);
        margin-left: 0;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 18px;
    }

    .header-button {
        display: none;
    }

    section {
        padding: 30px 20px;
    }

    .two-column-banner {
        grid-template-columns: 1fr;
    }

    .contact-section {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) {
    .hamburger {
        display: none;
    }
}

.contact-intro {
    text-align: center;
}

.contact-intro p {
    margin-bottom: 10px;
}

.contact-images {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.contact-img {
    width: 200px;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.contact-content a {
    color: rgb(255, 184, 82);
    text-decoration: none;
}

.contact-content a:hover {
    color: rgb(215, 210, 203);
    text-decoration: underline;
}


/* Sidebar Styles */

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 999;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 30px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.8);
    overflow-y: auto;
    transition: right 0.3s ease;
    z-index: 1000;
    border-left: 3px solid rgb(255, 184, 82);
}

.sidebar.active {
    right: 0;
}

.sidebar-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: rgb(255, 184, 82);
    font-size: 32px;
    cursor: pointer;
    transition: color 0.3s;
}

.sidebar-close:hover {
    color: #E7E4D9;
}

.sidebar h2 {
    color: rgb(255, 184, 82);
    font-size: 28px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar-content {
    margin-top: 30px;
}

.sidebar-content h3 {
    color: #E7E4D9;
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sidebar-content p {
    color: #E7E4D9;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.sidebar-content ul {
    color: #E7E4D9;
    font-size: 14px;
    line-height: 1.8;
    margin-left: 20px;
    margin-bottom: 15px;
}

.sidebar-content li {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .sidebar {
        width: 300px;
        right: -300px;
    }
}


/* Einheitliche Inhaltsbreite für Seitenblöcke */

.page-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
}


/* Leaflet Map */

#map {
    height: 400px;
    width: 100%;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}
.leaflet-control-container {
    z-index: 1;
}


/* KARUSSELL */

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 340px;
    /* passt gut in die Sidebar */
    margin: 30px auto;
    overflow: hidden;
    border-radius: 10px;
}

.carousel {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.carousel img {
    width: 100%;
    height: 220px;
    /* feste Höhe = kein Springen */
    flex-shrink: 0;
    object-fit: contain;
    /* KEIN Abschneiden mehr */
    background-color: #000;
    /* schwarze Balken statt Crop */
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: rgb(255, 184, 82);
    border: none;
    font-size: 26px;
    padding: 8px 14px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-btn:hover {
    background-color: rgba(255, 184, 82, 0.8);
    color: rgb(96, 17, 10);
}


/* =========================
   HAMBURGER MENU
   ========================= */



/* =========================
   MOBILE FIXES
   ========================= */

@media screen and (max-width: 900px) {

    /* LOGO SECTION */
    .logo-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 16px;
        gap: 14px;
        text-align: center;
    }

    .lion-svg {
        width: 240px;
        max-width: 90%;
        height: auto;
        margin: 0 auto;
    }

    .large-logo {
        display: none;
        width: 160px;
        max-width: 80%;
        height: auto;
    }

    /* TWO COLUMN BANNER */
    .two-column-banner {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }

    .banner-column {
        align-items: center;
        text-align: center;
    }

    /* ABOUT SECTION */
    .about-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-images {
        justify-content: center;
    }

    .about-img {
        max-width: 140px;
    }

    /* CONTACT */
    .contact-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-images {
        justify-content: center;
    }
}


/* =========================
   LIGHTBOX
   ========================= */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 2001;
}

.lightbox-close:hover {
    color: rgb(255, 184, 82);
}

.lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: rgb(255, 184, 82);
    border: none;
    font-size: 40px;
    padding: 10px 20px;
    cursor: pointer;
    z-index: 2002;
    transition: color 0.3s, background-color 0.3s;
    border-radius: 5px;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-btn:hover {
    background-color: rgba(255, 184, 82, 0.8);
    color: rgb(96, 17, 10);
}

.carousel img,
.about-img,
.contact-img,
.gallery-img {
    cursor: zoom-in;
}
/* Fix für lange Wörter auf Mobile */

h1, h2, h3 {
    overflow-wrap: break-word;
    word-break: break-word;
}
