@import "../lib/bs/5.3.3/bootstrap.min.css";

@import "set/bg_image.incl.css?v=1.2.0";

@import "https://font.nicdn.de/libre-baskerville.css";
@import "https://font.nicdn.de/oswald.css";

@import "https://lib.nicdn.de/fa/6.2.1/css/all.min.css?v1.0";


/* ===================================================== */
/* Farbvariablen - Hof Paulsen Design                    */
/* ===================================================== */
:root {
    --oak-moss: 107, 102, 84;
    --powder: 240, 234, 229;
    --almond: 204, 182, 158;
    --terra: 169, 141, 116;
    --sandalwood: 122, 73, 44;
    --white: 255, 255, 255;
    --black: 0, 0, 0;
    --black-light: 75, 85, 99;
    --blue: 139, 187, 217;
    --muted: 156, 163, 175;
    --font-family-1: 'Libre Baskerville';
    --font-family-2: Oswald;
}

/* ===================================================== */
/* Font-Families                                         */
/* ===================================================== */

.font-family-1 {
    font-family: var(--font-family-1), serif;
}
.font-family-2 {
    font-family: var(--font-family-2), sans-serif;
}

/* ===================================================== */
/* Colors Background                                     */
/* ===================================================== */

.bg-oak-moss {
    background: rgba(var(--oak-moss), 1);
}

.bg-powder {
    background: rgba(var(--powder), 1);
}

.bg-almond {
    background: rgba(var(--almond), 1);
}

.bg-terra {
    background: rgba(var(--terra), 1);
}

.bg-sandalwood {
    background: rgba(var(--sandalwood), 1);
}

.bg-white {
    background: rgba(var(--white), 1);
}

.bg-black {
    background: rgba(var(--black), 1);
}

/* ===================================================== */
/* Colors Text                                     */
/* ===================================================== */

.text-oak-moss {
    color: rgb(var(--oak-moss));
}
.text-powder {
    color: rgb(var(--powder));
}
.text-almond {
    color: rgb(var(--almond));
}
.text-terra {
    color: rgb(var(--terra));
}
.text-sandalwood {
    color: rgb(var(--sandalwood));
}
.text-white {
    color: rgb(var(--white));
}
.text-black {
    color: rgb(var(--black));
}
.text-primary {
    color: rgb(var(--blue)) !important;
}
.text-muted {
    color: rgb(var(--muted)) !important;
}


/* ===================================================== */
/* Colors Border                                     */
/* ===================================================== */

.border-oak-moss {
    --bs-border-color: rgb(var(--oak-moss));
}
.border-powder {
    --bs-border-color: rgb(var(--powder));
}
.border-almond {
    --bs-border-color: rgb(var(--almond));
}
.border-terra {
    --bs-border-color: rgb(var(--terra));
}
.border-sandalwood {
    --bs-border-color: rgb(var(--sandalwood));
}
.border-white {
    --bs-border-color: rgb(var(--white));
}
.border-black {
    --bs-border-color: rgb(var(--black));
}
.border-primary {
    --bs-border-color: rgb(var(--blue)) !important;
}
.border-muted {
    --bs-border-color: rgb(var(--muted)) !important;
}

/* ===================================================== */
/* Basis Styles                                          */
/* ===================================================== */
body {
    font-family: var(--font-family-1), serif;
    background: rgba(var(--almond), 0.1);
    color: rgb(var(--oak-moss));
    margin: 0;
}
.celement p {
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: rgb(42, 37, 34);
}
a {
    text-decoration: none;
    color: rgb(var(--oak-moss));
    transition: color 0.3s;
}

a:hover {
    color: rgb(var(--sandalwood));
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-family-1), serif;
}

img, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}


/* ===================================================== */
/* Aspect                                                */
/* ===================================================== */
.aspect-square {
    aspect-ratio: 1 / 1;
}

@media (min-width: 768px) {
    .ratio-md-16x9 {
        aspect-ratio: 16 / 9;
    }
}






/* ===================================================== */
/* Navigation                                            */
/* ===================================================== */
.navbar {
    background-color:transparent;
}

.navbar-brand {
    font-family: var(--font-family-2);
    font-weight: 500;
    color: rgb(var(--oak-moss));
}

.nav-link {
    color: rgb(var(--oak-moss));
    margin-left: 1rem;
    font-family: var(--font-family-2);
    font-weight: 500;
}

.nav-link:hover {
    color: rgb(var(--sandalwood));
}

.nav-link.disabled {
    text-decoration:underline;
}

.navbar.text-white a {
    color: var(--white);
}
.navbar.text-white:not(.open):not(.scroll) .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255,255,255,1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* ===================================================== */
/* Navigation Scroll OR Open                             */
/* ===================================================== */
.navbar {
    transition: background-color 0.3s ease;
}

.navbar.scroll,
.navbar.open {
    background-color: rgba(255,255,255, 0.8);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px); /* für Safari */
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
.navbar.scroll.text-white a,
.navbar.open.text-white a {
    color: rgb(var(--oak-moss));
}


/* ===================================================== */
/* Scroll to Explore                                     */
/* ===================================================== */
.scroll_to_explore {
    position: absolute;
    bottom: 0;
    left: 0;
}
/* ===================================================== */
/* IMAGES                                        */
/* ===================================================== */
.hover-zoom {
    transition: transform 0.5s ease;
}
.hover-zoom:hover {
    transform: scale(1.05);
}
.hover-shadow {
    transition: box-shadow 0.3s ease;
}
.hover-shadow:hover {
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15) !important;
}


/* ===================================================== */
/* LINKS                                                 */
/* ===================================================== */
.hover-link {
    transition: color 0.3s ease;
}
.hover-link:hover {
    color: #fff !important;
}

/* ===================================================== */
/* FEWO Ausstattung                                      */
/* ===================================================== */
.list-group-item {
    background-color: transparent !important;
}
.list-group-item-icon {
    width:40px;
}

/* ===================================================== */
/* Sticky Top                                            */
/* ===================================================== */
.sticky-top {
    padding-top:80px;
}
/* ===================================================== */
/* Hero Section                                          */
/* ===================================================== */
.hero {
    position: relative;
    height: 100vh;
    background-color: rgb(var(--oak-moss));
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.2), rgba(0,0,0,0.3));
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: rgb(var(--white));
}

.hero h1 {
    font-size: 3.75rem;
    line-height: 1;
    font-family: var(--font-family-2), sans-serif;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.5rem;
    line-height: 2rem;
    margin-top: 2rem;
    margin-bottom: 4rem;
    max-width: 48rem;
}

.btn-primary {
    background-color: rgb(var(--almond));
    color: var(--sandalwood);
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s;
    font-family: var(--font-family-2), sans-serif;
    font-weight: 400;
}

.btn-primary:hover {
    background-color: rgb(var(--terra));
}

.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* ===================================================== */
/* Buttons                                               */
/* ===================================================== */
.btn-primary.bg-sandalwood {
    background-color: rgb(var(--sandalwood));
    color: rgb(var(--white));
}

.btn-primary.bg-oak-moss {
    background-color: rgb(var(--oak-moss));
    color: rgb(var(--white));
}
.btn-primary.bg-blue {
    background-color: rgb(var(--blue));
    color: rgb(var(--white));
}
.btn.bg-almond:hover {
    background-color: rgb(var(--terra));
    color: rgb(var(--white));
}

/* ===================================================== */
/* Sections & Cards                                      */
/* ===================================================== */
section {
    padding: 5rem 0;
}

.card {
    background: rgb(var(--white));
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s;
}

.card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.card-title {
    font-weight: 500;
    font-family: var(--font-family-2), sans-serif;
}

.card-text {
    color: rgb(var(--black-light));
}


/* ===================================================== */
/* IMG Border                                            */
/* ===================================================== */
.img-border {
    border: 2px solid rgb(var(--almond)) !important;
    z-index: 1;
    left:24px;
    transform: translate(12px, 12px);
    width: calc(100% - 48px);
}
.img-container {

    z-index: 2;
}
.img-container .img-fluid {
    width: 100%;
    max-width: 100%;
}

/* ===================================================== */
/* CE Elements                                           */
/* ===================================================== */
.headline-center .headline,
.headline-center .teaser {
    text-align: center;
}
.headline-highlight .headline {
    font-size: 3rem;
    line-height: 1;
}
.headline-highlight .teaser {
    font-size: 1.25rem;
    line-height: 1.75rem;
    margin-bottom: 4rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================================== */
/* Formulare                                             */
/* ===================================================== */
form input, form textarea {
    border: 1px solid #ccc;
    padding: 0.75rem;
    border-radius: 0.5rem;
    width: 100%;
    transition: border-color 0.3s;
}

form input:focus, form textarea:focus {
    border-color: var(--sandalwood);
    outline: none;
}

form button {
    background-color: var(--sandalwood);
    color: rgb(var(--white));
    padding: 0.75rem;
    border: none;
    border-radius: 0.5rem;
    margin-top: 1rem;
}

form button:hover {
    background-color: rgb(var(--terra));
}

/* ===================================================== */
/* Footer                                                */
/* ===================================================== */
footer {
    background: rgba(var(--oak-moss), 0.8) !important;
    padding: 3rem 0;
}

footer a {
    color: #cccccc;
}

footer a:hover {
    color: rgb(var(--white));
}


footer .brand path {
    fill: rgb(var(--white));
}

.footer-main a.text-secondary {

    color: rgba(var(--white), 0.8) !important;
}
.footer-main a.text-secondary:hover {
    color: rgb(var(--white)) !important;
    text-decoration: underline !important;
}

.footer-rights {
    color: #cccccc;
}


/* ===================================================== */
/* Social                                               */
/* ===================================================== */
.social {
    position: fixed;
    bottom: 50%;
    right: 0;
    z-index: 1000;
    padding:10px;
    border-top-left-radius: var(--bs-border-radius-lg)!important;
    border-bottom-left-radius: var(--bs-border-radius-lg)!important;
}

/* ===================================================== */
/* Booking                                               */
/* ===================================================== */
#booking .modal-dialog {
    max-width:calc(100% - 30px) !important;
}
#booking .close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 4rem;
    height: 4rem;
    border: 2px solid rgb(var(--white));
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(var(--white));
}
#booking .close i {
    font-size: 40px;
}
#booking #nextTab {
    background-color:transparent;
    color: rgb(var(--white));
    font-size: 2rem;
    border: 1px solid rgb(var(--white));
}
#booking #prevTab {
    color: rgb(var(--white));
    margin-bottom:25px;
}

/* nur beim ersten Tab anzeigen*/
#nextTab-info:not(.active) ~ #nextTab-info {
    display: none;

}
#nextTab-info {
    color: rgb(var(--white));
}

#booking .modal-content {
    background-color: transparent;
    border:none;
}
#booking .modal-header,
#booking .modal-footer {
    border: none;
}

#booking .lead {
    font-size: 3.75rem;
    line-height: 1;
    font-family: var(--font-family-2), sans-serif;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    color: rgb(var(--white));

}
#booking .lead-sub {
    font-size: 1rem;
    line-height: 2rem;
    margin-top: 2rem;
    margin-bottom: 4rem;
    max-width: 48rem;
    color: rgb(var(--white));
}
#booking .btn-outline-white {
    background-color: transparent;
    color: rgb(var(--white));
    border: 2px solid rgb(var(--white));
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s, color 0.3s;
}
input[type="checkbox"].btn-check:checked + label {
    background-color: var(--bs-white) !important; /* oder eine andere Farbe */
    color: rgb(var(--black)) !important; /* optional: Textfarbe ändern */
    border-color: var(--black) !important; /* optional: Rahmen */
}
/* Standard: help ausblenden */
label .help {
    visibility: hidden;
    opacity: 0;
    height: 0;
    transition: opacity 0.2s;
}

/* Wenn Checkbox checked → Label direkt danach → .help sichtbar */
input[type="checkbox"].btn-check:checked + label .help {
    visibility: visible;
    opacity: 1;
    height: auto;
}


.modal-backdrop {
    --bs-backdrop-bg: rgb(var(--oak-moss)) !important;
    --bs-backdrop-opacity: 1 !important;
}