@font-face {
    font-family: 'Salty Feathers DEMO';
    src: url('../assets/fonts/Salty Feathers Demo.otf') format('opentype');
}

:root {
    --White: #fff;
    --Egg-white: #F5F5F5;
}

body {
    font-family: 'Josefin Sans', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#WhatsappIcon {
    position: fixed;
    z-index: 5;
    bottom: 3%;
    right: 3%;
    cursor: pointer;
    border-radius: 50%;
    transition: transform 0.3s ease, filter 0.3s ease;
    -webkit-filter: drop-shadow(0 0 15px rgba(192, 136, 130, 0.3)) drop-shadow(0 0 15px rgba(192, 136, 130, 0.3));
    filter: drop-shadow(0 0 15px rgba(192, 136, 130, 0.3)) drop-shadow(0 0 15px rgba(192, 136, 130, 0.3));
    z-index: 100;
}

#WhatsappIcon:hover {
    transform: scale(1.1);
    -webkit-filter: drop-shadow(0 0 20px rgba(192, 136, 130, 0.5)) drop-shadow(0 0 20px rgba(192, 136, 130, 0.5));
    filter: drop-shadow(0 0 20px rgba(192, 136, 130, 0.5)) drop-shadow(0 0 20px rgba(192, 136, 130, 0.5));
}

#Background {
    position: relative;
    height: 70dvh;
    width: 100%;
    background-image: url('../assets/images/BeSpokeBackgroundImage.jpg');
    background-size: cover;
    background-position: center;
    font-size: 1vw;
}

#Background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 70.06%, rgba(0, 0, 0, 0.335) 100%);
    z-index: 1;
}

#TopContainer {
    position: relative;
    display: flex;
    width: 50%;
    justify-content: space-between;
    align-items: center;
    margin-left: 45%;
    z-index: 2;
}

#KaheenIcon {
    width: 198px;
    margin-right: -30px;
    cursor: pointer;
}

#MenuButton {
    cursor: pointer;
}

@media (max-width: 700px) {
    #KaheenIcon {
        transform: translate(-30%);
    }

    #MenuButton {
        margin-left: -10px;
    }
}

@media (max-width: 370px) {

    #MenuButton {
        margin-left: -30px;
    }
}






/* -----------------Form start here------------------------  */

.BespokeText {
    position: relative;
    height: 35dvh;
    font-family: Salty Feathers DEMO;
    font-size: clamp(12px, 14vw, 100px);
    font-weight: 400;
    text-align: center;
    color: #ffffff;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}



/* @media (max-width: 750px) {
    .BespokeText {
        font-size: clamp(12px, 15vw, 132px);
    }
} */

.BeSpokeFormWrapper {
    background: #f5f4f0;
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 10%;
}

.BeSpokeFormContainer {
    background: #F5F5F5;
    box-shadow: 0px 2px 16.4px -2px #00000014;
    padding: 20px;
    width: 80%;
    height: max-content;
    max-width: 600px;
    margin-top: -100px;
    z-index: 10;
}

.FormContent {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.FromText {
    font-family: Salty Feathers DEMO;
    font-size: 58px;
    font-weight: 400;
    line-height: 52.8px;
    margin-top: 10%;
    /* margin-bottom: 5%; */
    align-self: center;
    text-wrap: nowrap;
}

@media (max-width: 400px) {
    .FromText {
        font-size: 40px;

    }
}



.BeSpokeForm {
    display: flex;
    flex-direction: column;
    width: 80%;

}

.FormInput {
    border: none;
    border-bottom: 0.5px solid #6B6166;
    padding: 64px 0 16px 0;
    font-family: Josefin Sans;
    font-size: 20px;
    font-weight: 300;
    line-height: 20px;
    width: 100%;
    box-sizing: border-box;
    background: transparent;
    color: #191718;

}

.FormTextarea {
    border: none;
    border-bottom: 0.5px solid #6B6166;
    padding: 64px 0 56px 0;
    font-family: Josefin Sans;
    font-size: 20px;
    font-weight: 300;
    line-height: 20px;
    width: 100%;
    box-sizing: border-box;
    background: transparent;
    color: #191718;
    overflow-x: hidden;
}

.FormInput:focus,
.FormTextarea:focus {
    outline: none;
}

.FormTextarea {
    height: auto;
    resize: none;
}

.SubmitButton {
    border: 1px solid #191718;
    font-family: Josefin Sans;
    font-size: 24px;
    font-weight: 300;
    line-height: 24px;
    text-align: center;
    color: #191718;
    width: max-content;
    cursor: pointer;
    padding: 16px 64px;
    align-self: center;
    margin-top: 90px;
    margin-bottom: 80px;
    border-radius: 2px;
    transition: all 0.5s ease;
}

.SubmitButton:hover {
    box-shadow: -4px 4px 8px rgba(0, 0, 0, 0.25);
    transform: scale(1.05);
}

#mandatory_text {
    color: red;
    text-align: center;
    margin-top: 55px;
    margin-bottom: -70px;
    display: none;
}





/* ReachToUsWrapper start here  */

.ReachToUsWrapper {
    width: 100%;
    background-color: #191718;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1vw;
}

.ReachToUsContainer {
    padding: 13.8em 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ContactWrapper {
    display: flex;
    align-items: center;
    width: 50vw;
    justify-content: center;
    width: 60vw;
    margin-top: 6em;
    gap: 15px;
}

.ContactContainer {
    display: flex;
    align-items: center;
    gap: 15px;
}



.ReachToUsText {
    font-family: Salty Feathers DEMO;
    font-size: 6.6em;
    font-weight: 400;
    line-height: 105.6px;
    text-align: left;
    color: #F5F5F5;
}



.contactDetails {
    font-family: Josefin Sans;
    font-size: 24.58px;
    font-size: 1.73em;
    font-weight: 400;
    line-height: 1.73em;
    text-align: left;
    color: #F5F5F5;
}

.mailLink,
.phoneLink {
    text-decoration: none;
    color: #F5F5F5;
    transition: color 0.9s ease;
}

.mailLink:hover {
    color: #C08882;
}

.phoneLink:hover {
    color: #C08882;
}

.ContactIcon {
    height: 2em;
    width: auto;
    margin-top: -5px;
}

#Phone {
    margin-left: 7.8em;
}

.ReachToUsWrapper {
    font-size: 1.2vw;
}





@media (max-width: 700px) {

    .ReachToUsWrapper {
        font-size: 1.2vw;
    }

    .ReachToUsText {
        font-size: 8em;
    }

    .ContactWrapper {
        width: 80vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    #Phone {
        margin-left: 0em;
    }

    .ContactIcon {
        height: 2.5em;
    }

    .mailLink,
    .phoneLink {
        font-size: 1.5em;
    }

    .ContactContainer {
        margin-top: 5%;
    }


}

@media (max-width: 500px) {

    .ReachToUsWrapper {
        font-size: 1.8vw;
    }

    .ContactWrapper{
        width: 80vw;
        gap: 5px;
        margin: 0em;
    }



}



/* ----------------------------------------Footer Start----------------------------------------------  */

.OurFounderFooter a {
    height: 20dvh;
    width: 100%;
    background: #0D0C0D;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
    background: linear-gradient(to left, #0D0C0D 50%, #191718 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    transition: background-position 0.8s ease-out;
}

.OurFounderFooter a:hover {
    background-position: left bottom;
    transition: background-position 0.8s ease-out;
}


.OurFounderFooter a:hover,
.OurFounderFooter a:visited,
.OurFounderFooter a:link,
.OurFounderFooter a:active {
    color: inherit;
    text-decoration: none;
}


.BackToHomeOurFounder {
    margin-left: 1%;
    font-family: Josefin Sans;
    font-size: 24px;
    font-weight: 300;
    line-height: 24px;
    color: #F5F5F5;
    text-decoration: none;
    position: relative;

}

/* .BackToHomeOurFounder::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -6px;
    height: 1.5px;
    width: 100%;
    background-color: #fff;
    transform: translateX(-50%);
    z-index: 1;
} */