@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Jost', sans-serif;
    margin: 0;
    padding: 0;
    background: #f6f6f6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Jost", sans-serif;
    color: var(--color-text-dark);
    font-weight: 600;
    /* margin: 0; */
}

p,
li,
span {
    line-height: normal;
    margin: 0;
    font-family: "Crimson Text", serif;
}

a {
    text-decoration: none;
}

ul,
li {
    padding: 0;
    list-style: none;
}

/* Main header */
.main-header {
    position: fixed;
    top: 0;
    background: transparent;
    z-index: 50;
    width: 100%;
    height: 4rem;
    /* 64px */
}

.main-header img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.main-header .container-fluid {
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-header .menu-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.75rem;
    /* text-xs */
    letter-spacing: 0.2em;
    /* tracking-widest */
    color: white;
    background: transparent;
    border: none;
    cursor: pointer;
    user-select: none;
    position: fixed;
    z-index: 99999;
}

/* Menu icon container */
.menu-toggle {
    width: 40px;
    height: 30px;
    cursor: pointer;
    position: relative;
    z-index: 1000;
}

.menu-toggle span {
    display: block;
    height: 1px;
    background-color: white;
    margin: 10px 0;
    transition: 0.4s ease;
    border-radius: 3px;
}



.menu-toggle span:last-child {
    width: calc(100% - 10px);
}

/* Toggle effect */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
    width: unset;
}

.menu-button span:last-child {
    margin-top: 7px;
}

/* Each line */
.main-header .menu-icon span {
    display: block;
    height: 1.5px;
    background-color: white;
    border-radius: 1px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.menu-toggle.active span {
    background-color: #000000;
}

.menu-button.active span:last-child {
    color: #000;
}

.main-header .book-button {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    /* text-xs */
    letter-spacing: 0.2em;
    /* tracking-widest */
    color: white;
    background: transparent;
    border: 1px solid white;
    border-radius: 9999px;
    /* rounded-full */
    padding: 0.25rem 1rem;
    /* py-1 px-4 */
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
    user-select: none;
}

.main-header .book-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.banner-btn {
    filter: drop-shadow(0 0 1px black);
    border: 1px solid white;
    border-radius: 32px;
    padding: 10px 15px;
    color: white;
    height: 100%;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    letter-spacing: 7px;
}

.logoHolder {
    max-width: 250px;
    width: 100%;
    height: 55px;
    position: relative;
    display: none;
}

a.main-logo {
    width: 100%;
    height: 100%;
    display: block;
}

a.main-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.main-header {
    transition: all 0.3s ease;
}

.main-header.sticky {
    width: 100%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.main-header.sticky .menu-button span:last-child {
    color: #000000 !important;
    font-family: "Jost";
}

.main-header.sticky .menu-toggle span {
    background-color: #000000;
}

.main-header.sticky button.book-button {
    color: #fff;
    border-color: #EACBB7;
    background: #EACBB7;
    font-weight: 400;
}

.main-header.sticky .logoHolder {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* Sidemenu */
.sidemenu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-height: 0;
    overflow: auto;
    transition: max-height 0.3s ease-in-out;
}

.side-menu {
    position: relative;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    max-width: 500px;
    padding: 100px 0;
    z-index: 1000;
    background-color: #fff;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}

.side-menu.open {
    transform: translateX(0);
}

.sidemenu-wrapper.open {
    max-height: 100vh;
}

.side-menu ul {
    list-style: none;
    padding: 0;
}

.side-menu li {
    position: relative;
    font-size: 20px;
    background: #fff;
    line-height: 30px;
    font-family: "Jost", sans-serif;
}

.side-menu a {
    display: inline-block;
    text-decoration: none;
    font-weight: 300;
    padding: 20px 20px 20px 40px;
    letter-spacing: 6px;
    color: #000;
    text-transform: uppercase;
    transition: 0.2s;
    display: block;
    width: 100%;
    transition: all 0.3s ease;
}

.side-menu li:hover>a {
    background: #e7dac7;
}

.submenu,
.submenu-nested {
    display: none;
    padding-left: 15px;
}

.submenu-nested {
    position: absolute;
    top: 0;
    left: 100%;
    background: #fff;
    border-left: 1px solid #ddd;
}

.submenu.active,
.submenu-nested.active {
    display: block;
}

.submenu a,
.submenu-nested a {
    text-transform: none;
    letter-spacing: 4px;
    font-size: 16px;
    display: block;
    text-transform: uppercase;
}

.highlighted {
    background: #e6d7c6;
    padding: 8px 12px;
    display: inline-block;
}

@media (max-width: 768px) {

    .side-menu li:hover>.submenu,
    .submenu li:hover>.submenu-nested {
        /* display: none !important; */
    }
}

@media (min-width: 769px) {

    .side-menu li:hover>.submenu,
    .submenu li:hover>.submenu-nested {
        display: block !important;
    }
}

/* Main Banner */
/* Fixed background effect for video container */
.video-banner {
    height: 100vh;
    overflow: hidden;
}

.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    background-attachment: fixed;
}

.banner-logo {
    filter: brightness(0) invert(1);
    width: 100%;
    max-width: 500px;
}

.video-overlay {
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.video-banner .container {
    z-index: 2;
}

.content-section {
    background-color: #f8f9fa;
}

.fixed-bottom-banner {
    position: absolute;
    bottom: 30px;
    width: calc(100% - 20px);
    margin:0 auto;
    left:0;
}

/* Normal Section */
.mod-info-section {
    position: relative;
    background-color: #EACBB7;
    color: #111;
    overflow: hidden;
    padding: 160px 0 200px;
}

.mod-info-section.bg-blue {
    background: #a9c0c1;
}

.slanted-bg {
    width: 100%;
    height: 100%;
    background-color: #f3d7c8;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    position: absolute;
    z-index: 0;
    top: 0;
}

.mod-heading {
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 60px;
    line-height: 75px;
    letter-spacing: 10px;
    margin-bottom: 60px;
}

.mod-subheading {
    font-family: "Futura Round W01", sans-serif;
    font-size: 27px;
    line-height: 40px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 21px;
    letter-spacing: 5px;
}

.mod-description {
    font-size: 29px;
    color: #333;
    margin-bottom: 2rem;
    font-family: "Crimson Text", serif;
    text-align: center;
    line-height: 45px;
    font-weight: 500;
}

.mod-btn {
    font-size: 0.9em;
    line-height: 1.6em;
    padding: 1.4em 3em 1.4em;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    font-weight: 600;
    -o-transition: .5s;
    -ms-transition: .5s;
    -moz-transition: .5s;
    -webkit-transition: .5s;
    transition: .5s;
    width: max-content;
    white-space: normal;
    border-radius: 100px;
    background: transparent;
}

.mod-btn.border-white {
    border: 1px solid #fff;
    color: #fff;
}

.mod-btn:hover {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    box-shadow: none;
}

.rating-circle {
    background-color: #6ab2c5;
    border-radius: 50%;
    width: 300px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    padding: 10px;
}

.rating-number {
    font-size: 30px;
    line-height: 30px;
    color: #000;
}

.rating-text {
    text-align: center;
    margin-top: 5px;
    color: black;
    font-family: inherit;
    line-height: 1.5em;
    font-weight: 500;
    font-size: 30px;
}

.mod-testimonials li {
    margin-bottom: 0.7rem;
    font-style: italic;
    font-size: 19px;
    font-weight: 400;
}

.mod-text-sec-heading {
    text-transform: none;
    letter-spacing: 2px;
    margin-top: 25px;
    font-size: 30px;
    font-weight: 600;
}

.topics {
    margin: 0 auto;
    /* horizontal centering */
    display: flex;
    flex-wrap: wrap;
    /* space between pills */
    padding: 0;
    list-style: none;
    /* remove default bullets */
}

.topic-item {
    flex: 1 0 100%;
    margin-bottom: 30px;
    padding: 0 15px;
    /* full‑width on small screens */
}

@media (min-width: 768px) {
    .topic-item {
        flex: 0 0 calc(33.333% - 1rem);
        /* three per row minus gap */
    }
}

/* ----------  Pill links ---------- */
.pill-link {
    font-size: 16px;
    line-height: 1.6em;
    padding: 0.7em 1.5em 0.7em;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 400;
    color: black;
    border-radius: 100px;
    border: 1px solid white;
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: .5s;
    background: white;
    font-weight: 300;
}

.pill-link:hover,
.pill-link:focus {
    background-color: #000000;
    color: #ffffff;
    transform: translateY(-2px);
}


/* FAQ SECTION */
.faq-section {
    padding: 40px 20px;
}

/* FAQ item */
.faq-item {
    padding: 20px 0;
}

/* FAQ question */
.faq-question {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    font-size: 1.2rem;
    color: #000;
}

/* FAQ answer */
.faq-answer {
    display: none;
    margin-top: 15px;
    color: #222;
    font-size: 1.1rem;
    font-weight: 500;
    font-family: "Crimson Text", serif;
    line-height: 1.6;
}

/* Arrows */
.arrow {
    float: right;
    transition: transform 0.3s ease;
    font-size: 0.9rem;
    margin-left: 10px;
    color: #000;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}

/* Pricing Section */
section.pricing-section {
    padding: 40px 15px;
}

.pricing-header {
    font-size: 1.5rem;
    letter-spacing: 0.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.pricing-table {
    background-color: #c7d0d0;
    border-radius: 5px;
    overflow-x: auto;
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

.pricing-table th,
.pricing-table td {
    padding: 16px 20px;
    font-size: 1rem;
    color: #000;
    white-space: nowrap;
    font-family: "Crimson Text", serif;
    font-size: 28px;
    font-weight: 500;
}

.pricing-table tr:nth-child(even) {
    background-color: #90a6a6;
}

.pricing-table tr:nth-child(odd) {
    background-color: #c7d0d0;
}

.pricing-table th {
    background-color: transparent;
    font-weight: bold;
    text-align: left;
}

@media (max-width: 768px) {
    .pricing-table {
        overflow-x: auto;
    }
}

/* Map section */
.map-section {
    width: 100%;
    height: 720px;
    position: relative;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Blog Section */
section.blog-section {
    padding: 60px 15px;
    text-align: center;
    background: #EACBB7;
}

.blog-section h2 {
    font-size: 1.8em;
    line-height: 1.55em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 0.8em;
    margin-top: 1.7em;
    letter-spacing: 6px;
}

.blog-card {
    background-color: rgba(255, 255, 255, 0.5);
    padding: 30px 20px;
    border-radius: 4px;
    text-align: center;
    height: 100%;
}

.blog-date {
    color: #c99b6e;
    font-size: 0.9rem;
    text-transform: lowercase;
    margin-bottom: 10px;
}

.blog-title {
    font-weight: bold;
    font-size: 1rem;
    color: #e6a831;
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 1.4;
    display: block;
    letter-spacing: 3px;
    font-weight: 600;
    transition: all .3s ease;
}

.blog-title:hover {
    color: #5b4513;
}

.blog-content {
    font-size: 0.95rem;
    line-height: 1.6;
    font-family: "Crimson Text", serif;
    font-weight: 500;
}

.blog-content a {
    color: #e6a831;
    text-decoration: none;
}

.blog-content a:hover {
    text-decoration: underline;
}

@media (max-width: 767.98px) {
    .blog-card {
        margin-bottom: 30px;
    }
}

/* Footer */
.site-footer {
    background-color: #234040;
    color: #ffffff;
    text-align: center;
    padding: 100px 30px;
    position: relative;
}

.footer-logo {
    width: 100%;
    margin: 0 auto 20px;
    display: block;
    background: transparent;
    line-height: 60px;
    font-size: 2rem;
    color: #fff;
    max-width: 250px;
}

.footer-logo img {
    filter: brightness(0) invert(1);
}

.social-icons a {
    color: #ffffff;
    font-size: 1.3rem;
    margin: 0 10px;
    transition: opacity 0.2s;
}

.social-icons a:hover {
    opacity: 0.7;
}

.footer-text {
    font-size: 0.9rem;
    margin-top: 15px;
    font-family: "Crimson Text", serif;
    font-weight: 500;
}

.footer-text a {
    color: #ffffff;
    text-decoration: underline;
}

.contact-info a {
    font-size: 16px;
    font-family: "Crimson Text", serif;
    font-weight: 500;
    color: #ffffff;
    margin-top: 15px;
}

.contact-info a:first-child {
    border-right: 1px solid #ffffff;
    padding-right: 15px;
}

/* Innerpages */
.innerpage-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    /* padding: 50px 15px; */
    padding-top: 50px;
    background: #ffffff;
}

.innerpage-banner {
    width: 100%;
    height: 70vh;
    position: relative;
    max-height: 70vh;
}

.inner-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: fixed;
    max-height: 70vh;
}

.page-title {
    width: 100%;
    position: relative;
    text-align: center;
    font-size: 44px;
    letter-spacing: 12px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    margin: 50px 0;
}


/* Inner page - contact */
.kontakt-section {
    background-color: #fff;
    color: #000;
}

.kontakt-heading {
    font-weight: 700;
    letter-spacing: 5px;
    font-size: 2rem;
}

.kontakt-subheading {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 18px;
    margin-bottom: 12px;
    margin-top: 50px;
}

.kontakt-text {
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
}

.kontakt-logo img {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    max-width: 200px;
    height: auto;
}

/* About us */

.about-wrapper p {
    font-size: 18px;
    line-height: 30px;
    color: #000;
    font-family: "Crimson Text", serif;
    font-weight: 500;
    margin-bottom: 21px;
}

.about-wrapper a {
    font-size: 18px;
    line-height: 30px;
    color: #926f1e;
    font-family: "Crimson Text", serif;
    font-weight: 500;
}

.about-wrapper p span {
    font-size: 21px;
    line-height: 32px;
    color: #aaaaaa;
    margin-bottom: 40px;
    text-align: left;
    display: block;
}

.profile-section {
    border-top: 1px solid #000;
    padding: 40px 0;
}

.profile-img {
    max-width: 100%;
    height: auto;
    margin-top: 50px;
}

.profile-info h4 {
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 12px;
    margin-top: 50px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.profile-info em {
    display: block;
    margin-bottom: 10px;
    font-family: "Crimson Text", serif;
    font-weight: 500
}

.profile-info p {
    margin: 0 0 5px;
    line-height: normal;
}

.profile-info a {
    color: #d4a264;
    text-decoration: none;
}

.profile-info a:hover {
    text-decoration: underline;
}

.imgHolder {
    text-align: center;
}

.divider-img {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin: 40px auto;
}

.small-title {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 21px;
    font-family: "Crimson Text", serif;
}

.small-font p {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 18px;
    line-height: 20px;
    font-family: "Crimson Text", serif;
}

.small-font ul li {
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
    font-family: "Crimson Text", serif;
    margin-bottom: 3px;
}

.welcome-section {
    background-color: #d9c9b1;
    padding: 100px 20px;
    text-align: center;
    color: #fff;
}

.welcome-section h2 {
    font-size: 30px;
    letter-spacing: 6px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.welcome-section p {
    font-size: 18px;
    margin-bottom: 40px;
}

.welcome-section .cta-btn {
    background-color: #d2b78e;
    color: #fff;
    padding: 14px 40px;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.2rem;
    border: none;
    transition: background 0.3s ease;
}

.welcome-section .cta-btn:hover {
    background-color: #c5a97b;
}

/* Service Detail */
.top-bottom-border {
    font-size: 27px;
    line-height: 41px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 21px;
    letter-spacing: 5;
    padding: 40px 0;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
}

.services {
    padding: 60px 0;
    background-color: #fff;
}

.services-title {
    font-weight: 600;
    letter-spacing: 0.5rem;
    font-size: 1rem;
    text-transform: uppercase;
}

.services-content p {
    font-size: 19px;
    line-height: 27px;
    margin-bottom: 30px;
}

.about-wrapper .btnHolder {
    width: 100%;
    position: relative;
    text-align: center;
}

.about-wrapper .btn-outline-custom {
    border: 1px solid #000;
    border-radius: 30px;
    padding: 5px 20px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    background-color: transparent;
    color: #000;
    transition: all 0.2s ease-in-out;
    font-family: "Jost", sans-serif;
    font-size: 15px;
}

.about-wrapper .btn-outline-custom:hover {
    background-color: #000;
    color: #fff;
}


/* @Media Query Here */
@media only screen and (max-width: 991px) {
    .topic-item {
        flex: 0 0 50%;
    }

    .mod-heading {
        font-size: 34px;
        line-height: 48px;
        margin-bottom: 25px;
    }

    .mod-info-section {
        padding: 50px 0;
    }

    .mod-description {
        font-size: 22px;
        color: #333;
        margin-bottom: 2rem;
        font-family: "Crimson Text", serif;
        text-align: center;
        line-height: 30px;
    }

    .faq-question {
        letter-spacing: 4px;
        font-size: 16px;
    }

    .page-title {
        font-size: 27px;
        letter-spacing: 4px;
    }

    .about-wrapper p span {
        font-size: 18px;
        line-height: 24px;
    }

    .about-wrapper p {
        font-size: 16px;
        line-height: 22px;
    }

    .profile-info h4 {
        margin-top: 20px;
    }

    .welcome-section h2 {
        font-size: 24px;
        letter-spacing: 4px;
    }
}

@media (min-width: 768px) {

    .container,
    .container-md,
    .container-sm {
        max-width: 900px;
    }
}

@media only screen and (max-width: 768px) {
    .topic-item {
        flex: 0 0 100%;
    }

    .side-menu {
        max-width: 100%;
    }

    .rating-text {
        line-height: 1.5em;
        font-weight: 500;
        font-size: 24px;
    }

    .rating-circle {
        background-color: #6ab2c5;
        border-radius: 50%;
        width: 250px;
        height: 250px;
    }

    .mod-subheading {
        font-family: "Futura Round W01", sans-serif;
        font-size: 22px;
        line-height: 27px;
        padding-bottom: 0 !important;
    }

    .banner-logo {
        max-width: 300px;
    }

    button.menu-button>span {
        display: none;
    }

    .pricing-table th,
    .pricing-table td {
        font-size: 16px;
    }

    .social-icons.contact-info {
        display: flex;
        flex-direction: column;
    }

    .map-section {
        height: 420px;
    }

    .contact-info a:first-child {
        border: none;
    }

    .logoHolder {
        max-width: 100px;
    }

    .main-header .book-button {
        font-size: 10px;
    }

    .menu-toggle {
        width: 30px;
        height: 40px;
    }

    .menu-toggle {
        width: 30px;
        height: 40px;
    }

    .main-header .container-fluid {
        padding: 0 10px;
    }

    .mod-text-sec-heading {
        font-size: 22px;
    }

    .topic-item {
        margin-bottom: 10px;
    }

    .pill-link {
        font-size: 14px;
    }

    .mod-description {
        font-size: 17px;
        line-height: 22px;
    }

    .about-wrapper p {
        text-align: center;
    }

    .services {
        padding: 15px 0;
    }

    .top-bottom-border {
        padding: 20px 0;
        text-align: center;
    }

    .submenu-nested {
        position: relative;
        top: unset;
        left: unset;
        padding-left: 35px !important;
    }

    .side-menu li {
        font-size: 18px;
        line-height: 23px;
    }

    .submenu{
        padding-left: 15px !important;
    }
}

@media only screen and (max-width: 500px) {
    .mod-subheading {
        font-size: 18px;
        line-height: 24px;
    }

    .faq-question {
        letter-spacing: 0px;
        font-size: 14px;
    }

    .faq-item {
        padding: 10px 0;
    }

    .faq-answer {
        font-size: 14px;
    }
}