:root {
    --discover-bg: #080808;
    --discover-card: #171717;
    --discover-text: #ffffff;
    --discover-muted: #999999;
    --discover-accent: #f47b20;
    --discover-line: rgba(255,255,255,.08);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: var(--discover-bg);
    color: var(--discover-text);
    line-height: 1.5;
}


/* ================================
   SEITE
================================ */

.discover-page {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 60px 20px 100px;
}


/* ================================
   HEADER
================================ */

.discover-header {
    text-align: center;
    margin-bottom: 80px;
}

.discover-label {
    color: var(--discover-accent);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.discover-header h1 {
    margin: 10px 0;
    font-family: Georgia, serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 1;
}

.discover-intro {
    color: var(--discover-muted);
    max-width: 550px;
    margin: 0 auto;
}


/* ================================
   SECTION
================================ */

.discover-section {
    margin-bottom: 100px;
}

.discover-section-heading {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 25px;
}

.discover-section-heading span {
    color: var(--discover-accent);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.discover-section-heading h2 {
    font-family: Georgia, serif;
    font-size: 2.4rem;
}

/* ================================
   SPRACHUMSCHALTER
================================ */

.discover-language-switcher {
    position: absolute;
    top: 20px;
    right: 25px;

    display: flex;
    align-items: center;
    gap: 6px;

    z-index: 20;
}

.discover-language-switcher button {
    padding: 6px 9px;

    border: 1px solid rgba(255,255,255,.25);
    border-radius: 20px;

    background: transparent;
    color: #ffffff;

    font-size: .7rem;
    font-weight: 600;

    cursor: pointer;

    transition:
        background .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.discover-language-switcher button:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.5);
}

.discover-language-switcher button:active {
    transform: scale(.94);
}


/* ================================
   GALERIE
================================ */

.discover-gallery {
    position: relative;

    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, .7fr);
    gap: 24px;

    background: var(--discover-card);
    border: 1px solid var(--discover-line);
    border-radius: 22px;
    overflow: hidden;
}


/* ================================
   BILD
================================ */

.discover-image {
    position: relative;

    width: 100%;
    height: 480px;
    overflow: hidden;
}

.discover-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    display: block;

    opacity: 1;
    transition:
        opacity .25s ease,
        transform .5s ease;
}

.discover-gallery:hover .discover-image img {
    transform: scale(1.03);
}


/* ================================
   GALERIE-PFEILE
================================ */

.gallery-prev,
.gallery-next {
    position: absolute;
    top: 50%;
    z-index: 5;

    width: 44px;
    height: 44px;

    transform: translateY(-50%);

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;

    background: rgba(0,0,0,.55);
    color: #ffffff;

    font-size: 1.25rem;
    line-height: 1;

    cursor: pointer;

    transition:
        background .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.gallery-prev {
    left: 18px;
}

.gallery-next {
    right: 18px;
}

.gallery-prev:hover,
.gallery-next:hover {
    background: rgba(0,0,0,.8);
    border-color: rgba(255,255,255,.5);
}

.gallery-prev:active,
.gallery-next:active {
    transform: translateY(-50%) scale(.94);
}


/* ================================
   COUNTER
================================ */

.gallery-counter {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 6;

    padding: 6px 10px;

    border: 1px solid rgba(255,255,255,.15);
    border-radius: 20px;

    background: rgba(0,0,0,.6);

    color: #ffffff;
    font-size: .75rem;
    letter-spacing: 1px;

    pointer-events: none;
}


/* ================================
   INFORMATION
================================ */

.discover-info {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 35px;
}

.discover-category {
    color: var(--discover-accent);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.discover-info h2,
.discover-info h3 {
    font-family: Georgia, serif;
    font-size: 2rem;
    margin-bottom: 12px;
}

.discover-info p:last-child {
    color: var(--discover-muted);
    max-width: 350px;
}


/* ================================
   MOBILE
================================ */

@media (max-width: 760px) {

    .discover-page {
        padding: 35px 14px 70px;
    }

    .discover-header {
        margin-bottom: 55px;
    }

    .discover-section {
        margin-bottom: 65px;
    }

    .discover-section-heading h2 {
        font-size: 2rem;
    }

    .discover-gallery {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .discover-image {
        height: 300px;
    }

    .discover-info {
        padding: 25px;
    }
.discover-language-switcher {
    display:none;
}


    .gallery-prev,
    .gallery-next {
        width: 40px;
        height: 40px;
    }

    .gallery-prev {
        left: 12px;
    }

    .gallery-next {
        right: 12px;
    }

    .gallery-counter {
        right: 12px;
        bottom: 12px;
    }
}

/*Disover Back Button*/

.discover-back {
    position: absolute;
    top: 22px;
    left: 25px;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 9px 16px;

    border: 1px solid var(--discover-accent);
    border-radius: 30px;

    background: rgba(0, 0, 0, .35);
    color: #fff;

    font-size: .72rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-decoration: none;

    transition: all .3s ease;
}

.discover-back span {
    color: var(--discover-accent);
    font-size: 1.1rem;
    transition: transform .3s ease;
}

.discover-back:hover {
    background: var(--discover-accent);
    color: #080808;
    transform: translateX(4px);
}

.discover-back:hover span {
    color: #080808;
    transform: translateX(-3px);
}

/* =================================
   FOOTER
================================= */

.footer {
    width: 100%;

    background: #080808;
    color: #fff;

    border-top: 1px solid rgba(244, 123, 32, 0.35);
}


/* =================================
   HAUPTBEREICH
================================= */

.footer-main {
    width: 100%;

    padding: 65px 5% 55px;

    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 0.8fr;

    gap: 50px;
}

/* =================================
   Social Media Links
================================= */



.social-links {
    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 50px;
    gap: 20px;
    margin-top: 15px;
}

.social-links a {
    color: inherit;
    font-size: 50px;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-links a:hover {
    transform: scale(1.15);
    opacity: 0.75;
}
/* =================================
   BRAND
================================= */

.footer-brand img {
    width: 75px;
    height: 75px;

    object-fit: contain;

    display: block;

    margin-bottom: 15px;
}

.footer-brand h3 {
    margin: 0;

    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.footer-brand p {
    margin-top: 4px;

    color: #f47b20;

    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2px;
}


/* =================================
   SPALTEN
================================= */

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-column h4 {
    margin-bottom: 18px;

    font-size: 1rem;
    font-weight: 800;
}

.footer-column a,
.footer-column p {
    margin-bottom: 9px;

    color: #999;

    font-size: 0.9rem;

    line-height: 1.6;

    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #f47b20;
}


/* =================================
   SOCIAL
================================= */

.footer-social {
    color: #f47b20 !important;
    font-weight: 700;
}


/* =================================
   UNTERER BEREICH
================================= */

.footer-bottom {
    width: 90%;

    margin: auto;

    padding: 20px 0;

    border-top: 1px solid rgba(255,255,255,0.08);

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #666;

    font-size: 0.8rem;
}

.footer-bottom div {
    display: flex;
    gap: 25px;
}

.footer-bottom a {
    color: #666;

    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #f47b20;
}

@media (max-width: 800px) {

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px 25px;
        padding: 55px 25px 40px;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-bottom {
        width: calc(100% - 40px);
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
