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

body {
    font-family: "Segoe UI", sans-serif;
    background: #0d0d0d url('img/page-background.jpg');
    background-position: top center;
    background-size: contain;
    color: #e6d3a3;
    font-size: 1.2rem;
    padding: 0 20px;

    overflow-x: hidden; /* verhindert horizontalen Scroll, aber vertikal scrollbar */
    overflow-y: auto;   /* scrollbare Seite */

    /*background: radial-gradient(circle, #6c4c3c29, #0000);*/
}

a {text-decoration: none;}

/* HORIZONTAL LINE */
.horizontal-line {
    background: linear-gradient( to right, rgba(0, 0, 0, 0.8) 0%, rgba(255, 255, 255, 0.17) 50%, rgba(0, 0, 0, 0.67) 100% ), rgba(212,175,55,0.3);;
    background-size: cover;
    background-position: center;
    height: 3px;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* VERTIKAL LINE */
.vertikal-line {
    background: linear-gradient( to bottom, rgba(0, 0, 0, 0.42) 0%, rgba(255, 255, 255, 0.17) 50%, rgba(0, 0, 0, 0.29) 100% ), rgba(212,175,55,0.3);
    background-size: cover;
    background-position: center;
    height: auto;
    width: 3px;
    margin: 0;
}

/* SPINNER */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* HERO-CONTAINER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #0d0d0d url('img/page-background.jpg');
    background-position: top center;
    background-size: cover;
    height: 80px; /* WICHTIG: feste Höhe definieren */
}

.hero-container {
    width: 100vw;
    height: calc(100vh - 80px); /* Headerhöhe */
    margin-top: 80px; /* Abstand unter dem Header */
    position: relative;
    overflow: hidden;

    display: flex;
    justify-content: center;   /* ✅ horizontale Zentrierung */
    align-items: center;       /* ✅ vertikale Zentrierung */
}

/* NEU: der Scaler wird über transform zentriert */

.hero-scaler {
    transform-origin: top left;
}

.hero-content {
    width: 1000px;  /* Basisbreite */
    height: 800px;  /* Basishöhe */
}

/* ENDE HERO-CONTAINER */


/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    /*padding: 0 20px;*/
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    /*background: rgba(0,0,0,0.9);*/
    /*border-bottom: 1px solid rgba(212,175,55,0.3);*/
    z-index: 1000;

    background: #0d0d0d url('img/page-background.jpg');
    background-position: top center;
    background-size: cover;
    /*background: radial-gradient(circle, #1a1a1a, #0000);*/
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 20px;
}
@media (max-width:786px) {
    .header-inner {
        padding: 0 20px !important;
    }
}

.logo {display: flex;}

.logo a {
    display: flex;
    font-size: 44px;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 6px;
    font-weight: 600;
    color: #d7a86e;
    padding: 0 0 0 10px;

    text-shadow: 0 0 10px rgba(210, 188, 123, 0.22);
    background: linear-gradient(45deg, #f3d9a7, #d7a86e, #b88650);
    background-clip: border-box;
    -webkit-background-clip: text;
    color: transparent;
}


/* --- NAV BASIS --- */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    /*background: #222;*/

    width: 100%;
    justify-content: center;
}

.nav-links a {
    margin-left: 30px;
    text-decoration: none;
    color: #e6d3a3;
    transition: 0.3s;
    font-weight: 600;
}

.nav-links a:hover {
    color: #d4af37;
}

/* --- BURGER MENU --- */
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger span {
    width: 30px;
    height: 3px;
    background: #e6d3a3;
    margin: 2px 0px 3px;
    transition: 0.3s;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0;
        top: 70px;
        background: #444;
        width: 200px;
        display: flex;
        flex-direction: column;
        padding: 20px;
        opacity: 0;
        pointer-events: none;
        transform: translateX(100%);
        transition: 0.3s ease-in-out;

        border-radius: 12px 0 0 12px;
    }

    .nav-links a {
        margin: 15px 0;
    }

    .burger {
        display: flex;
    }

    /* aktiviertes Menü */
    .nav-links.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(0);
    }

    /* Burger-Animation */
    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
}
/* --- END RESPONSIVE --- */


/* HERO */
.hero.mob-tab {display: none;}
.hero.desk {
    padding-top: 150px;
    background: radial-gradient(circle, #ffffff05, #0000);

    position: relative;
    overflow: hidden; /* verhindert Scrollbalken */
    margin-bottom: -25px;
}

.hero-inner {
    display: flex;
    align-items: center;
    /*gap: 50px;*/
    padding-top: 0;
    padding-bottom: 0;

    justify-content: space-between;

    background: rgba(0, 0, 0, 0) url('img/hero_background-picture-desk.png');
    background-repeat: no-repeat;
    background-position: center right 0;
    background-size: contain;
    border-radius: 8px;
}
@media (min-width:769px) and (max-width:1029px) {
    .hero-inner {
        background-size: cover;
        background-position: center center;
    }
}

.hero-text {
    flex: 1;
    max-width: 40%;
    padding: 50px 0px 50px;
}

.hero-text h1 {
    font-size: 40px;
    margin-bottom: 30px;
    margin-top: 5px;
}

.hero-text p {
    margin-bottom: 50px;
    color: #cfcfcf;
    hyphens: auto;
}

.hero-image img {
    width: 100%;
    border-radius: 0 10px 10px 0;

    
    min-width: 890px;        /* Bildgröße bleibt konstant */
    min-height: 390px;
    width: 100%;
    height: auto;
    position: relative;
    right: 0;            /* Default */
    transition: right 0.3s ease;
}

/* ########## BUTTON TERMIN WÄHLEN ########## */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border: 1px solid #d4af37;
    color: #e9d6ad;
    text-decoration: none;
    transition: 0.3s;
    border-radius: 8px;
    margin-bottom: 10px;
    /*background: #ffffff0f;*/
    background: #c7b77814 radial-gradient(circle, #d4b87521, #0000);

    font-size: 100%;
    text-align: center;
}

.btn:hover {
    background: #d4af37;
    color: #000;
}

.booking-wrapperDesk {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: #111111e0;
    padding: 0 20px;
    border-radius: 8px;
    margin: 1%;
}

/* Wenn geöffnet */
.booking-wrapperDesk.open {
    max-height: 360px; /*  ausreichend groß wählen */
    padding: 20px;
    margin: 1%;

    display: flex;
    align-items: center;
}

.booking-formMobTab {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0;
}

.booking-formDesk {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0;
}

label {
    color: #e6d3a3;
}

input {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #555;
    background: #ece1d1ed;
    color: #111;
    text-align: center;
}
textarea {
    background: #ece1d1ed;
}

.submit-btn {
    margin-top: 10px;
}

/* ########## BOOKING CONTAINER FÜR TABLET ##########  */
.booking-wrapperMobTab {
    position: absolute; 
    right: 0;
    top: 80%;
    transform: translateX(100%) translateY(-50%); /* komplett rechts außerhalb */
    
    width: auto;
    background: #111111e0;
    padding: 20px;
    border-radius: 8px;

    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
    z-index: 0;
}

/* Wenn geöffnet – fährt von rechts ins Bild */
.booking-wrapperMobTab.open {
    transform: translateX(0) translateY(-50%); 
    opacity: 1;
}

.booking-formMobTab {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 0 10px;
}

#messageWrapperMobTab {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: center;
}

#errorDesk {
    text-align: center; 
    margin: 55px 0 -60px;
}

#loadingSpinnerMobTab {
    display:none;
    text-align:center;
    margin:55px 0 -60px;
    font-size:14px;
    color:#555;
}

.spinner {
    margin:0 auto 6px auto;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #555;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
}
/* ########## ENDE BOOKING CONTAINER FÜR TABLET ##########  */

/* ########## BOOKING CONTAINER FÜR DEKTOP ########## */
#messageWrapperDesk {
    display: flex;
    flex-direction: column;
    width: 100%;
}

#errorDesk {
    text-align: center; 
    margin: 55px 0 -60px;
}

#loadingSpinnerDesk {
    display:none;
    text-align:center;
    margin:55px 0 -60px;
    font-size:14px;
    color:#555;
}

.spinner {
    margin:0 auto 6px auto;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #555;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
}
/* ########## ENDE BOOKING CONTAINER FÜR DESKTOP ############ */

/* ########## END - BUTTON TERMIN WÄHLEN ########## */

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .hero.desk {display: none;}
    /* HERO */
    .hero.mob-tab {
        display: grid;
        grid-template-columns: 100%;
        padding-top: 150px;
        position: relative;
        overflow: hidden;
        margin-bottom: -25px;
    }
    .hero.mob-tab img { 
        width: auto;
        height: 100%;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
    }
    /* CONTAINER */
    .container {
        margin: 0 auto;
        /*padding: 0 20px;*/
        padding: 0;
    }
    .hero-inner {
        padding-top: 0;
        padding-bottom: 0;
    }
    .hero-text {
        max-width: 100%;
        padding: 40px 20px;

        background: rgba(0, 0, 0, 0.27);
    }
}
/* --- END RESPONSIVE --- */


/* SERVICES */
.services {
    padding: 90px 0 70px;
    text-align: center;
}

.services h2 {
    font-size: 32px;
    margin-bottom: 75px;
}
@media (max-width:768px) {
    .services {
        padding: 90px 0 0;
        text-align: center;
    }

    .services h2 {
        font-size: 32px;
        margin-bottom: 75px;
    }
}
/* ENDE SERVICES */

/* KONTAKT */
.kontakt {
    padding: 0 0 70px;
}

.kontakt h2 {
    font-size: 32px;
    margin-bottom: 75px;
}
@media (max-width:768px) {
    .kontakt {
        padding: 0 0 90px;
    }

    .kontakt h2 {
        font-size: 32px;
        margin-bottom: 75px;
    }
}
/* ENDE KONTAKT */


/* ################################### CARDS MOBILE ################################### */
@media (max-width:575px) {
    .cards-tab {display: none;}
    .cards-desktop {display: none;}

    #leistungen {
        scroll-margin-top: 80px; /* Höhe deiner Navbar */
    }

    .cards-mobile {
        padding: 0;            /* falls du Padding behalten willst: einfach ändern */
        margin: 0 0 30px;
        background: none;      /* entfernt Hintergrund */
        border: none;          /* entfernt Border */
        overflow: visible;
    }

    /* Jede Card im mobilen Layout */
    .cards-mobile .card {
        margin-bottom: 25px;
    }

    /* Bild: 100% Breite */
    .cards-mobile .card > img {
        width: 100%;
        height: auto;
        /*border-radius: 10px;*/
    }

    /* Überschrift unter Bild */
    .cards-mobile .card h3 {
        display: flex;
        align-items: center;
        font-size: 1.2rem;
        margin: 20px;
        padding-bottom: 5px;
    }

    /* Icon im H3 */
    .cards-mobile .card h3 img {
        width: 24px;
        height: auto;
        margin-right: 12px;
    }

    /* Beschreibung */
    .cards-mobile .card p {
        margin: 0 20px;
        color: #ccc;
        line-height: 1.4;
        text-align: left;
        hyphens: auto;
    }

    /* Button – volle Breite */
    .cards-mobile .card .btn-outline {
        padding: 10px 20px;
        border: 1px solid #d4af37;
        color: #cdbd9b;
        text-decoration: none;
        display: flex;
        justify-content: center;
        transition: 0.3s;
        border-radius: 8px;
        /*background: #ffffff0f;*/
        background: #c7b77814 radial-gradient(circle, #d4b87521, #0000);
        margin: 30px 20px 20px;
    }

    .cards-mobile .card .btn-outline:hover {
        background: #d4af37;
        color: #000;
    }

    .cards-mobile .card {
        /*display: flex;
        flex-direction: column;
        gap: 15px;
        border: 1px solid rgba(212,175,55,0.3);*/
        background: rgba(0, 0, 0, 0.27);
        padding: 0 0 1px;
        margin: 67px 0 90px;
        /*border-radius: 10px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        transform: scale(1); /* Basiszustand */
    }
}
/* ################################### END CARDS MOBILE ################################### */

/* ################################### CARDS TABLET ################################### */
@media (min-width:576px) and (max-width:768px) {
    .cards-mobile {display: none;}
    .cards-desktop {display: none;}
    
    #leistungen {
        scroll-margin-top: 80px; /* Höhe deiner Navbar */
    }

    .cards-tab .card {
        background: rgba(0, 0, 0, 0.27);
        /*border: 1px solid rgba(212,175,55,0.3);*/
        padding: 0;
        border-radius: 8px;
        /*transition: 0.3s;*/

        display: grid;
        grid-template-columns: 1fr 1fr; /* 50% / 50% */
        grid-template-rows: auto auto auto; /* h3, p, button */
        gap: 25px;
        align-items: start;
        margin: 67px 0 70px;
    }

    /* Bild: nimmt komplette linke Spalte und alle 3 Zeilen ein */
    .cards-tab .card > img {
        grid-row: 1 / 4;
        grid-column: 1 / 2;
        width: 100%;
        height: 100%;
        object-fit: cover;  /* Bild füllt volle Höhe */
        border-radius: 10px;
    }

    /* Rechte Inhalte (50% Breite) */
    .cards-tab .card h3 {
        display: flex;
        align-items: center;
        margin: 10px 0 0;
        grid-column: 2 / 3; /* rechte Spalte */
    }

    .cards-tab .card h3 img {
        width: 24px;
        height: auto;
        margin-right: 10px;
    }

    .cards-tab .card p {
        grid-column: 2 / 3;
        margin: 0 10px 10px 0;
        color: #ccc;
        text-align: left;
        hyphens: auto;
    }

    .cards-tab .card .btn-outline {
        grid-column: 1 / 3; /* Button über volle Breite */
        width: 100%;
        text-align: center;
        padding: 10px 0;
        border-radius: 8px;
        margin-top: 10px;
        color: #d4af37;
        border: 1px solid #d4af37;
        transition: 0.3s;
        background: #ffffff0f;
    }

    .cards-tab .card .btn-outline:hover {
        background: #d4af37;
        color: #000;
    }
}
/* ################################### END CARDS TABLET ################################### */

/* ################################### CARDS DESKTOP > ################################### */
@media (min-width:769px) {
    .cards-mobile {display: none;}
    .cards-tab {display: none;}

    #leistungen {
        scroll-margin-top: 80px; /* Höhe deiner Navbar */
    }

    /* --- Hauptcontainer: 3 Cards nebeneinander --- */
    .cards-desktop {padding: 65px 0 0;}
    .cards-desktop .cards {
        display: flex;
        justify-content: space-between;
        gap: 50px;               /* Abstand zwischen Cards */
    }

    /* --- Jede einzelne Card --- */
    .cards-desktop .card {
        flex: 1;                                     /* alle 3 Cards gleich breit */
        background: rgba(0, 0, 0, 0.27);
        border: 1px solid rgba(212,175,55,0.3);
        padding: 0;
        border-radius: 8px;
        transition: transform 0.25s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;                      /* Elemente untereinander */
        gap: 15px;
        transition: 0.3s;
    }

    /* Hover mit 10px Sicherheitsabstand */
    .cards-desktop .card:hover {
        transform: scale(1.03);
        box-shadow: 0 10px 25px rgba(0,0,0,0.35);
    }

    /* --- Bild ganz oben, 100% Breite --- */
    .cards-desktop .card > img {
        width: 100%;
        height: auto;
        border-radius: 0;
        border-bottom: 2px solid #917229;
    }

    /* --- H3 direkt unter dem Bild --- */
    .cards-desktop .card h3 {
        display: flex;
        align-items: center;
        margin: 0;
        padding: 5px 20px;
    }

    /* Icon im H3 */
    .cards-desktop .card h3 img {
        width: 24px;
        height: auto;
        margin-right: 10px;
    }

    /* --- Text unter der Überschrift --- */
    .cards-desktop .card p {
        margin: 0;
        color: #ccc;
        padding: 0 20px 10px 20px;

        text-align: left;
        hyphens: auto;
    }

    /* --- Button unten, über volle Breite --- */
    .cards-desktop .card .btn-outline {
        width: auto;
        text-align: center;
        padding: 12px 0;
        border-radius: 8px;
        margin: auto 20px 20px;           /* Button IMMER ganz unten */
        color: #cdbd9b;
        border: 1px solid #d4af37;
        transition: 0.3s;
        /*background: #ffffff0f;*/
        background: #c7b77814 radial-gradient(circle, #d4b87521, #0000);
    }

    .cards-desktop .card .btn-outline:hover {
        background: #d4af37;
        color: #000;
    }

    /* Hover-Zoom */
    .cards-desktop .card:hover {
        transform: scale(1.04);
        box-shadow: 0 10px 28px rgba(0,0,0,0.35);
        border-color: #d4af37;
        transition: 0.3s;
    }
    
    /* ---- OPTION 3: DARK GOLD PREMIUM BORDER ---- */
    .cards-desktop .card {
        position: relative;
        overflow: hidden;
    }

    /* Edler, dunkler Premium-Goldrahmen */
    .cards-desktop .card::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 8px;

        /* Dark-Gold Farbverlauf */
        background: linear-gradient(
            135deg,
            #3a2b0f 0%,      /* sehr dunkles, brüniertes Gold */
            #6d5320 25%,     /* dunkles, warmes Gold */
            #b89a4e 50%,     /* dezentes helleres Highlight */
            #6d5320 75%,     /* zurück zu dunklem Gold */
            #3a2b0f 100%     /* tiefer Abschluss */
        );

        padding: 2px;
        z-index: 1;

        /* Maskierung, damit innen frei bleibt */
        -webkit-mask:
            linear-gradient(#000 0 0) content-box,
            linear-gradient(#000 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;

        opacity: 0.9;
        filter: brightness(1.0) contrast(1.2);
    }

    /* Card-Inhalt über der Border */
    .cards-desktop .card > * {
        position: relative;
        z-index: 2;
    }

    /* Hover: nur leicht stärker, weiterhin edel */
    .cards-desktop .card:hover::before {
        filter: brightness(1.15) contrast(1.25);
        opacity: 1;
    }

}
/* ################################### END CARDS DESKTOP > ################################### */

/* ################################### SECTION KONTAKT ####################################### */
#kontakt {
        scroll-margin-top: 80px; /* Höhe deiner Navbar */
    }

/* Layout */
.kontakt-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: 30% 65%;
    justify-content: space-between;
    gap: 5%;
    margin-top: 65px;
}

.kontakt-info,
.kontakt-formular {
    flex: 1;
    background: rgba(0, 0, 0, 0.27);
    border-radius: 8px;
    padding: 20px;
}

.kontakt-info p {
    line-height: 1.6;
}
.kontakt-info a {
    font-weight: bold;
    color: inherit;
}

/* Form */
.kontakt-formular form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Zeile mit zwei Feldern */
.form-row {
    display: flex;
    gap: 20px;
}

/* Jedes Feld soll gleich breit sein */
.form-row .form-group {
    flex: 1;
}

/* Responsiv bei kleinen Displays einspaltig */
@media (max-width: 700px) {
    .form-row {
        flex-direction: column;
    }
}


label {
    font-weight: 400;
    margin-bottom: -5px;
}

input,
textarea {
    padding: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

textarea {
    min-height: 120px;
}

/* Fehler-Anzeige */
.error-msg {
    display: none;
    font-size: 0.85rem;
    color: #c62828;
}

.invalid .error-msg {
    display: block;
}

input:invalid,
textarea:invalid,
.checkbox-group input:invalid {
    border-color: #b8a076;
}

/* Checkbox */
.checkbox-group {
    display: flex;
    flex-direction: column;
}

.checkbox-group label { 
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.checkbox-group label a {
    white-space: normal;
    font-weight: bold;
    color: #e6d3a3;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group .error-msg {
    display: none;
    font-size: 0.85rem;
    color: #c62828;
    margin-top: 4px;
}

.checkbox-group.invalid .error-msg {
    display: block;
}

.checkbox-group input[type="checkbox"]:invalid {
    outline: 2px solid #c62828;
}

/* Responsive */
@media (max-width: 700px) {
    .form-group.checkbox-group {
        margin-bottom: 10px;
    }
}
@media (max-width: 900px) {
    .kontakt-wrapper {
        flex-direction: column;
    }
}

/* TABLET */
@media (max-width:768px) {
    .kontakt-wrapper {
        width: 100%;
        display: grid;
        grid-template-columns: 100%;
        justify-content: space-between;
        gap: 2%;
        margin-top: 65px;
    }
}

/* Zeile mit zwei Feldern */
.form-row {
    display: flex;
    gap: 20px;
}

/* Jedes Feld gleich breit */
.form-row .form-group {
    flex: 1;
}

/* Inputfeld-Design */
input, textarea {
    padding: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;

    width: 100%;
    min-width: 20px;
}

/* Fehlerdarstellung */
@media (max-width:768px) {
    .error-msgDesk {display: none !important;}
    .error-msgMobTab {
        display: none;
        font-size: 0.95rem;
        color: #f00;
        font-weight: bold;
        margin: 50px 0 -50px;
    }
}
@media (min-width:769px) {
    .error-msgMobTab {display: none !important;}
    .error-msgDesk {
        display: none;
        font-size: 0.95rem;
        color: #f00;
        font-weight: bold;
    }
}

.error-msg {
    display: none;
    font-size: 0.95rem;
    color: #f00;
    font-weight: bold;
}

.invalid .error-msg {
    display: block;
}

input:invalid,
textarea:invalid {
    border-color: #c62828;
}

/* Checkbox */
.checkbox-group label {
    display: flex;
    gap: 8px;
    align-items: center;
}

/* Mobile: einspaltig */
@media (max-width: 700px) {
    .form-row {
        flex-direction: column;
    }
}

/* ################################### END SECTION KONTAKT ################################### */

/* FOOTER */
.footer {
    padding: 66px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
}

.footer-col h4, .footer-col-grid2 h4, .footer-col-grid1 h4, .footer-col-grid1-center h4 {
    margin-bottom: 15px;
}

.footer-col p, .footer-col-grid2 p,
.footer-col a, .footer-col-grid2 a,
.footer-col-grid1 p a {
    color: #e6d3a3;
    text-decoration: none;
    margin-bottom: 8px;
    display: block;
}

.footer-col a:hover {
    color: #d4af37;
}

.footer-col h4 img {
    margin: 0px 4px -4px 0;
}

/* ############################ RESPONSIVES ############################# */

/* ########## FOOTER FOR MOBILE */
@media (max-width:576px) {
    .footer-display-tablet, .footer-display-desktop {display: none;}

    .footer-inner {
        display: block;
    }

    .footer-col-grid1, .footer-col-grid1-center {
        text-align: center;
    }

    .footer-col-grid1 h4 img, .footer-col-grid1-center h4 img {
        margin: 0px 4px -4px 0;
    }

    .footer-col-grid1 p, .footer-col-grid1 a, .footer-col-grid1 p a, .footer-col-grid1-center p a {
        text-decoration: none;
        margin: 0 0 8px 0;
        transition: 0.3s;
    }
    .footer-col-grid1 a:hover {
        color: #d4af37;
        transition: 0.3s;
    }
    .footer-col-grid1-center {
        margin: 50px 0;
    }
}
/* ########## END FOOTER FOR MOBILE */

/* ########## FOOTER FOR TABLET */
@media (min-width:577px) and (max-width:768px) {
    .footer-display-mobile, .footer-display-desktop {display: none;}
    .footer-grid2 {
        display: grid;
        grid-template-columns: 48% 48%;
        gap: 4%;
    }
    .footer-grid1 {
        display: grid;
        grid-template-columns: 100%;
        margin-top: 4%;
    }

    .footer-inner {
        display: block;
    }

    .footer-col-grid1 h4 img, .footer-col-grid2 h4 img {
        margin: 0px 4px -4px 0;
    }

    .footer-col-grid1-center {
        display: inline-block;
        background-color: #3d3523a6;
        padding: 20px;
        border-radius: 10px;
    }

    .footer-col-grid1 {
        display: inline-block;
        background-color: #3e392fab;
        padding: 20px;
        border-radius: 10px;
    }
    .footer-col-grid1 p, .footer-col-grid1 a {
        display: inline-block;
        color: #aaa;
        text-decoration: none;
        margin: 0 8px 8px 0;
        transition: 0.3s;
    }
    .footer-col-grid1 a:hover {
        color: #d4af37;
        transition: 0.3s;
    }

    .footer-col-grid2 {
        background-color: #3e392fab;
        padding: 20px;
        border-radius: 10px;
    }
}
/* ########## END FOOTER FOR TABLET */

/* ########## FOOTER FOR DESKTOP */
@media (min-width:769px) {
    .footer-display-mobile, .footer-display-tablet {display: none;}
}
/* ########## END FOOTER FOR DESKTOP */