@font-face {
    font-family: Red-Hat;
    src: url('../fonts/RedHatDisplay-VariableFont_wght.ttf');
}

:root {
    --color-black: #000000;
    --color-white: #fefcfd;
    
    --color-logo-main: #1b4a24;
    --color-logo-secondary: #ddbe69;
    --color-logo-tertiary: #fefcfd;

    --color-brand-text: var(--color-logo-tertiary);
    --color-brand-text-hover: var(--color-logo-secondary);
    --color-brand-accent: var(--color-logo-main);
    --color-brand-accent-hover: #15381d;
    --color-overlay-strong: rgba(0, 0, 0, 0.9);
    --color-overlay-medium: rgba(0, 0, 0, 0.75);
    --color-overlay-soft: rgba(0, 0, 0, 0.65);
    --color-overlay-faint: rgba(0, 0, 0, 0.5);
    --color-overlay-subtle: rgba(0, 0, 0, 0.25);
    --color-overlay-semi-strong: rgba(0, 0, 0, 0.6);
    --color-overlay-transparent: rgba(0, 0, 0, 0);
    --color-overlay-modal: rgba(0, 0, 0, 0.5);
    --color-surface-dark: rgb(41, 41, 41);
    --color-surface-dark-hover: rgb(35, 35, 35);
    --color-text-strong: #5a5a5a;
    --color-input-error: #ff7688;
}

body {
    font-family: Red-Hat;
    font-weight: 400;
    min-height: 00px;
    background-color: var(--color-black);
    color: var(--color-brand-text);
}

.hidden {
    display: none;
}

.desktop {
    display: none;
}

.tablet {
    display: none;
}

.navbar {
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.25s ease-in-out;
    background: linear-gradient(to bottom, var(--color-overlay-medium), var(--color-overlay-faint), var(--color-overlay-subtle), var(--color-overlay-transparent));
    ;
}

.top {
    height: 800px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.top-other {
    height: 250px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.top-filter {
    background: linear-gradient(to bottom, var(--color-overlay-soft), var(--color-overlay-soft), var(--color-overlay-soft), var(--color-overlay-soft), var(--color-black));
    height: 100%;
}

.navbar-brand.desktop img {
    max-height: 120px;
    height: 120px;

    transition: all 0.25s ease-in-out;
}

.navbar-brand.tablet img,
.navbar-brand.mobile img {
    height: 75px;
}

.navbar-toggler {
    width: 20px;
    height: 20px;
    position: relative;
    transition: .5s ease-in-out;
}

.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
    border: 0;
    position: relative;
}

.navbar-toggler span {
    margin: 0;
    padding: 0;
}

.toggler-icon {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--color-brand-accent);
    border-radius: 1px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.middle-bar {
    margin-top: 0px;
}


/* State when the navbar is collapsed */

.navbar-toggler.collapsed .top-bar {
    position: absolute;
    top: 0px;
    transform: rotate(0deg);
}

.navbar-toggler.collapsed .middle-bar {
    opacity: 1;
    position: absolute;
    top: 10px;
    filter: alpha(opacity=100);
}

.navbar-toggler.collapsed .bottom-bar {
    position: absolute;
    top: 20px;
    transform: rotate(0deg);
}

/* when navigation is clicked */

.navbar-toggler .top-bar {
    top: inherit;
    transform: rotate(135deg);
}

.navbar-toggler .middle-bar {
    opacity: 0;
    top: inherit;
    filter: alpha(opacity=0);
}

.navbar-toggler .bottom-bar {
    top: inherit;
    transform: rotate(-135deg);
}

/* Color of 3 lines */

.navbar-toggler.collapsed .toggler-icon {
    background: var(--color-brand-accent)
}


.navbar-inner {
    align-content: center;

}

.navbar-nav.left {
    justify-content: end;
}

.navbar-nav.right {
    justify-content: start;
}

.nav-link.active {
    font-weight: 500;
    color: var(--color-brand-text) !important;

}

.nav-link.active:hover {
    font-weight: 500;
    color: var(--color-brand-text-hover) !important;

}

.nav-link {
    font-weight: 400;
    color: var(--color-brand-text);
    transition: all 0.25s ease-in-out;
    text-align: center;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--color-brand-text-hover) !important;
    scale: 1.05;
}

.navbar-collapse.show {
    margin-top: 8px;
    background-color: var(--color-overlay-strong);
    border-radius: 10px;
    transition: margin-top 0.25s, background-color 0.25s;
}

.hero {
    height: 100%;
    align-content: center;
}

.hero.other {
    height: 100%;
    align-content: center;
}


.hero h1 {
    font-size: 30pt;
}

.red-btn {
    background-color: var(--color-brand-accent);
    color: var(--color-white);

    transition: all 0.25s ease-in-out;
}

.red-btn:hover {
    scale: 1.05;
    background-color: transparent;
    color: var(--color-brand-text);
    outline: solid var(--color-brand-text) 1px;
}

.red-btn:focus .red-btn:active {
    background-color: transparent;
    color: var(--color-brand-text);
    border: solid var(--color-brand-text) 1px;
}

.title {
    letter-spacing: 2px;
}

.text-logo-main {
    color: var(--color-logo-main);
}

.text-logo-secondary {
    color: var(--color-logo-secondary);
}

.text-logo-tertiary {
    color: var(--color-logo-tertiary);
}

.service {
    color: var(--color-black);
    background-color: var(--color-brand-text);
    border-radius: 20px;
    height: 100%;
}

.service img {
    border-radius: 20px 20px 0px 0px;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 2/1;
}

.service.about .service.about p {
    margin-bottom: 0;
}

.service.about.growth {
    color: var(--color-brand-text);
    background-color: transparent;
    outline: 2px solid var(--color-brand-text)
}

.service-col {
    height: 190px;
}

.service-icon {
    display: flex;
    align-content: center;
}


.service-icon img {
    object-fit: contain;
    max-height: 108px;
    width: 100%;
    margin: auto;
}

.services-page .service-icon img {
    width: 100px;
    height: 100px;
    max-height: 100px;
    object-fit: contain;
}

.service-text {
    align-content: center;
}

.service-title {
    text-align: center;
}

.service-discover {
    text-decoration: none;
    border-radius: 20px;
    height: 100%;

    transition: all 0.25s ease-in-out;

    h2 {
        font-weight: 400;
    }
}

.footer-col {
    text-align: center;
}

.footer-text {

    color: var(--color-brand-text);
    font-size: large;
}

.footer-text.link {
    text-decoration: none;
}

.footer-text.link:hover {
    color: var(--color-brand-text-hover);
}

.social {
    align-content: center;
    text-align: center;
}

.social-link {

    color: var(--color-brand-text);
    font-size: 30pt;

    transition: all 0.25s ease-in-out;
}

.social-link:hover {
    color: var(--color-brand-text-hover);
}

.site-footer .footer-sitemap .nav-item {
    padding-left: 0;
    padding-right: 0;
    text-align: left;
}

.site-footer .footer-sitemap .nav-link {
    padding-left: 0;
    padding-right: 0;
    text-align: left;
}

.testimonial-icon {
    filter: brightness(0) invert(1);
    text-align: center;

    img {
        width: 100%;
    }
}

.testimonial-text {
    align-content: center;
    text-align: center;
}

.grosmart-testimonial-carousel {
    position: relative;
}

.grosmart-testimonial-carousel .carousel-inner,
.grosmart-testimonial-carousel .carousel-item {
    min-height: 320px;
}

.testimonial-card {
    max-width: 1100px;
    min-height: 320px;
    width: 100%;
    display: flex;
    align-items: center;
    align-items: center;
}

.testimonial-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--color-surface-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.testimonial-avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-avatar-placeholder {
    object-fit: contain;
    padding: 18px;
}

.testimonial-role {
    font-weight: 300;
    letter-spacing: 1px;
}

.testimonial-quote {
    max-width: 900px;
}

@media (max-width: 767.98px) {
    .grosmart-testimonial-carousel .carousel-inner,
    .grosmart-testimonial-carousel .carousel-item,
    .testimonial-card {
        min-height: 360px;
    }
}

.grosmart-carousel-control {
    width: 10%;
}

.grosmart-carousel-control .carousel-control-prev-icon,
.grosmart-carousel-control .carousel-control-next-icon {
    background-size: 1.2rem 1.2rem;
    filter: invert(1);
}

.page-intro {
    font-weight: 300;
}

.about-img-text {
    text-align: center;
    align-content: center;
}

.about-img {
    width: 100%;
    border-radius: 20px;
}

.popup {
    position: fixed;
    z-index: 2000;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--color-overlay-modal);
    transition: top 0.5s ease-in-out;

}

.popup.hide-popup {
    top: +100%;

}

.booking-bg {
    background-color: var(--color-surface-dark);
    border-radius: 10px;
    height: 100%;
    top: 0;
}

.booking {
    border-radius: 10px;
    height: 100%;
}

/* Adjust button container for proper positioning */
.btn-container {
    position: absolute;
    top: 10px;
    right: 10px;
    width: auto;
}

/* Close button styling */
.close-btn {
    aspect-ratio: 1/1;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    text-align: center;
    background-color: var(--color-brand-accent);
    color: var(--color-white);
}

.close-btn:active,
.close-btn:focus,
.close-btn:hover {
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    text-align: center;
    background-color: var(--color-brand-accent-hover) !important;
    color: var(--color-white);
}

.book-btn {
    font-size: 20pt;
}

.contact-title {
    font-size: 35pt;
    font-weight: 600;
}

.required {
    color: red;
}

.message {
    resize: none;
    height: 250px;
}

.email-help {
    color: var(--color-text-strong)
}

.not-filled,
.not-filled:focus {
    background-color: var(--color-input-error);
}

.required {
    color: red;
}

.form-control,
.form-control:focus {
    border: none !important;
    box-shadow: none !important;
}


.description {
    font-size: large;
    font-weight: 300;
}

.description-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 4px;
    aspect-ratio: 4/5;
    height: 100%;
}

.col-lg-8:has(.description) {
    align-content: center;
}

.arrow-btn {
    aspect-ratio: 1/1;
    font-size: x-large;
    align-content: center;
    border: none;
    border-radius: 100%;
    text-align: center;
    background-color: var(--color-brand-accent);
    color: var(--color-white);
}

.arrow-btn:active,
.arrow-btn:focus,
.arrow-btn:hover {
    border: none;
    text-align: center;
    background-color: var(--color-brand-accent-hover) !important;
    color: var(--color-white);
}

#promotions {
    justify-content: center;
}

.promotion {
    text-decoration: none;
    color: var(--color-black);
    transition: all 0.35s ease-in-out;
    
}

.promotion-inner {
    width: 100%;
    border-radius: 6px 6px 6px 6px;
    aspect-ratio: 5/6;
    background-position: center;
    background-size: cover;
}

.promotion .image-cover {
    width: 100%;
    height: 100%;
    background-color: var(--color-overlay-medium);
    color: var(--color-brand-text);
    border-radius: 5px;
    transition: all 0.5s ease-in-out;
    align-content: end;
}

.promotion-text {
    width: 100%;
    transform: translateY(0);
    transition: all 0.5s ease-in-out;
}

.discover{
    max-height: 0;
    opacity: 0;

    transition: all 0.5s ease-in-out;
}

.promotion:hover{
    .image-cover{
        
        border-radius: 6px 0px 0px 6px;
        width: 90%;
    }
    .promotion-text {
        transform: translateY(-24px);
        color: var(--color-brand-text);
    }

    .discover{
        max-height: 100%;
        opacity: 1;
    }
}

.social-mini{
    text-align: center;
    
}
.social-mini .social-link {
    text-decoration: none;
    align-content: center;
    font-size: 20pt;
}
/* 
Small devices (landscape phones, 576px and up)
*/
@media (min-width: 576px) {

}

/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
    .mobile {
        display: none;
    }

    .tablet {
        display: block;
    }

    .hero h1 {
        font-size: 35pt;
    }

    .footer-col.start {
        text-align: start;
    }

    .footer-col.end {
        text-align: end;
    }

}

/* Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {

    /* Scrolled Navbar */

    .navbar.scrolled {

        .navbar-brand.desktop img {
            max-height: 90px;
        }

        .nav-item {
            padding-left: 12px;
            padding-right: 12px;
            background-color: var(--color-brand-text);

            .nav-link {
                color: var(--color-black) !important;
            }

            .nav-link:hover {
                color: var(--color-surface-dark-hover) !important;
            }
        }

        .nav-item:has(> .nav-link.active) {

            background-color: var(--color-overlay-semi-strong);

            .nav-link {
                color: var(--color-brand-text) !important;
            }

            .nav-link:hover {
                color: var(--color-brand-text) !important;
            }
        }

        .nav-item.start:has(> .nav-link.active) {

            border-radius: 4px 0px 0px 4px;


        }

        .nav-item.end:has(> .nav-link.active) {

            border-radius: 0px 4px 4px 0px;
        }


    }

    footer .row {
        text-align: left;
    }

    .left {
        text-align: left;
    }

    .right {
        text-align: right
    }

    .tablet {
        display: none;
    }

    .desktop {
        display: block;
    }

    .nav-item {
        text-align: center;
        font-size: large;
        align-content: center;
        padding-left: 30px;
        padding-right: 30px;
        transition: background-color 0.25s ease-in-out, padding 0.25s ease-in-out;

    }

    .nav-item.start {
        border-radius: 4px 0px 0px 4px;
    }

    .nav-item.end {
        border-radius: 0px 4px 4px 0px;
    }


    .navbar-collapse.show {
        margin-top: 0px;
        background-color: transparent;
    }

    .hero.other {
        height: 100%;
        align-content: end;
    }

    .hero h1 {
        font-size: 40pt;
    }

    .top {
        height: 900px;
    }

    .top-other {
        height: 350px;
    }

    .top-filter {
        height: 100%;
    }

    .nav-item:has(> .nav-link.active) {

        background-color: var(--color-brand-text);
        border-radius: 4px 4px 4px 4px;

        .nav-link {
            font-weight: 500;
            color: var(--color-black) !important;
        }

        .nav-link:hover {
            color: var(--color-surface-dark-hover) !important;
        }

    }

    .social {
        text-align: center;
    }

    .social-mini{
        text-align: center;
        
    }
    .social-mini .social-link {
        text-decoration: none;
        align-content: center;
        font-size: 20pt;
    }
    .social-link {
        align-content: center;
        font-size: 40pt;
    }

    .testimonial-icon {
        text-align: end;
        align-content: center;
    }

    .testimonial-text {
        text-align: start;
    }

    .service img {
        border-radius: 20px 0px 0px 20px;
        height: 100%;
    }

    .service img.invert {
        border-radius: 0px 20px 20px 0px;
        height: 100%;
    }

    .about-img-text {
        text-align: end;
    }
}

/* X-Large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
    .service-title {
        text-align: start;
    }


}

/* XX-Large devices (larger desktops, 1400px and up)*/
@media (min-width: 1400px) {}