@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary-color: #f0c88f;
    --secondary-color: #fafafa;
    --text-color: rgb(39, 38, 44);
    --text-primary: #ad9068;
}

html,
body {
    background-color: var(--secondary-color);
    margin: 0;
    min-height: 100VH;

    @media (width<59rem) {
        height: auto;
    }
}

body {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: 'Poppins', Times, serif;
    color: var(--text-color);
}


h2 {
    font-family: 'Poppins', Times, serif;
    font-size: 2rem;
    font-weight: lighter;
    color: var(--text-color);
}

p,
span,
a {
    font-family: 'Poppins', Times, serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-color);
}

.carousel {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 5;
}

.carouselTrack {
    position: relative;
    height: 100%;
    width: 100%;
}

.carouselItem::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.carouselItem {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.carouselItem.active {
    opacity: 1;
}

.carouselItem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carouselDots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 3rem;
    z-index: 10;
}

.dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: var(--secondary-color);
    cursor: pointer;
    outline: 1px solid transparent;
    outline-offset: 5px;
    transition: outline 0.4s ease;
}


.dot.active {
    outline: 1px solid var(--secondary-color);
    outline-offset: 5px;
}

.carouselReview {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--secondary-color);
    text-align: center;
    z-index: 3;
    font-size: 2rem !important;
    font-weight: 500;
    font-style: oblique;
}





/* NAV BARS HEADER FOOTER */



/* HIDDEN ELEMENTS */

.hamburgerBtn {
    visibility: hidden;
}

.bottomBar {
    visibility: hidden;
    position: absolute;
}




.NAV {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    background-color: var(--secondary-color);
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.20);
}

.menuContainer {
    width: 90vw;
    gap: 7vw;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

@media (width<=1512px){
    .menuContainer{
        height: 8rem;
    }
    .darshLogo{
        transform: translateY(.65rem);
    }
}


.topBar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90vw;
}

.menu {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 7vw;
    padding: 0 !important;
}

.closeBtn {
    position: absolute;
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 2rem;
    padding: 0;
    top: 2rem;
    right: 2rem;


}

.menu div {
    width: max-content;
}

.darshLogo {
    width: 10rem;
    height: auto;

    @media (width < 59rem) {
        width: 5rem;
    }
}


.menu div a,
.footerNAV div a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.7rem;
}

@media (width<=1512px){
    .menu div a,
    .footerNAV div a {
        font-size: 1.3rem;
    }
}

.menu div a:hover,
.footerNAV div a:hover,
.menu div a.active,
.footerNAV div a.active {
    border-bottom: solid;
    display: inline-block;
}

.active {
    cursor: default;
}

.langIcon {
    cursor: pointer;
}

.langSwitcher {
    z-index: 5;
    width: auto;
    min-width: 3rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .3rem !important;
    justify-content: center;
    transform: translateY(.093rem);
  
}

.langDropdown {
    position: absolute;
    top: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: none;
    
    gap: .3rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    background-color: var(--secondary-color);
    border-radius: 10%;
    min-width: 3rem;
}

.langSwitcher:hover .langDropdown {
    opacity: 1;
    pointer-events: all;
    padding-bottom: .5rem;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.08);
}

.langBtn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Times New Roman', Times, serif;
    font-size: 1rem;
    color: var(--text-color);
    padding: 0;
}

.fi {
    width: 1.5vw !important;
    height: auto;
}

.langBtn.active {
    font-style: oblique;
    font-weight: bold;
}

.langBtn:hover {
    font-style: oblique;
}




@media (width < 59rem) {

    body.no-scroll {
        overflow: hidden;
        height: 100vh;
    }

    .NAV {
        height: auto;
        align-items: flex-start;
    }

    .menuContainer {
        margin: 1rem;
        gap: 0;
        width: 100vw;
        align-items: flex-start;
    }

    .topBar {
        width: 100%;
        padding: 1rem 1.5rem;
        box-sizing: border-box;
        display: flex;
        flex-direction: row;
        align-items: center;
    }


    .bottomBar {
        visibility: visible;
        position: static;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100vw !important;
        height: 15vh;
    }

    .hamburgerContainer {
        width: 1.75rem;
        height: 1.75rem;
        padding: 1rem 1.5rem;
    }

    .hamburgerBtn {
        visibility: visible;
        height: 50px;
        width: 50px;
        margin-left: auto;
        position: relative;
    }

    .hamburgerBtn span {
        display: block;
        height: 2px;
        width: 100%;
        background-color: var(--text-color);
        border-radius: 25px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: .3s ease;
    }

    ;

    .hamburgerBtn span:nth-child(1) {
        top: 33%;
    }

    .hamburgerBtn span:nth-child(2) {
        top: 66%;
    }

    .hamburgerBtn.open span:nth-child(1) {
        top: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .hamburgerBtn.open span:nth-child(2) {
        top: 50%;
        transform: translate(-50%, -50%) rotate(-45deg);
    }


    .menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        padding: 2rem 1.5rem !important;
        width: 100vw !important;
        height: 100vh;
        box-sizing: border-box;
        background-color: var(--secondary-color);

        /* hidden state */
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease, transform 0.3s ease;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 100;
    }

    .closeBtn {
        display: block;
    }

    .menu.open {
        opacity: 1;
        pointer-events: all;
    }


    .langSwitcher {
        width: auto;
    }

    .langDropdown {
        width: 10vw !important;
        flex-direction: row;
        margin-top: 1rem;
        gap: 3rem;
    }

    .langSwitcher:hover .langDropdown {

        box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.0);
    }

    .fi {
        width: 5vw !important;
        height: auto !important;
    }
}

/*_______________
ABOUT SECTION*/

.aboutMe {
    position: relative;
    display: flex;
    height: 90vh;
    width: 100vw;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-bottom: 5rem;
}

.aboutContainer {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    width: 80%;
}

.aboutImg img {
    width: 30vw;
}

.aboutText {
    align-self: center;
    
    padding-right: 2rem;
}

.aboutTitle{
    margin: 0;
}


@media (width <= 1512px) {
    .aboutBody {
        font-size: 1rem;
    }

}


/* FORM */

.contactTitleContainer {
    width: 100vw;
    height: 30vh;
    background-color: var(--primary-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contactTitle {
    font-size: 6rem;
    margin: 0;
    font-weight: 300;
    font-style: oblique;

    @media (width<59em) {
        font-size: 2.5rem;
        line-height: 2.5rem;
        text-align: center;
        margin-bottom: 2rem;

    }
}

.contactText {
    text-align: center;
    margin: 0;

    @media (width<59em) {
        font-size: smaller;
    }
}

.section4 {
    display: block;
    position: relative;
    height: auto;
    width: 100vw;
    box-sizing: border-box;

}

.section4FormContainer {
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    justify-content: center;
    height: auto;
    padding: 2rem 0;
}


form {
    width: 33vw;
}

label {
    display: block;
    margin-bottom: .5rem;
}

input, textarea {
    border-radius: .3rem;
    border-style: solid;
    border-color: #dcdcdc;
    border-width: 1px;
    width: 100%;
    padding: .8rem;
    display: inline-block;
    box-sizing: border-box;
    background-color: rgba(204, 204, 204, 0.461);
    box-shadow: 0px 2px 20px hsla(0, 0%, 44%, 0.149);
    resize: none;
}

.buttonContainer {
    text-align: center;
}

.sendbutton {
    padding: 0;
    background-color: var(--primary-color);
    height: 3rem;
    font-size: 1rem;
    width: 10rem;
    vertical-align: center;
}

.sendbutton:hover {
    cursor: pointer;
    background-color: #c99e62;
}

#msg {
    height: 10vh;
}

.requiredContainer {
    text-align: right;
}

.requiredContainer p {
    font-size: 1rem !important;
}

@media (width < 59rem) {

    .section2 {
        height: auto;
        overflow: hidden;
    }

    .aboutMe {
        height: auto;
    }

    .aboutContainer {
        display: flex;
        position: relative;
        flex-direction: column;
        margin: auto;
        height: auto;
        justify-content: center;
        align-items: center;
    }

    .aboutText {
        margin: auto;
        padding: 0;
    }

    .aboutImg img {
        width: 90vw;
    }

    .aboutText p {
        font-size: 1rem !important;
    }

    .aboutTitle {
        width: 80vw;
        text-align: center;
    }

    .section4 {
        height: fit-content;
    }

    .trust {
        text-align: center;
    }

    form {
        width: 90vw;
    }



}

/* PHOTOS SCROLL SECTION 2 */

.frame2 {
    width: 100vw;
    padding-top: .5rem;
    display: flex;
    flex-direction: column;
}

.desc {
    margin: auto;
    text-align: center;
    padding: .5rem 0 2rem 0;
}



.imgGridContainer {
    margin: auto;
    width: 90vw;
    columns: 2 20vw;
    gap: 5rem;

    @media (width < 59rem) {
        columns: 2 50vw !important;
    }
}


.imgGrid {
    width: 100%;
    display: block;
    margin-bottom: 5rem;
    transition:opacity 0.3s ease;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.20);

    @media (width < 59rem) {
        margin-bottom: 3rem;
    }
}


/* REVIEWS */



.review {
    position: relative;
    display: flex;
    height: auto;
    width: 100vw;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 7rem 0;

    @media (width<59rem) {
        margin-bottom: 0;
    }
}

.sectionTitle {
    position: relative;
    width: fit-content;
    height: fit-content;
    font-size: 4rem;
    font-weight: 500;
    margin: 0;
    padding-bottom: 5rem;
    z-index: 3;

}

@media (width<=1512px) {
        .sectionTitle{
        font-size: 4rem;
        width: 90vw;
        }
    }

@media (width<59rem) {
    .sectionTitle{
        font-size: 2rem;
        text-align: center;
        width: 90vw;
        padding-bottom: 1rem;
    }
    }

.reviewContainer {
    width: 100vw;
    display: flex;
    justify-content: center;

    @media (width<59rem) {
        display: block;
    }
}

.reviewTrack {
    margin-top: 2rem;

    @media (width>59rem) {
        position: relative;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 10rem;
        width: 90vw;
    }
}

.reviewItem {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.reviewImg img {
    width: 20vw;
    height: auto;
    
    @media (width<59rem) {
        width: 90vw;
    }
}

.reviewText {
    flex-direction: column;
}


@media (width>59rem) {
    .reviewText {
        display: flex;
        width: 22vw;
    }


    .reviewTextP {
        width: 20vw;
        font-style: oblique;
    }
}

.reviewTextP p {
    @media (width<59rem) {
        font-size: 1.3rem;
    }
}

.reviewTextName {
    text-align: right;
    height: fit-content;
}

.reviewTextName h2 {
    margin: 0;
    
    @media (width<59rem) {
        padding: 0;
        margin: 0;
    }
}

.reviewCTA {
    position: relative;
    border: none;
    background: var(--primary-color);
    height: 5rem;
    width: auto;
    color: black;
    display: flex;
    margin: 5rem 0 0rem 0;
    padding: 0 2rem;
    justify-content: center;
    align-items: center;
    font-size: 1rem !important;
    vertical-align: middle;
    text-decoration: none;
}

.reviewCTA:hover::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(56, 56, 56, 0.05);
    cursor: pointer;
}

@media (width < 59rem) {

    .reviewContainer {
        gap: 0;
        width: 100vw;
        overflow: hidden;
        align-items: flex-start;
    }

    .reviewTrack {
        display: flex;
        flex-direction: row;
        transition: transform 0.5s ease;
        width: 100%;
    }

    .reviewItem {
        min-width: 100vw;
        flex-shrink: 0;
        padding: 0 5vw;
        box-sizing: border-box;
        /* no opacity, no transition */
    }
}

/*FRAME3 FOOTER*/

.footerNAV {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 10vh;
    padding: .2rem 0;
    justify-self: flex-end;

    @media (width <59rem) {

        position: absolute;
        display: none;
    }
}


.footerNAVRight {
    display: flex;
    justify-content: end;
    gap: 10rem;
    width: 90vw;
    height: 2.5rem;
}

/* POPUP */

.popup {
    position: fixed;
    bottom: -10rem;
    left: 2rem;
    border-radius: 8px;
    background-color: var(--primary-color);
    padding: 1.5rem 2rem;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.15);
    transition: bottom 0.4s ease;
    max-width: 20rem;
}

.popup.visible {
    bottom: 2rem;
}

.popupClose {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    padding: 0;
    line-height: 1;
    flex-shrink: 0;
}

.popupLink {
    text-decoration: none;
    color: black;
}

.popupLink p {
    margin: 0;
    font-size: 1rem !important;
    font-weight: 500;
    border-bottom: 2px dashed;
}

@media (width < 59rem) {
    .popup {
        width: 70vw !important;
        left: 50%;
        transform: translateX(-50%) translateY(10rem);
        bottom: auto;
        top: auto;
        transition: transform 0.4s ease, opacity 0.4s ease;
        opacity: 0;
        bottom: 2rem;
    }

    .popupLink {
        margin: auto;
    }

    .popup.visible {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
        bottom: 2rem;
        text-align: center;
    }
}