/* #region GLOBAL */
:root {
    --primaryBrandColor: #3A3837;
    --secondaryBrandColor: #947B6F;
    --tertiaryBrandColor: #f4f4f4;
        --textBlack: #000000;
    --textWhite: #FFFFFF;

    --primaryBrandColor2: #3A383780;
    --secondaryBrandColor2: #947B6FCC;
    --tertiaryBrandColor2: #f4f4f4CC;
}

.honeypot {
  position: absolute;
  left: -5000px;
  visibility: hidden;
}

body {
    overflow-x: hidden;
    font-family: 'Garamond', serif;
}

body.modal-open {
    overflow: hidden;
    /* Prevent scrolling when the modal is open */
}

/* #endregion */



/* #region IMAGES */
.full-image {
    display: inline-block;
    width: 100%;
    object-fit: fill
}

/* #endregion */



/* #region QUICK ADDS  */
.hidden {
    visibility: hidden;
}

/* #endregion */



/* #region NAV BAR */
.navbar {
    height: 80px;
}

.navbar-brand {
    margin-left: 25px;
}

.navbar-nav {
    margin-right: 25px;
}

.navbar-nav li {
    margin-right: 10px;
}

.nav-sticky {
    background-color: var(--tertiaryBrandColor);
}

.img-nav-logo {
    width: 80px;
}

.nav-link {
    color: var(--primaryBrandColor)
}

.nav-link:hover {
    color: var(--secondaryBrandColor);
}

.nav-link-cta {
    border-radius: 8px;
    background-color: var(--secondaryBrandColor);
    color: white;
    margin: 0px
}

.nav-link-cta:hover {
    color: var(--secondaryBrandColor);
    background-color: var(--primaryBrandColor);
}

/* #endregion */


/* FIXME: -  */
/* #region navigation offsets */


/* #intro-hash {
    padding-top: 55px;
    margin-top: -55px;
} */


#services-hash {
    padding-top: 55px;
    margin-top: -55px;
}

#specialty-hash {
    padding-top: 55px;
    margin-top: -55px;
}

#portfolio-hash {
    padding-top: 55px;
    margin-top: -55px;
}

#contact-hash {
    padding-top: 55px;
    margin-top: -55px;
}

/* #endregion */



/* #region INTRO */
#intro {
    width: 100%;
}

.intro {
    position: relative;
}

.under-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    color: white;
    background: linear-gradient(to bottom right,
            rgba(255, 255, 255, 0.8),
            transparent);
}

.logo-container {
    position: absolute;
    top: 30px;
    left: 50px;
    height: 40%;
}

.logo-large {
    height: 100%;
}


.col-first-text {
    padding-right: 0%;
    margin-right: 0%;
}

.left-side-text {
    padding-right: 0%;
    margin-right: 0%;
}

/* @media (min-width: 767px) {
    .right-side-text {
        padding-left: 0%;
        margin-left: 0%;
    }
} */

/* @media (min-width: 585px) {
    #intro {
        height: 300px;
    }
}

@media (max-width: 584px) {
    #intro {
        height: 200px
    }
}

@media (min-width: 384px) {
    #intro {
        background-color: #9069d5;
    }
} */
/* #endregion */



/* #region SERVICES */
.service {
    width: 100%;
    /* padding: 45px 0 45px 0; */
    background-color: var(--tertiaryBrandColor);
}

.service-gallery {
    padding: 30px;
    overflow: hidden;
}

.service .rowpad {
    padding-right: 0px;
    padding-left: 0%;
}

.service .row {
    margin-right: 0px;
    margin-left: 0%;
}

.service-gallery-title {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 30%;
    background-color: var(--tertiaryBrandColor2);
    transform: translateY(-50%) translateX(-50%);
    pointer-events: none;
}

.service .over-label {
    letter-spacing: 2px;
    color: var(--primaryBrandColor);
    display: block;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.gallery-link {
    position: relative;
    padding: 4px;
    width: 100%;
    overflow: hidden;
    /* if i want it as a button: */
    background: none;
    border: none;
}

.gallery-link img {
    transition: all 0.4s ease;
}

.gallery-link img:hover {
    transform: scale(1.3);
}


.card-container {
    width: 100%;
    max-width: 1700px;
    margin: auto;
    padding-top: 50px;
    padding-bottom: 80px;
}

.card {
    background-color: var(--tertiaryBrandColor);
    width: 70%;
    height: 250px;
    text-align: center;
    margin: auto;
    border-color: var(--secondaryBrandColor);
}

.service .service-item {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: auto;
}

.service i {
    height: 90px;
    width: 90px;
    border-radius: 50%;
    padding: 20px;
    margin: auto;
    background-color: var(--secondaryBrandColor);
    display: block;
    margin: auto;
}

.service label {
    text-align: center;
    font-size: 30px;
    font-weight: 500;
    color: var(--secondaryBrandColor);
    display: block;
    margin: auto;
}

.service .service-img {
    position: relative;
    overflow: hidden;
}

.service .service-img img {
    width: 100%;
    height: 370px;
}

.service .service-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondaryBrandColor2);
    transition: .5s;
    opacity: 0;
    overflow: hidden;
}

.service .service-item:hover .service-overlay {
    opacity: 1;
}

.service .service-overlay p {
    margin: 0;
    font-size: 20px;
    color: white;
    text-align: left;

}

/* #endregion */



/* #region Gallery */
#imageModal {
    z-index: 100;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#imageModalContent {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

#imageModal img {
    max-width: 100%;
    max-height: 80vh;
    align-self: center;
    margin-bottom: 10px;
}

.thumbnailContainer {
    display: flex;
    justify-content: center;
}

.thumbnail {
    width: 100px;
    height: 100px;
    margin: 0 10px;
    cursor: pointer;
}

.closeBtn {
    position: absolute;
    top: 10px;
    right: 50px;
    color: #FFF;
    font-size: 100px;
    cursor: pointer;
}

.chevron {
    font-size: 60px;
    color: white;
    cursor: pointer;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
}

.chevron-left {
    left: 20px;
}

.chevron-right {
    right: 20px;
}

.thumbnail.active {
    border: 2px solid var(--secondaryBrandColor);
}

/* #endregion */



/* #region INFO */
.info-container {
    position: relative;
}

.info-image {
    margin-top: 100px;
    margin-bottom: 20px;
    margin-left: -20px;
    transform: scaleX(-1);
    border-radius: 20px;
    border: 5px solid var(--secondaryBrandColor);
    width: 35%;
    max-height: 80%;
    height: auto;
}

.top-stripe {
    position: absolute;
    top: 0;
    left: 0;
    height: 30%;
    width: 100%;
    background-color: var(--primaryBrandColor);
}

.info-stripe {
    top: 30%;
    position: absolute;
    height: 70%;
    width: 100%;
    background-color: var(--secondaryBrandColor);
}

.title-container {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;    
    top: 0;
    height: 100%;
    width: 65%;
    right: 0%;
    background-color: transparent;
    border: none;
}

.text-container {
    position: absolute;
    display: flex;
    top: 0;
    height: 100%;
    width: 65%;
    right: 0%;
    background-color: transparent;
    border: none;
    padding: 40px;
    overflow: hidden;
}

.title-container h2 {
    color: var(--tertiaryBrandColor);
    font-size: 50px;
    text-align: center;
    vertical-align: middle;
}

@media (max-width: 1000px) {
    #info {
        display: block;
        overflow: auto;
    }

    .info-image {
       display: none;
    }

    .top-stripe {
        height: auto;
        position: relative;
        display: block;
        overflow: visible;
    }

    .info-stripe {
        height:auto;
        position: relative;
        display: block;
        overflow: visible;
        font-size: 24px;
    }

    .floating-logo {
        display: none;
    }

    .title-container {
        width: 100%;
        position: relative;
        display: block;
        overflow: auto;
        height: auto;
    }

    .text-container {
        position: relative;
        width: 100%;
        display: block;
        overflow: auto;
        height: auto;
    }

    
}


@media (min-width: 1000px) {
    .info-container p  {
        font-size: 16px;
       }
}

@media (min-width: 1100px) {
    .info-container p  {
        font-size: 20px;
       }
}

@media (min-width: 1280px) {
    .info-container p  {
        font-size: 24px;
       }
}

@media (min-width: 1410px) {
    .info-container p  {
        font-size: 28px;
       }
}

@media (min-width: 1560px) {
    .info-container p  {
        font-size: 32px;
       }
}



/* .text-container p {
 font-size: xx-large; 
} */


/* #endregion */



/* #region DECORATION BANNER */

.banner-container {
    display: block;
    height: fit-content;
}

.banner-image {
    position: absolute;
    width: 100%;
    border-top: 5px solid var(--primaryBrandColor);
}

.banner-offset {
    width: 100%;
    visibility: hidden;
}

.banner {
    position: relative;
    margin-top: -40px;
    z-index: 100;
    height: 100%;
}

.floating-logo {
    position: absolute;
    top: -150px;
    right: calc(32.5% - 150px);
    border-radius: 150px;
    border: 5px solid var(--primaryBrandColor);
    width: 300px;
    height: 300px;
}
/* #endregion */



/* #region TESTIMONIAL */
.testimonial {
    position: relative;
    padding: 25px 0;
    text-align: center;
    background: linear-gradient(var(--tertiaryBrandColor2), var(--tertiaryBrandColor2)), url(../assets/images/bg1.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial .container {
    max-width: 70%;
}

.testimonial h2 {
    color: var(--primaryBrandColor)
}

.testimonial .swiper {
    height: fit-content;
}

.testimonial .swiper-slide {
    background-color: transparent;
    height: fit-content;
}

.testimonial img {
    width: 125px;
    height: 125px;
    border-radius: 50%;
    margin: auto;
}

.testimonial .testimonial-swiper-slide h3 {
    color: var(--primaryBrandColor);
    font-size: 22px;
    font-weight: 700;
}

.testimonial .testimonial-swiper-slide h4 {
    font-size: 14px;
    font-weight: 300;
    color: var(--primaryBrandColor);
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial .testimonial-swiper-slide p {
    color: var(--primaryBrandColor);
    font-size: 16px;
    font-weight: 300;
    margin: 0;
}
/* #endregion */



/* #region CONTACT */
#contact {
    /* height: 400px; */
    background-color: var(--tertiaryBrandColor);
    font-size: 25px;
}

.contact-container h4 {
    font-weight: 700;
    text-align: center;
    font-size: xx-large;
    margin: 20px;
}

.contact-form {
    background-color: var(--secondaryBrandColor);
    color: var(--primaryBrandColor);
    text-align: start;
    font-weight: bold;
    padding: 40px;
}

.contact-form label {
    font-weight: 400
}

.responsive-map{
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
}
.responsive-map iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}

.contact-us {
    background-color: var(--primaryBrandColor);
    padding: 40px;
    color: var(--secondaryBrandColor);
    text-align: start;
}

/* @media (max-width: 768px) {
    .contact-us {
        border-top-left-radius: 1rem;
        border-top-right-radius: 1rem;
    }

    .contact-form {
        border-bottom-right-radius: 1rem;
        border-bottom-left-radius: 1rem;
    }

    .variable-indent {
        padding-left: 15px;
    }
}


@media (min-width: 768px) {
    .contact-us {
        border-top-left-radius: 1rem;
        border-bottom-left-radius: 1rem;
    }

    .contact-form {
        border-top-right-radius: 1rem;
        border-bottom-right-radius: 1rem;
    }
} */



.contact-us p {
    font-weight: 400
}

form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: 0 auto;
}

label {
    text-align: start;
    margin-bottom: 5px;
}

.variable-indent {
    text-align: start;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid var(--tertiaryBrandColor);
    border-radius: 5px;
}

textarea {
    resize: vertical;
    height: 100px;
}

button[type="submit"] {
    padding: 10px 20px;
    background-color: #024de7;
    color: var(--tertiaryBrandColor);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

button[type="submit"]:hover {
    color: var(--secondaryBrandColor)
}

i {
    color: var(--tertiaryBrandColor);
}

a {
    color: var(--tertiaryBrandColor);
}

.contact-methods {
    list-style: none;
    padding: 0;
    color: var(--tertiaryBrandColor);
}

.contact-methods li {
    margin-bottom: 25px;
}

.contact-methods ul {
    margin: auto;
}

.contact-methods i {
    margin-right: 4px;
}

.hidden-icon {
    visibility: hidden;
}

.hidden {
    display: none;
}

/* #endregion */



/* #region COPYRIGHT */
.contact-container .row {
    position: relative;
}

.copyright {
    position: absolute;
    bottom: 0;
    font-size:medium;
    color: var(--tertiaryBrandColor);
}

@media (max-width: 767px) {
    .copyright {
       position: relative;
       }
    
    .copyright-row {
        background-color: var(--primaryBrandColor);
    }
}
/* #endregion */
