/* ============================================================
   BASE STYLES - the-models Dubai
   New Design: Terracotta / Charcoal / Cream
   Fonts: Cormorant Garamond (headings), Nunito Sans (body)
   ============================================================ */

/* --- CSS Reset & Box Sizing --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Nunito Sans', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.7;
    color: #2a2a2a;
    background-color: #faf7f2;
    overflow-x: hidden;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-weight: 500;
    line-height: 1.25;
    color: #2a2a2a;
    margin-bottom: 0.75em;
}

h1 {
    font-size: 3.2rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.4rem;
    font-weight: 500;
}

h3 {
    font-size: 1.6rem;
    font-weight: 500;
}

p {
    margin-bottom: 1em;
    line-height: 1.8;
}

a {
    color: #c4683c;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #a3522d;
}

strong {
    font-weight: 700;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

/* --- Utility --- */
.clearer {
    clear: both;
    line-height: 0;
    height: 0;
}

/* --- Animations (CSS keyframes) --- */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes bounceInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animated { animation-duration: 0.8s; animation-fill-mode: both; }
.fadeIn { animation-name: fadeIn; }
.fadeInLeft { animation-name: fadeInLeft; }
.fadeInRight { animation-name: fadeInRight; }
.bounceInUp { animation-name: bounceInUp; }

.myHidden { opacity: 0; transition: opacity 0.4s ease; }
.myVisible { opacity: 1; }

/* --- Buttons --- */
.btn {
    display: inline-block;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 14px 36px;
    border: 2px solid transparent;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    text-align: center;
    margin-bottom: 5px;
}

.btn-primary {
    color: #fff;
    background-color: #c4683c;
    border-color: #c4683c;
}

.btn-primary:hover {
    color: #fff;
    background-color: #a3522d;
    border-color: #a3522d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 104, 60, 0.3);
}

.btn-primary:focus,
.btn-primary.focus {
    color: #fff;
    background-color: #a3522d;
    border-color: #a3522d;
    box-shadow: 0 0 0 0.2rem rgba(196, 104, 60, 0.35);
}

.btn-success {
    color: #fff;
    background-color: #7a8b6f;
    border-color: #7a8b6f;
}

.btn-success:hover {
    color: #fff;
    background-color: #627358;
    border-color: #627358;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(122, 139, 111, 0.3);
}

.btn-success:focus,
.btn-success.focus {
    color: #fff;
    background-color: #627358;
    border-color: #627358;
    box-shadow: 0 0 0 0.2rem rgba(122, 139, 111, 0.35);
}

.btn-transparent {
    color: #fff;
    background: rgba(196, 104, 60, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
}

.btn-transparent:hover {
    color: #2a2a2a;
    background-color: #faf7f2;
    border-color: #faf7f2;
    transform: translateY(-2px);
}

/* --- Hover Underline Effect --- */
.hvr-underline-from-center {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.hvr-underline-from-center:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 51%;
    right: 51%;
    bottom: 0;
    background: #c4683c;
    height: 2px;
    transition: left 0.3s ease-out, right 0.3s ease-out;
}

.hvr-underline-from-center:hover:before,
.hvr-underline-from-center:focus:before,
.hvr-underline-from-center:active:before {
    left: 0;
    right: 0;
}

/* --- Header --- */
.head-1 {
    width: 100%;
    background: #faf7f2;
    height: 130px;
    border-bottom: 1px solid rgba(196, 104, 60, 0.15);
}

.head-1-wrapper {
    width: 1024px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: 100%;
}

.head-1-left {
    float: left;
    width: 55%;
}

.head-1-right {
    float: right;
    width: 45%;
    text-align: right;
}

.head-box-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding-top: 38px;
    padding-bottom: 2px;
    padding-left: 25px;
}

.head-box-logo a {
    color: #2a2a2a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.head-box-logo a:hover {
    color: #c4683c;
}

.head-box-slogan {
    color: #c4683c;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    padding-left: 25px;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.head-box-contact {
    color: #2a2a2a;
    font-size: 0.95rem;
    padding-top: 45px;
}

.head-box-contact a {
    color: #2a2a2a;
    font-size: 0.95rem;
    font-weight: 400;
}

.head-box-contact a:hover {
    color: #c4683c;
}

.head-box-phone {
    margin-bottom: 4px;
}

.icon-phone, .icon-email {
    vertical-align: middle;
    font-style: normal;
}

/* --- Navigation Bar --- */
.balken {
    display: none;
}

.navigation {
    width: 100%;
    position: absolute;
    z-index: 100;
    top: 130px;
}

.navigation-wrapper {
    color: #faf7f2;
    width: 1920px;
    height: 50px;
    background-color: #2a2a2a;
    border-bottom: 3px solid #c4683c;
    z-index: 101;
    margin: 0 auto;
}

@media only screen and (max-width:1920px) {
    .navigation-wrapper {
        width: 100%;
    }
}

#navigation-main {
    width: 1024px;
    margin: 0 auto;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    padding-left: 15px;
}

#navigation-main ul,
#navigation-main li {
    margin: 0;
    padding: 0;
}

#navigation-main li {
    list-style: none;
}

#navigation-main a {
    text-decoration: none;
    color: rgba(250, 247, 242, 0.85);
    text-transform: uppercase;
}

#navigation-main ul > li {
    float: left;
}

#navigation-main ul > li a {
    color: rgba(250, 247, 242, 0.85);
    font-weight: 600;
    line-height: 47px;
    height: 47px;
    display: block;
    margin: 0px 10px;
    transition: color 0.3s ease;
    position: relative;
}

#navigation-main ul > li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    height: 3px;
    background: #c4683c;
    transition: left 0.3s ease, right 0.3s ease;
}

#navigation-main ul li a:hover {
    color: #fff;
    text-decoration: none;
}

#navigation-main ul li a:hover::after {
    left: 0;
    right: 0;
}

#navigation-main ul li ul {
    display: none;
    position: absolute;
    background-color: rgba(42, 42, 42, 0.97);
    font-size: 100%;
    border-radius: 0;
    padding: 0 10px 10px 10px;
    border-top: 3px solid #c4683c;
}

#navigation-main ul li ul li {
    float: none;
    line-height: 40px;
    height: 40px;
}

#navigation-main ul li ul li a {
    text-transform: inherit;
}

@media only screen and (max-width:1024px) {
    #navigation-main {
        display: none;
    }
}

/* --- Mobile Navigation --- */
#navigation-mobile-toggle {
    display: none;
}

.navigation-mobile-toggle {
    display: none;
}

.navigation-trigger,
.navigation-mobile {
    display: none;
}

/* --- Main Wrapper --- */
.wrapper {
    max-width: 1920px;
    margin: 0 auto;
    background: #faf7f2;
    overflow: hidden;
    font-size: 1.05rem;
}

/* --- Hero Banner --- */
.background-image {
    width: 100%;
    height: 850px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    text-align: center;
    color: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.background-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        170deg,
        rgba(42, 42, 42, 0.55) 0%,
        rgba(196, 104, 60, 0.2) 40%,
        rgba(42, 42, 42, 0.65) 100%
    );
    z-index: 1;
}

.background-image-head {
    width: 98%;
    margin: 0 1%;
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.15;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
    top: 35%;
    position: relative;
    z-index: 2;
    letter-spacing: 8px;
    text-transform: uppercase;
}

.background-image-buttons {
    width: 98%;
    margin: 0 1%;
    padding-bottom: 15px;
    padding-top: 25px;
    top: 35%;
    position: relative;
    z-index: 2;
}

.background-image-buttons .btn {
    margin: 0 8px;
}

.background-image-text {
    width: 98%;
    margin: 0 1%;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1.0;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    padding-bottom: 15px;
    top: 38%;
    position: relative;
    z-index: 2;
}

.background-image a {
    color: #fff;
    text-decoration: none;
}

.icon-down-open {
    font-size: 0.7em;
    display: inline-block;
    animation: bounceDown 2s infinite;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* --- Content Sections --- */
.box-2-white {
    max-width: 100%;
    background: #faf7f2;
    padding: 70px 0;
    border-bottom: none;
}

.box-2-white:nth-child(even) {
    background: #fff;
}

.box-2-white:nth-child(odd) {
    background: #faf7f2;
}

.box-2-white-inner {
    max-width: 1280px;
    padding: 25px;
    margin: 0 auto;
}

.box-2-white-inner-1024px {
    max-width: 1024px;
    padding: 25px;
    margin: 0 auto;
}

/* Heading underline accents */
.box-2-white h1,
.box-2-white h2 {
    position: relative;
    padding-bottom: 18px;
}

.box-2-white h1::after,
.box-2-white h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: #c4683c;
    margin-top: 14px;
}

.box-2-white h1[style*="text-align: center"]::after,
.box-2-white h2[style*="text-align: center"]::after,
.box-2-white-inner-1024px > h1::after,
.box-2-white-inner-1024px > h2::after {
    margin-left: auto;
    margin-right: auto;
}

/* --- Dark Section --- */
.box-1-dark {
    max-width: 100%;
    background-color: #2a2a2a;
    padding: 70px 0;
    position: relative;
}

.box-1-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c4683c, #7a8b6f, #c4683c);
}

.box-1-dark-inner {
    max-width: 1280px;
    padding: 25px;
    margin: 0 auto;
}

.box-1-dark,
.box-1-dark h1,
.box-1-dark h2,
.box-1-dark h3,
.box-1-dark h4,
.box-1-dark h5 {
    color: #faf7f2;
}

.box-1-dark h2 {
    position: relative;
    padding-bottom: 18px;
}

.box-1-dark h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: #c4683c;
    margin-top: 14px;
}

.box-1-dark p {
    color: rgba(250, 247, 242, 0.75);
    line-height: 1.9;
}

.box-1-dark a {
    color: #c4683c;
}

.box-1-dark a:hover {
    color: #faf7f2;
}

/* --- Two Column Layout --- */
.box-text-50-prozent-links {
    float: left;
    width: 48%;
    padding-right: 2%;
}

.box-text-50-prozent-rechts {
    float: right;
    width: 48%;
    padding-left: 2%;
}

/* --- Image Float Layouts --- */
.box-bild-links-text-umflossen img {
    float: left;
    margin-right: 40px;
    margin-top: 5px;
    margin-bottom: 20px;
    max-width: 42%;
    border-radius: 2px;
    box-shadow: 0 15px 40px rgba(42, 42, 42, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.box-bild-links-text-umflossen img:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(42, 42, 42, 0.18);
}

.box-bild-rechts-text-umflossen img {
    float: right;
    margin-left: 40px;
    margin-top: 5px;
    margin-bottom: 20px;
    max-width: 42%;
    border-radius: 2px;
    box-shadow: 0 15px 40px rgba(42, 42, 42, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.box-bild-rechts-text-umflossen img:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(42, 42, 42, 0.18);
}

.box-2-white img.rounded {
    border-radius: 2px !important;
    box-shadow: 0 15px 40px rgba(42, 42, 42, 0.1);
}

/* --- Swiper / References --- */
.swiper {
    max-width: 750px;
    height: 100%;
    margin: 0 auto;
    padding: 10px 0;
}

.swiper img {
    max-width: 100%;
    height: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    filter: grayscale(40%);
}

.swiper img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* --- Layout Boxes --- */
.box-typ-3 {
    float: left;
    width: 31%;
    padding: 1%;
    margin: 1%;
}

.box-typ-3 img {
    text-align: center;
    margin: 0 auto;
    max-width: 100%;
}

/* --- Footer --- */
.footer {
    width: 100%;
    background: #2a2a2a;
    padding: 50px 10px 30px;
    font-size: 0.95rem;
    line-height: 1.8;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c4683c, #7a8b6f, #c4683c);
}

.footer-wrapper {
    width: 1024px;
    margin: 0 auto;
}

.footer,
.footer a,
.footer h1,
.footer h2 {
    color: #faf7f2;
}

.footer a:hover {
    color: #c4683c;
    text-decoration: none;
}

.footer > .footer-wrapper > .box-typ-3 > h3 {
    color: #c4683c;
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 2px;
    padding-bottom: 0px;
    margin-bottom: 8px;
    line-height: 1.5;
}

.footer p {
    margin-bottom: 4px;
    color: rgba(250, 247, 242, 0.65);
}

.footer-icon {
    vertical-align: middle;
    font-style: normal;
}

.footer-end {
    padding: 30px 0 10px;
    text-align: center;
    font-size: 0.8rem;
    border-top: 1px solid rgba(250, 247, 242, 0.1);
    margin-top: 30px;
}

.footer-end a {
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 10px;
    color: rgba(250, 247, 242, 0.5);
    font-weight: 600;
    font-size: 0.75rem;
}

.footer-end a:hover {
    color: #c4683c;
}

.footer .btn {
    font-size: 0.75rem;
    padding: 10px 24px;
    letter-spacing: 1.5px;
}

.footer .btn-transparent {
    border-color: rgba(196, 104, 60, 0.5);
    background-color: rgba(196, 104, 60, 0.1);
    color: #faf7f2;
}

.footer .btn-transparent:hover {
    background-color: #c4683c;
    border-color: #c4683c;
    color: #fff;
}

/* --- Sticky Footer --- */
.sticky-footer {
    display: none;
}

/* --- Video --- */
video {
    border-radius: 2px;
    box-shadow: 0 15px 40px rgba(42, 42, 42, 0.1);
}

/* --- Print --- */
@media print {
    * {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
    .myHidden {
        opacity: 1 !important;
    }
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

@media only screen and (max-width:1024px) {
    h1 { font-size: 2.6rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.4rem; }

    .wrapper {
        width: 100%;
        font-size: 1rem;
    }

    .balken {
        display: block;
        width: 100%;
        height: 20px;
        background: linear-gradient(180deg, #faf7f2 0%, #f3ede4 100%);
        border-bottom: 1px solid rgba(196, 104, 60, 0.1);
    }

    .head-1 {
        height: auto;
        border: 0;
        padding: 15px 0;
    }
    .head-1-wrapper {
        width: 100%;
        margin: 0 auto;
        display: block;
    }
    .head-1-left {
        float: none;
        width: 80%;
    }
    .head-1-right {
        float: none;
        width: 100%;
        text-align: left;
    }
    .head-box-logo {
        font-size: 1.7rem;
        padding-top: 0;
    }
    .head-box-slogan {
        font-size: 0.6rem;
        font-weight: 700;
        padding-bottom: 10px;
    }
    .head-box-contact {
        padding-top: 5px;
        padding-bottom: 0px;
        padding-left: 25px;
    }
    .head-box-phone {
        float: left;
        padding-right: 15px;
        padding-bottom: 0;
    }
    .head-box-email {
        float: left;
        padding-bottom: 0;
    }
    .navigation { display: none; }

    #navigation-mobile-toggle:checked ~ .navigation-mobile {
        position: fixed;
        left: 0;
    }

    .navigation-mobile-toggle {
        position: fixed;
        z-index: 100;
        right: 0;
        padding: 10px 16px;
        margin: 20px;
        color: #faf7f2;
        background: #c4683c;
        font-weight: 700;
        display: block;
        font-size: 0.7rem;
        letter-spacing: 2px;
        border-radius: 0;
        font-family: 'Nunito Sans', sans-serif;
        border: 2px solid rgba(250, 247, 242, 0.3);
        transition: background-color 0.3s ease;
        cursor: pointer;
    }
    .navigation-mobile-toggle:hover {
        background: #a3522d;
    }
    .sticky { margin: 0; }

    .navigation-mobile-toggle-2 {
        float: right;
        color: #faf7f2;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 5px 10px;
    }

    nav {
        width: 280px;
        left: -280px;
        overflow-y: auto;
        height: auto;
        max-height: 100%;
    }

    .navigation-mobile {
        width: 280px;
        top: 0px;
        position: fixed;
        display: block;
        background-color: rgba(42, 42, 42, 0.98);
        transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border-right: 3px solid #c4683c;
        z-index: 1000;
        font-size: 0.85rem;
        font-weight: 400;
        font-family: 'Nunito Sans', sans-serif;
        color: #faf7f2;
    }

    .nav-header {
        font-family: 'Cormorant Garamond', serif;
        font-weight: 500;
        font-size: 1.4rem;
        padding-left: 15px;
        padding-top: 10px;
        color: #c4683c;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .navigation-mobile a:link,
    .navigation-mobile a:visited {
        padding: 12px 15px;
        display: block;
        color: rgba(250, 247, 242, 0.85);
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.8rem;
        font-weight: 600;
    }
    .navigation-mobile a:hover {
        background-color: rgba(196, 104, 60, 0.15);
        color: #c4683c;
    }
    .navigation-mobile span {
        padding: 10px;
        display: block;
        color: #faf7f2;
        text-decoration: none;
        text-transform: uppercase;
    }
    .navigation-mobile span:hover {
        background-color: rgba(196, 104, 60, 0.15);
        cursor: pointer;
    }
    .navigation-mobile ul {
        margin: 0 auto;
        padding: 0;
    }
    .navigation-mobile ul li {
        float: none;
        border-bottom: 1px solid rgba(250, 247, 242, 0.06);
        list-style: none;
    }
    .navigation-mobile ul li:last-child {
        border-bottom: none;
    }
    .navigation-mobile ul li ul {
        display: none;
        font-size: 85%;
    }

    .footer,
    .footer-wrapper {
        max-width: 100%;
    }

    .background-image {
        max-height: 500px;
    }
    .background-image-head {
        font-size: 2.8rem;
        letter-spacing: 4px;
    }
    .background-image-text { font-size: 0.8rem; }
    .background-image-buttons .btn { font-weight: 600; }

    .box-2-white, .box-1-dark {
        padding: 50px 0;
    }
}

@media only screen and (max-width:640px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.3rem; }

    .wrapper { font-size: 0.95rem; }
    .balken { height: 12px; }
    .head-1-right { display: none; }
    .head-box-logo {
        font-size: 1.5rem;
        padding-left: 20px;
    }
    .head-box-slogan {
        font-size: 0.55rem;
        padding-left: 20px;
    }

    .sticky-footer {
        display: block;
        position: fixed;
        width: 100%;
        bottom: 0;
        z-index: 100;
        background: #2a2a2a;
        font-size: 0.75rem;
        font-family: 'Nunito Sans', sans-serif;
        border-top: 3px solid #c4683c;
        padding: 0;
    }
    .sticky-footer-left-button {
        width: 55%;
        padding: 10px 4px;
        margin: 8px 2%;
        color: #fff;
        background: #c4683c;
        float: left;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 700;
        border-radius: 0;
    }
    .sticky-footer-right-button {
        width: 33%;
        padding: 10px 4px;
        margin: 8px 2%;
        color: #fff;
        background: #7a8b6f;
        float: right;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 700;
        border-radius: 0;
    }
    .sticky-footer-right-button a {
        color: #faf7f2;
        vertical-align: middle;
        padding-left: 5px;
        text-decoration: none;
    }
    .sticky-footer-left-button a {
        color: #faf7f2;
        vertical-align: middle;
        padding-left: 5px;
        text-decoration: none;
    }
    .sticky-footer-left-button:active {
        background: #a3522d;
    }
    .sticky-footer-right-button:active {
        background: #627358;
    }

    .navigation-mobile-toggle {
        padding: 8px 12px;
        margin: 15px 5px 0 0;
    }
    .sticky { margin: 0; }

    .footer {
        width: 100%;
        font-size: 0.85rem;
        margin-bottom: 0;
        margin-top: 0;
        padding-bottom: 60px;
    }
    .footer p { margin: 8px 0; }

    .background-image {
        max-height: 350px;
    }
    .background-image-head {
        font-size: 2rem;
        letter-spacing: 3px;
    }
    .background-image-text {
        font-size: 0.75rem;
    }
    .background-image-buttons .btn {
        padding: 10px 20px;
        font-size: 0.7rem;
        margin: 0 4px;
    }

    .box-typ-3 {
        float: none;
        width: 100%;
    }
    .box-text-50-prozent-links,
    .box-text-50-prozent-rechts {
        float: none;
        width: 100%;
        padding: 0;
        margin-bottom: 30px;
    }
    .box-bild-links-text-umflossen img {
        margin-right: 20px;
        margin-bottom: 15px;
    }
    .box-bild-rechts-text-umflossen img {
        margin-left: 20px;
        margin-bottom: 15px;
    }

    .box-2-white-inner,
    .box-2-white-inner-1024px {
        padding: 0 20px;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    .box-2-white, .box-1-dark {
        padding: 40px 0;
    }
}

@media only screen and (max-width:480px) {
    .box-typ-3 {
        float: none;
        width: 98%;
        padding-bottom: 20px;
        margin: 0 auto;
    }

    .box-bild-links-text-umflossen img,
    .box-bild-rechts-text-umflossen img {
        float: none;
        max-width: 100%;
        margin: 0 0 20px 0;
        display: block;
    }
}

@media only screen and (max-width:320px) {
    .sticky-footer { font-size: 0.7rem; }
}

/* --- Focus States --- */
.form-control:focus {
    border-color: #c4683c;
    box-shadow: 0 0 0 0.15rem rgba(196, 104, 60, 0.2);
}

.btn:focus,
.btn.focus {
    box-shadow: 0 0 0 0.2rem rgba(196, 104, 60, 0.25);
    outline: none;
}

/* --- Selection Color --- */
::selection {
    background: rgba(196, 104, 60, 0.2);
    color: #2a2a2a;
}

::-moz-selection {
    background: rgba(196, 104, 60, 0.2);
    color: #2a2a2a;
}