/* ================================
   RESET
================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #fffaf5;
    color: #222;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}


/* ================================
   NAVIGATION
================================ */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    z-index: 1000;

    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
}

nav {
    width: 100%;
    height: 64px;

    padding: 0 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1;
}

.logo span {
    display: block;

    margin-top: 4px;

    color: #f47b20;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 28px;

    list-style: none;
}

nav ul a {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;

    transition: color 0.3s ease;
}

nav ul a:hover {
    color: #f47b20;
}

/* =================================
   DESKTOP SPRACHEN
================================= */

.desktop-languages {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 20px;
}

.desktop-languages button {
    padding: 6px 9px;

    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 20px;

    background: transparent;
    color: #fff;

    font-size: 0.7rem;
    font-weight: 700;

    cursor: pointer;

    transition: 0.3s ease;
}

.desktop-languages button:hover {
    background: #f47b20;
    border-color: #f47b20;
    color: #111;
}


/* ================================
   HERO
================================ */

.hero {
    position: relative;

    width: 100%;
    min-height: 100vh;

    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.28),
            rgba(0, 0, 0, 0.48)
        ),
        url("../images/hintergrund.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 100px 20px 60px;
}

.hero-content {
    position: relative;
    z-index: 2;

    color: #fff;

    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.7);
}

.hero-content > p {
    margin-bottom: 18px;

    font-size: 1.15rem;
    font-weight: 500;
}

.hero h1 {
    margin-bottom: 18px;

    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 0.95;

    text-shadow:
        0 4px 20px rgba(0, 0, 0, 0.75);
}

.hero h2 {
    margin-bottom: 28px;

    color: #fff;
    font-size: clamp(1.15rem, 2vw, 1.7rem);
    font-weight: 700;
}


/* ================================
   HERO BUTTONS
================================ */

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 14px;
    flex-wrap: wrap;
}

.hero-buttons a {
    display: inline-block;

    padding: 12px 24px;

    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 30px;

    background: rgba(0, 0, 0, 0.35);

    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;

    backdrop-filter: blur(5px);

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        border-color 0.3s ease;
}

.hero-buttons a:first-child {
    background: #f47b20;
    border-color: #f47b20;
}

.hero-buttons a:hover {
    transform: translateY(-3px);
}

.hero-buttons a:first-child:hover {
    background: #ff8b2d;
}

/* ================================
   SPEZIALITÄTEN
================================ */

.specialties {
    background: #0d0d0d;
    color: #fff;
    padding: 100px 2%;
}

.section-heading {
    text-align: center;
    margin-bottom: 55px;
}

.section-heading p {
    color: #f47b20;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.section-heading h2 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 15px;
}

.section-heading span {
    color: #999;
    font-size: 1rem;
}


/* ================================
   KARTEN
================================ */

.specialty-grid {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.specialty-card {
    background: #171717;
    border-radius: 18px;
    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.08);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.specialty-card:hover {
    transform: translateY(-8px);

    border-color: rgba(244, 123, 32, 0.6);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5);
}

/* ================================
   HORIZONTALER SLIDER
================================ */

.specialty-slider {
    width: 100%;

    display: flex;
    gap: 22px;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-behavior: smooth;

    padding-bottom: 10px;

    scrollbar-width: none;
}

.specialty-slider::-webkit-scrollbar {
    display: none;
}

.specialty-slider .specialty-card {
    flex: 0 0 calc((100% - 44px) / 3);
}

/* ================================
   RESPONSIVE SLIDER
================================ */

@media (max-width: 900px) {
    .specialty-slider .specialty-card {
        flex: 0 0 calc((100% - 22px) / 2);
    }
}

@media (max-width: 600px) {
    .specialty-slider .specialty-card {
        flex: 0 0 78%;
    }
}
/* ================================
   BILD
================================ */

.specialty-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.specialty-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.specialty-card:hover .specialty-image img {
    transform: scale(1.06);
}


/* ================================
   KARTEN-INHALT
================================ */

.specialty-content {
    padding: 24px;
}

.card-label {
    color: #f47b20;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.specialty-content h3 {
    margin: 8px 0 10px;

    font-size: 1.55rem;
    font-weight: 800;
}

.specialty-content p {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.5;

    margin-bottom: 22px;
}



/* ================================
   ENTDECKEN
================================ */

.discover-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #f47b20;
    text-decoration: none;

    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    transition:
        gap 0.3s ease,
        opacity 0.3s ease;
}

.discover-btn span {
    transition: transform 0.3s ease;
}

.discover-btn:hover {
    gap: 12px;
}

.discover-btn:hover span {
    transform: translateX(4px);
}
/* =================================
   ÜBER UNS – FINAL
================================= */

.about {
    width: 100%;
    padding: 100px 5%;
    background: #0d0d0d;
    color: #fff;
}

.about-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}


/* LADENFOTO */

.about-image {
    width: 100%;
    height: 520px;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(244, 123, 32, 0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.55);
}

.about-image img {
    width: 100%;
    height: 100%;
    max-width: none;
    display: block;

    object-fit: cover;
    object-position: center;

    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}


/* TEXT */

.about-content {
    width: 100%;
}

.about-label {
    display: block;
    margin-bottom: 15px;

    color: #f47b20;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 3px;
}

.about-content h2 {
    margin-bottom: 25px;

    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 1.05;
    font-weight: 900;
}

.about-content h2 span {
    color: #f47b20;
}

.about-content p {
    margin-bottom: 18px;

    color: #aaa;
    font-size: 1rem;
    line-height: 1.8;
}

.about-highlight {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;

    margin-top: 30px;
    padding-top: 25px;

    border-top: 1px solid rgba(255,255,255,0.12);
}

.about-highlight strong {
    color: #fff;
}

.about-highlight strong::before {
    content: "•";
    color: #f47b20;
    margin-right: 8px;
}
.about-logo {
    margin-bottom: 20px;
}

.about-logo img {
    width: 95px;
    height: 95px;
    object-fit: contain;
    display: block;
}

/* =================================
   GALERIE
================================ */

.gallery {
    background: #0d0d0d;
    color: #fff;
    padding: 100px 5%;
}

.gallery-header {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.gallery-header span {
    color: #f47b20;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 3px;
}

.gallery-header h2 {
    margin: 15px 0;

    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.05;
    font-weight: 900;
}

.gallery-header h2 strong {
    color: #f47b20;
}

.gallery-header p {
    color: #999;
}

/* ========================================
   GOOGLE BEWERTUNGEN
======================================== */

.gallery-reviews {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 22px;
    width: 100%;
    margin-top: 25px;
}


/* GOOGLE BOX */

.google-reviews {
    background: #111111;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    padding: 28px;
    color: #ffffff;
}


/* GOOGLE TITEL */

.google-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
}

.google-title i {
    font-size: 30px;
}


/* BEWERTUNG */

.google-rating {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 35px;
    align-items: center;
}

.google-score strong {
    font-size: 58px;
    line-height: 1;
}

.google-stars {
    margin-top: 8px;
    font-size: 27px;
    letter-spacing: 2px;
    color: #f47b20;
}

.google-stars span {
    color: #555555;
}

.google-score p {
    margin-top: 10px;
    color: #aaa;
    font-size: 14px;
}

.google-score p strong {
    font-size: 15px;
    color: #ffffff;
}


/* ========================================
   BEWERTUNGS-TABELLE
======================================== */

.rating-table {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rating-row {
    display: grid;
    grid-template-columns: 40px 1fr 42px;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.rating-row > span {
    color: #ffffff;
}

.rating-row strong {
    color: #aaa;
    font-size: 12px;
    text-align: right;
}


/* BALKEN */

.rating-bar {
    height: 8px;
    background: #292929;
    border-radius: 20px;
    overflow: hidden;
}

.rating-bar span {
    display: block;
    height: 100%;
    background: #f47b20;
    border-radius: 20px;
}


/* ========================================
   GOOGLE BUTTON
======================================== */

.google-review-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 25px;
    padding: 13px 18px;

    background: #f47b20;
    color: #ffffff;

    border-radius: 8px;
    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition: .25s ease;
}

.google-review-button:hover {
    transform: translateY(-2px);
    opacity: .9;
}

.google-review-button i {
    font-size: 19px;
}


/* ========================================
   RECHTE SEITE
======================================== */

.gallery-side {
    background: #111111;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    padding: 28px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* SOCIAL MEDIA */

.gallery-side .gallery-social {
    display: flex;
    gap: 18px;
    margin-bottom: 30px;
}

.gallery-side .gallery-social a {
    color: #ffffff;
    font-size: 32px;
    text-decoration: none;
    transition: .25s ease;
}

.gallery-side .gallery-social a:hover {
    color: #f47b20;
    transform: scale(1.08);
}


/* ========================================
   EIGENE BEWERTUNG
======================================== */

.gallery-side .gallery-rating {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.gallery-side .rating-label {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
}

.gallery-side .rating-stars {
    display: flex;
    gap: 3px;
}

.gallery-side .rating-stars button {
    border: none;
    background: transparent;
    color: #555555;
    font-size: 28px;
    line-height: 1;
    padding: 0;
    cursor: pointer;
    transition: color .2s ease, transform .2s ease;
}

.gallery-side .rating-stars button:hover {
    transform: scale(1.12);
}

.gallery-side .rating-stars button.active {
    color: #f47b20;
}

.gallery-side .rating-value {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}
/* ========================================
   GOOGLE BEWERTUNGEN – VOLLE BREITE
======================================== */

.gallery-grid > .gallery-reviews {
    grid-column: 1 / -1;
    width: 100%;
}

.gallery-reviews {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 22px;
    width: 100%;
    margin-top: 25px;
}

.google-reviews,
.gallery-side {
    width: 100%;
    min-width: 0;
}
/* ========================================
   GOOGLE REZENSIONEN
======================================== */

.google-review-list {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.google-review-card {
    padding: 14px 0;
    border-top: 1px solid rgba(255,255,255,.10);
}

.google-review-card:first-child {
    border-top: none;
    padding-top: 0;
}

.review-stars {
    color: #f47b20;
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.google-review-card p {
    margin: 0 0 5px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.5;
}

.google-review-card > span {
    color: #888888;
    font-size: 12px;
}


/* ========================================
   GOOGLE REVIEWS – LAYOUT KORREKTUR
======================================== */

.gallery-grid > .gallery-reviews {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    gap: 22px;
    width: 100%;
    align-items: stretch;
}

.google-reviews {
    width: 100%;
    height: auto;
}

.gallery-side {
    width: 100%;
    height: auto;
    min-height: 100%;
}


/* Rezensionen kompakter */

.google-review-list {
    margin-top: 15px;
}

.google-review-card {
    padding: 10px 0;
}

.google-review-card p {
    font-size: 13px;
    line-height: 1.4;
}

.review-stars {
    font-size: 13px;
    margin-bottom: 3px;
}


/* ========================================
   GOOGLE REVIEWS – FEINSCHLIFF
======================================== */

.google-reviews {
    padding: 24px;
}

.google-title {
    margin-bottom: 14px;
}

.google-rating {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 28px;
    align-items: start;
}

.google-score strong {
    font-size: 52px;
}

.google-stars {
    margin-top: 6px;
    font-size: 24px;
}

.google-score p {
    margin-top: 8px;
}

.google-review-list {
    margin-top: 0;
}

.google-review-card {
    padding: 8px 0;
}

.google-review-card p {
    font-size: 13px;
    line-height: 1.4;
}

.review-stars {
    font-size: 13px;
    margin-bottom: 3px;
}

.google-review-button {
    margin-top: 16px;
}


/* Rechte Box kompakter */

.gallery-side {
    padding: 24px;
}

.gallery-side .gallery-social {
    margin-bottom: 24px;
}



/* Mobile */

@media (max-width: 800px) {

    .gallery-grid > .gallery-reviews {
        grid-template-columns: 1fr;
    }

}




/* ========================================
   MOBILE
======================================== */

@media (max-width: 800px) {

    .gallery-reviews {
        grid-template-columns: 1fr;
    }

    .google-rating {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .google-score strong {
        font-size: 48px;
    }

}

/* =================================
   BILDER
================================ */

.gallery-grid {
    max-width: 1400px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 18px;
}

.gallery-item {
    position: relative;
    overflow: hidden;

    border-radius: 18px;

    border: 1px solid rgba(255,255,255,0.08);

    background: #151515;
}

.gallery-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}
.gallery-social a {
    font-size: 40px;
}




/* großes Bild */

.gallery-large {
    grid-column: span 2;
}
/* =========================================
   KONTAKT
========================================= */

#kontakt.contact {
    width: 100%;
    padding: 100px 5%;
    background: #0d0d0d;
    color: #fff;
}

#kontakt .contact-header {
    text-align: center;
    margin-bottom: 55px;
}

#kontakt .contact-header span {
    display: block;
    margin-bottom: 12px;
    color: #f47b20;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 3px;
}

#kontakt .contact-header h2 {
    margin: 0 0 15px;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.05;
}

#kontakt .contact-header p {
    margin: 0;
    color: #999;
}


/* =========================
   GRID
========================= */

#kontakt .contact-grid {
    width: 100%;

    display: grid;
    grid-template-columns: 0.8fr 1.2fr;

    gap: 45px;
    align-items: stretch;
}


/* =========================
   KONTAKT INFO
========================= */

#kontakt .contact-info {
    padding: 40px;

    background: #171717;

    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

#kontakt .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 30px;
}

#kontakt .contact-icon {
    width: 44px;
    height: 44px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(244,123,32,0.12);
    border-radius: 50%;

    font-size: 1.1rem;
}

#kontakt .contact-item h3 {
    margin: 0 0 5px;
    font-size: 1.05rem;
}

#kontakt .contact-item p {
    margin: 0;
    color: #aaa;
    line-height: 1.6;
}


/* =========================
   ROUTE BUTTON
========================= */

#kontakt .map-button {
    display: inline-block;
    width: fit-content;

    margin-top: 5px;
    padding: 13px 25px;

    background: #f47b20;
    color: #fff;

    border-radius: 30px;

    font-weight: 700;

    transition: 0.3s ease;
}

#kontakt .map-button:hover {
    background: #ff8b2d;
    transform: translateY(-3px);
}


/* =========================
   GOOGLE MAP
========================= */

#kontakt .contact-map {
    min-height: 480px;

    overflow: hidden;
    border-radius: 20px;

    border: 1px solid rgba(255,255,255,0.08);
}

#kontakt .contact-map iframe {
    display: block;

    width: 100%;
    height: 480px;

    border: 0;

    filter: grayscale(0.7);
}

/* =================================
   MOBILE MENU CONTENT
================================= */

.mobile-menu-content {
    position: relative;

    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;
}


/* LOGO */

.mobile-logo {
    width: 75px;
    height: 75px;

    object-fit: contain;

    margin-bottom: 40px;
}


/* NAVIGATION */

.mobile-nav {
    display: flex;
    flex-direction: column;

    align-items: center;

    gap: 22px;
}

.mobile-nav a {
    color: #fff;

    font-size: 1.55rem;
    font-weight: 800;

    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: #f47b20;
}


/* =================================
   SPRACHEN – FEST UNTEN
================================= */

.mobile-languages {
    position: absolute;

    left: 50%;
    bottom: 35px;

    transform: translateX(-50%);

    display: flex;
    align-items: center;

    gap: 10px;
}

.mobile-languages button {
    min-width: 48px;

    padding: 8px 14px;

    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 25px;

    background: transparent;

    color: #fff;

    font-size: 0.8rem;
    font-weight: 700;

    cursor: pointer;

    transition: 0.3s ease;
}

.mobile-languages button:hover {
    background: #f47b20;
    color: #111;

    border-color: #f47b20;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 800px) {

    #kontakt.contact {
        padding: 75px 18px;
    }

    #kontakt .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    #kontakt .contact-info {
        padding: 30px 25px;
    }

    #kontakt .contact-map {
        min-height: 350px;
    }

    #kontakt .contact-map iframe {
        height: 350px;
    }
}




/* =================================
   MOBILE
================================ */

@media (max-width: 800px) {

    .gallery {
        padding: 70px 18px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
    }

    .gallery-large {
        grid-column: span 1;
    }
}

/* =================================
   MOBILE
================================= */

@media (max-width: 900px) {

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        height: 400px;
    }
}


/* ================================
   MOBILE
================================ */

@media (max-width: 1000px) {

    .specialty-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 600px) {

    .specialties {
        padding: 70px 18px;
    }

    .specialty-grid {
        grid-template-columns: 1fr;
    }

    .specialty-image {
        height: 250px;
    }
}







/* ================================
   MOBILE
================================ */

@media (max-width: 800px) {

    header,
    nav {
        height: 58px;
    }

    nav {
        padding: 0 18px;
    }

    .logo {
        font-size: 1rem;
    }

    .logo span {
        font-size: 0.48rem;
    }

    nav ul {
        gap: 14px;
    }

    nav ul a {
        font-size: 0.78rem;
    }

    .hero {
        min-height: 90vh;
        padding: 90px 18px 50px;

        background-position: center center;
    }

    .hero h1 {
        font-size: clamp(2.3rem, 12vw, 3.5rem);
    }

    .hero h2 {
        font-size: 1.05rem;
    }

    .hero-buttons a {
        padding: 11px 20px;
    }
}

/* =================================
   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;
    }
}


/* =========================================
   MOBILE BURGER – ORANGE CIRCLE
========================================= */

.menu-toggle {
    position: fixed;

    right: 22px;
    top: 18px;

    width: 58px;
    height: 58px;

    border: none;
    border-radius: 50%;

    background: #f47b20;
    color: #111;

    display: none;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 5px;

    cursor: pointer;

    z-index: 2001;

    box-shadow:
        0 8px 25px rgba(0,0,0,0.35);

    transition: transform 0.3s ease;
}

.menu-toggle:hover {
    transform: scale(1.06);
}

.menu-toggle span {
    width: 23px;
    height: 2px;

    background: #111;

    border-radius: 3px;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


/* =========================================
   MOBILE MENU
========================================= */

.mobile-menu {
    position: fixed;

    inset: 0;

    z-index: 2000;

    background: rgba(13,13,13,0.97);

    backdrop-filter: blur(18px);

    clip-path: circle(0% at calc(100% - 51px) 47px);

    transition:
        clip-path 0.6s cubic-bezier(.77,0,.18,1);

    visibility: hidden;
}

.mobile-menu.active {
    clip-path: circle(150% at calc(100% - 51px) 47px);

    visibility: visible;
}


/* =========================================
   MENU CONTENT
========================================= */

.mobile-menu-content {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: flex-start;

    padding-top: 25px;
}
.mobile-logo {
    width: 90px;
    height: 90px;

    object-fit: contain;

    margin-bottom: 40px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-nav a {
    color: #fff;

    font-size: 1.7rem;
    font-weight: 800;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.mobile-nav a:hover {
    color: #f47b20;
    transform: translateX(5px);
}


/* =========================================
   SPRACHEN
========================================= */

.mobile-languages {
    display: flex;
    justify-content: center;
    gap: 10px;

    margin-top: 20px;
    margin-bottom: 30px;
}
.mobile-languages button {
    padding: 8px 15px;

    border: 1px solid rgba(255,255,255,0.2);

    border-radius: 20px;

    background: transparent;

    color: #fff;

    cursor: pointer;

    transition: 0.3s ease;
}

.mobile-languages button:hover {
    background: #f47b20;
    color: #111;
}


/* =========================================
   BURGER → X
========================================= */

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 800px) {

    .menu-toggle {
        display: flex;
    }

    header nav > ul {
        display: none;
    }
    .desktop-languages{
        display:none;
    }

}
/* ========================================
   LAHMACUN BILD-SLIDER
======================================== */

.specialty-image-slider {
    position: relative;
}

.specialty-image-slider .slider-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
    object-fit: cover;

    opacity: 0;
    transition: opacity .7s ease;
}

.specialty-image-slider .slider-image.active {
    opacity: 1;
}
.order-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.order-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 12px 18px;

    background: #171717;
    color: #fff;

    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: 0.25s ease;
}

.order-links a:hover {
    border-color: #f47b20;
    color: #f47b20;
    transform: translateY(-2px);
}

.order-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;
}




.order-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lieferando-icon img {
    width: 34px;
    height: 34px;
}

.ubereats-icon img {
    width: 30px;
    height: 30px;
}

.wolt-icon img {
    width: 34px;
    height: 34px;
}

.order-icon svg {
    width: 40px;
    height: 40px;
    display: block;
}
@media (max-width: 600px) {

    .order-links a {
        border-width: 2px;
    }

    .lieferando-icon {
        border-color: #f47b20;
    }

    .order-links a:first-child {
        border-color: #f47b20;
    }

    .order-links a:nth-child(2) {
        border-color: #f47b20;
    }

    .order-links a:nth-child(3) {
        border-color: #f47b20;
    }
}

/* ========================================
   INSTAGRAM REEL IN DER GALERIE
======================================== */

.gallery-item.gallery-video {
    height: auto;
    min-height: 300px;
    overflow: hidden;
}

.gallery-item.gallery-video .instagram-media {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
}