/* Fonts */
.nanum-myeongjo {
    font-family: "Nanum Myeongjo", serif;
}

.lato {
    font-family: "Lato", sans-serif;
}

.jura {
    font-family: "Jura", sans-serif;
}

.jockey-one {
    font-family: "Jockey One", sans-serif;
}

.jaldi {
    font-family: "Jaldi", sans-serif;
}

body {
    font-family: "Jaldi", sans-serif;
    font-size: 16px;
    line-height: 1.2;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

/* Colors */

:root {
    --homeServiceButton: #868686;
    --categoryBorder: #9D9D9D;
    --contactFormText: #4D4D4D;
}

.fontSize30 {
    font-size: 30px;
}

.fontSize18 {
    font-size: 18px;
}

.fontSize15 {
    font-size: 15px;
}

.fontSize50 {
    font-size: 50px;
}

.fontSize45 {
    font-size: 45px;
}

.fontSize25 {
    font-size: 25px;
}

.fontSize40 {
    font-size: 40px;
}

.fontSize35 {
    font-size: 35px;
}

.fontSize20 {
    font-size: 20px;
}

.fontSize17 {
    font-size: 17px;
}

footer {
    position: sticky;
    top: 100%;
    width: 100%;
    z-index: 0;
}

section {
    background-color: white;
    position: relative;
    z-index: 1;
}

.nav-item .active {
    color: black;
}

.transition-all {
    transition: all 0.3s ease-in-out;
}

.logo {
    text-decoration: none;
    color: black;
}

.dropdown-menu .nav-link.active, .dropdown-menu .nav-link:hover {
    background-color: #D19805;
    color: #ffffff;
}

.dropdown-menu .nav-link.clicked {
    background-color: #D19805;
    color: white;
}

.dropdown-menu .active.nav-link{
    color: white;
}

.heroContainer{
    height: 591px;
    display: flex;
    overflow: hidden;
    justify-content: end;
}

.heroContainer:has(.heroImg.heroActive) .heroImg:not(.heroActive){
    filter: grayscale(100%)
}

.heroImg{
    width: calc(100% / 5);
    overflow: hidden;
    border: 2px solid #fff;
    border-radius: 26px;
    transition: all 0.4s cubic-bezier(0.32, 0, 0.67, 0);
    cursor: pointer;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: end;
}

.heroActive{
    width: 500px;
}

.heroImgTitle {
    position: absolute;
    transform: rotate(270deg);
    bottom: 100px;
    right: 0;
    left: 0;
}

.homeMoreServiceButton {
    color: var(--homeServiceButton);
    border: 1px solid var(--homeServiceButton);
}

.homeMoreServiceButton:hover {
    color: #FFFFFF;
    border: 1px solid var(--homeServiceButton);
    background-color: var(--homeServiceButton);
}

.home-icon {
    min-width: 80px;
    width: 100px;
}

.w-550 {
    width: 550px;
}

.divController {
    position: absolute;
    top: 120px;
    right: 70px;
}

.homeMinHeight {
    min-height: 100px;
}

.shouldWeImg {
    border-radius: 25px;
}

.homeEmail {
    text-decoration: none;
    color: black;
}

.paymentBtn {
    background-color: black;
    color: white;
}

.paymentBtn:hover {
    color: white;
    background-color: var(--categoryBorder);
}

.homeCategoryAnimation:hover {
    transform: scale(1.1);
    cursor: pointer;
}

.footerIconAnimation:hover {
    transform: scale(1.1);
}

/* Category CSS Only */
.bottomBorder {
    border-bottom: 1px solid var(--categoryBorder);
}

.catagoeryTitleWidth {
    min-width: 30%;
    max-width: 30%;
}

.learnMoreBtn {
    border: 1px solid var(--categoryBorder);
    color: black;
}

.learnMoreBtn svg {
    width: 33px;
}

.learnMoreBtn:hover {
    background-color: var(--categoryBorder);
}

/* Sub Category CSS Only */

.tabHeader button {
    color: black;
    border: 0;
    background-color: white;
}

.tabHeader button:hover {
    color: #D19805;
}

.tabHeader .active{
    color: #D19805;
}

.categoryItem:hover {
    transform: scale(1.03);
}

.bgMainCategory {
    background-color: #EDEEF2;
}

.mainCategoryBtn {
    text-decoration: none;
    color: #000000;
}

.mainCategoryBtn svg {
    width: 60px;
}

.categoryContainer {
    background-repeat: no-repeat;
    display: block;
    width: 100%;
    aspect-ratio: 1/1;
    background-position: center;
    background-size: cover;
    border: 1px solid #cccccc;
}

figure {
    margin: 0;
}

/* Category Detail CSS Only */

.mainCategoryBtn:hover {
    transform: scale(1.03);
}

.mainCategoryTitle {
    width: 70%;
}

/* Contact Us CSS Only */

.formInputControl {
    border: 0;
    border-bottom: 1px solid #8C8C8C;
    border-radius: 0;
    color: var(--contactFormText);
}

.contactFormBtn {
    border: 1px solid gray;
    color: var(--contactFormText);
}

.contactFormBtn:hover {
    background-color: gray;
    color: white;
}

.contactMap {
    height: 600px;
}

/* Customer Review */
.customerProfile {
    height: 70px;
}

.reviewTitleMinHeight{
    min-height: 50px;
}

.reiviewMinHeight {
    min-height: 150px;
}

.dropdown-toggle::after {
    vertical-align: 0.14em;
}
@media (max-width: 1199px) {

    .dropdown-menu, .dropdown-menu .nav-link{
        border: none;
    }
    .dropdown-menu .nav-link{
        padding: 5px 10px;
    }
}
/* Medium devices (landscape tablets, 768px and up) */

@media (max-width: 768px) {
    .fontSize50 {
        font-size: 35px;
    }

    .fontSize45 {
        font-size: 30px;
    }

    .fontSize40 {
        font-size: 24px;
    }

    .fontSize15 {
        font-size: 13px;
    }

    .fontSize35 {
        font-size: 30px;
    }

    .fontSize16 {
        font-size: 14px;
    }

    .fontSize30 {
        font-size: 22px;
    }

    .fontSize17 {
        font-size: 15px;
    }
    
    .fontSize18 {
        font-size: 15px;
    }

    .fontSize20 {
        font-size: 16px
    }

    .fontSize25 {
        font-size: 19px;
    }

    .heroContainer{
        height: 600px;
        flex-direction: column;
        justify-content: end;
    }

    .heroImg{
        height: calc(100% / 5);
        width: 100%;
    }
    
    .heroActive{
        height: 100%;
    }

    .heroImgTitle {
        position: absolute;
        transform: rotate(0deg);
        bottom: 14px;
        right: 0;
        left: 20px;
    }

    .w-550 {
        width: 100%;
    }

    .divController {
        position: static;
    }

    .shouldWeImg {
        border-radius: 0;
    }

    /* Category CSS Only */

    .catagoeryTitleWidth {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }

    .mainCategoryTitle {
        width: 100%;
    }

    .mainCategoryBtn svg {
        width: 40px;
    }

    .contactMap {
        height: 300px;
    }

    .reiviewMinHeight {
        min-height: 70px;
    }

}

/* Large devices (laptops/desktops, 992px and up) */

@media (min-width: 767px) and (max-width: 1365px) {
    .fontSize50 {
        font-size: 40px;
    }

    .fontSize40 {
        font-size: 35px;
    }

    .fontSize30 {
        font-size: 22px;
    }

    .fontSize16 {
        font-size: 14px;
    }

    .fontSize17 {
        font-size: 15px;
    }

    .fontSize45 {
        font-size: 40   px;
    }

    .w-550 {
        width: 100%;
    }

    .divController {
        position: static;
    }

    .shouldWeImg {
        border-radius: 0;
    }

    /* Category CSS Only */

    .catagoeryTitleWidth {
        width: 100%;
    }

    .mainCategoryTitle {
        width: 60%;
    }

    .contactMap {
        height: 400px;
    }

    .reiviewMinHeight {
        min-height: 130px;
    }

}


/* Extra large devices (large laptops and desktops, 1200px and up) */

@media (min-width: 1366px) and (max-width: 1440px) {

    .fontSize30 {
        font-size: 22px;
    }

    .fontSize18 {
        font-size: 15px;
    }

    .fontSize50 {
        font-size: 45px;
    }

    .fontSize45 {
        font-size: 41px;
    }

    .fontSize25 {
        font-size: 20px;
    }

    .fontSize40 {
        font-size: 35px;
    }

    .fontSize20 {
        font-size: 18px;
    }

    .fontSize17 {
        font-size: 14px;
    }

    .contactMap {
        height: 400px;
    }

}