@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; /* Smooth transition for scaling and glow */
    -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));
}

#WhatsappIcon:hover {
    transform: scale(1.1); /* Scale up icon on hover */
    -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 {
    background-color: black;
    height: 100dvh;
    width: 100%;
    position: relative;
}

#TopContainer {
    display: flex;
    width: 50%;
    justify-content: space-between;
    align-items: center;
    margin-left: 43%;

}

#KaheenIcon {
    width: 198px;
    margin-right: -30px;
    cursor: pointer;
}

#MenuButton {
    cursor: pointer;
}




/* Fourth slide start */


.FourthDivWrapper {
    min-height: 100dvh;
    width: 100%;
    background: #F5F5F5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ForthInnerDiv {
    padding: 5% 0;
    width: 85%;
}


.RaveText {
    font-family: Salty Feathers DEMO;
    font-size: 100px;
    font-weight: 400;
    letter-spacing: 0.08em;
    width: min-content;
}

.FourthDivContainer {
    display: flex;
    justify-content: space-between;
    margin-top: 1%;
}


.LeftSideArrowContainer {
    display: flex;
    width: 40%;
    margin-top: 30px;
    gap: 50px;
}

.LeftSideContainer {

    .NameText, .LocationText {
        opacity: 1;
        transition: opacity 1s ease; 
    }
    
    .NameText.visible, .LocationText.visible {
        opacity: 1;
    }

    .NameText {
        font-family: Josefin Sans;
        font-size: 40px;
        font-weight: 400;
        line-height: 40px;
        text-align: left;
        text-wrap: nowrap;
    }

    .LocationText {
        font-family: Josefin Sans;
        font-size: 20px;
        font-weight: 400;
        line-height: 20px;
        text-align: left;
        text-wrap: nowrap;
        margin-top: 7px;
    }

    

    .LeftArrow {
        border: 1.5px solid black;
        padding: 8px;
        border-radius: 50%;
        cursor: pointer;

    }

    .RightArrow {
        transform: rotate(180deg);
        border: 1.5px solid black;
        padding: 8px;
        border-radius: 50%;
        cursor: pointer;
    }
}

.RightSideContainer {
    margin-left: 10%;
    background-color: #C08882;
    width: clamp(300px, 50vw, 550px);
    color: #fff;
    padding: 60px 90px;
    position: relative;
    border-radius: 12px;
    /* margin-top: 2%; */
 
}

.RightSideText {
    font-family: Josefin Sans;
    font-size: 22px;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.09em;
    position: relative;
    max-height: calc(1.6em * 6); /* Limit to 6 lines */
    display: -webkit-box;
    -webkit-line-clamp: 6; /* Limit to 6 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, opacity 1s ease; 
}

.RightSideText.expanded {
    -webkit-line-clamp: unset; /* Remove line clamp when expanded */
    line-clamp: unset;
}

.ReadMoreButton {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-family: Josefin Sans;
    font-size: 22px;
    font-weight: 300;
    text-decoration: underline;
    transition: color 0.3s ease, opacity 1s ease;
    display: none; 
    opacity: 0; 
    margin-left: -6px;
}

.ReadMoreButton.visible {
    display: inline;
}

.ReadMoreButton:hover {
    cursor: pointer;
}



/* .RightSideText::before,
.RightSideText::after {
    content: url('../assets/icons/quotationMark.png');
    position: absolute;
    width: 16px;
    height: auto;
    filter: invert(1);
    z-index: 100;

}

.RightSideText::before {
    left: -25px;
    top: 0;
    transform: translateY(-50%);
}

.RightSideText::after {
    right: -25px;
    right: 0;
    bottom: 0;
    transform: rotate(180deg) translate(0, -50%);
} */




@media (max-width: 700px) {
    
    #KaheenIcon {
        transform: translate(-30%);
    }

    #MenuButton {
        margin-left: -10px;
    }

    .MeetOurFounderText {
        font-family: Salty Feathers DEMO;
        font-size: 15em;
        font-weight: 400;
        line-height: 105.6px;
        color: #F5F5F5;
        text-align: center;
        margin-top: 10%;
        margin-right: 0;
    }
}

@media (max-width: 370px) {
    #MenuButton {
        margin-left: -30px;
    }
}


#HomePageHeadingWrapper {
    height: 70svh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 10.45vw;
}

#HomePageHeading {
    color: var(--White);
    text-align: center;
    font-family: "Salty Feathers DEMO";
    font-size: clamp(12px, 12vw, 100px);
    margin-bottom: 0.5em;
    font-weight: 400;
    align-self: center;
    justify-self: center;
    text-wrap: nowrap;
}


#BottomWrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

#HomePageSubHeading {
    color: #C08882;
    font-family: "Josefin Sans";
    font-size: 0.18em;
    text-align: center;
    font-weight: 400;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap; 
    margin: 0;
}

#dynamicWordContainer {
    display: inline-block;
    transition: width 1s ease;
}

#dynamicWord {
    color: #fff;
    font-family: "Josefin Sans";
    font-weight: 400;
    font-size: inherit;
    display: inline-block;
    white-space: nowrap;
    padding-left: 5px;
    transition: opacity 1s ease;
}

.OurInstagramText {
    font-family: Salty Feathers DEMO;
    font-size: 96px;
    font-weight: 400;
    line-height: 105.6px;
    letter-spacing: 0.04em;
    color: #F5F5F5;
    margin-bottom: 3%;
}






#BeginButton {
    background: black;
    color: #F5F5F5;
    font-family: "Josefin Sans";
    font-size: 20px;
    font-weight: 300;
    padding: 16px 40px;
    border: 1px solid #F5F5F5;
    cursor: pointer;
    margin-top: 8vh;
    margin-bottom: 8vh;
    border-radius: 8px;
    transition: all 0.5s ease;
}

#BeginButton:hover {
    box-shadow: -4px 4px 8px rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}


#DownArrow {
    position: absolute;
    bottom: 3%;
    height: 80px;
    cursor: pointer;
}

@media (max-width: 800px) {

    #HomePageSubHeading {
        color: #C08882;
        font-family: "Josefin Sans";
        font-size: 0.3em;
    }

    #BeginButton {
        font-size: 20px;
        padding: 12px 48px;
    }

    .LeftSideArrowContainer{
        gap: 10px;
    }
}

@media (max-width: 400px) {

    #HomePageSubHeading {
        color: #C08882;
        font-family: "Josefin Sans";
        font-size: 0.3em;
    }

    #BeginButton {
        font-size: 16px;
        padding: 8px 32px;
    }

}




/* Second slide css start */

#SecondSlideWrapper {
    position: relative;
    height: 100svh;
    width: 100%;
    overflow: hidden;
    font-size: 1vw;
}

#SecondSlideImage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.55) 100%);
    z-index: 2;
}

.content {
    position: relative;
    z-index: 3;
    color: #fff;
    text-align: center;
    margin-left: 30%;
    top: 22%;
}

.contentContainer {
    display: flex;
}


#ourStory {
    font-family: Salty Feathers DEMO;
    font-size: 6.65em;
    font-weight: 400;
    line-height: 105.6px;
    text-align: left;
    margin-left: -20%;
    text-wrap: nowrap;

}

#paragraph {
    font-family: Josefin Sans;
    font-size: 18px;
    font-weight: normal;
    color: #F5F5F5;
    max-width: 540px;
    line-height: 28.89px;
    letter-spacing: 0.09em;
    text-align: left;
    margin-top: 30%;
}


#knowMore {
    display: flex;
    position: relative;
    width: max-content;
    margin-top: 4vh;
}

#KnowMoreText {
    font-family: Josefin Sans;
    font-size: 20px;
    font-weight: 400;
    text-align: left;
    text-decoration: none;
    position: relative;
    transition: color 0.9s ease;
}

#KnowMoreText:hover{
    color: #C08882;
}

/* #KnowMoreText::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -6px;
    height: 2px;
    width: 100%;
    background-color: #fff;
    transform: translateX(-50%);
    z-index: -1;
}

#KnowMoreText::after:hover {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -5px;
    height: 2px;
    width: 100%;
    background-color: #fff;
    transform: translateX(-50%);
    z-index: -1;
} */


#rightArrow {
    position: absolute;
    transform: rotate(-90deg);
    top: -100%;
    right: -80%;
    width: 70%;
}

a {
    text-decoration: none;
    color: inherit;
}

a:link,
a:visited,
a:hover,
a:active {
    text-decoration: none;
    color: inherit;
}

@media (max-width: 900px) {

    #paragraph {
        font-size: 15px;
        padding-right: 10%;
    }

    #KnowMoreText {
        font-size: 18px;
    }
}

@media (max-width: 700px) {

    .content {
        margin-left: 0;
        top: auto;
    }

    .contentContainer {
        display: flex;
        flex-direction: column;
        padding: 0 5%;
        justify-content: center;
        height: 100dvh;
    }

    #ourStory {
        font-size: 96px;
        margin-left: 0;

    }

    #paragraph {
        font-size: 18px;
        margin-top: 15%;
    }
}



/* Third slide Start */

.ThirdDivWrapper {
    /* height: 44.9vw; */
    height: 79.7dvh;
    width: 100%;
    background: #0D0C0D;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1vw;

}

.ThirdDivHeading {
    font-family: Salty Feathers DEMO;
    font-size: 120px;
    font-weight: 400;
    line-height: 132px;
    letter-spacing: 0.04em;
    text-align: center;
    color: #C08882;
    align-items: center;
    justify-content: center;
}

.ThirdDivPara {
    font-family: Josefin Sans;
    font-size: 24px;
    font-weight: 400;
    line-height: 24px;
    text-align: right;
    color: #F5F5F5;
}

@media (max-width: 900px) {

    .ThirdDivWrapper {
        height: 70dvh;
    }


    .ThirdDivHeading {
        font-size: 100px;
        line-height: 120px;
    }

    .ThirdDivPara {
        font-size: 20px;
    }
}

@media (max-width: 700px) {
    .ThirdDivWrapper {
        height: 65dvh;
    }

    .ThirdDivHeading {
        font-size: 70px;
        line-height: 110px;
    }

    .ThirdDivPara {
        font-size: 18px;
    }
}

@media (max-width: 500px) {
    .ThirdDivWrapper {
        height: 60dvh;
    }

    .ThirdDivHeading {
        font-size: 60px;
        line-height: 100px;
    }

    .ThirdDivPara {
        font-size: 14px;
    }
}

@media (max-width: 400px) {
    .ThirdDivWrapper {
        height: 50dvh;
    }

    .ThirdDivHeading {
        font-size: 40px;
        line-height: 50px;
    }

    .ThirdDivPara {
        font-size: 10px;
    }
}


@media (max-width: 1000px) {
    .RaveText, .OurInstagramText {
        font-size: 90px;
        line-height: 90px;
    }

    .LeftSideContainer {
        .NameText {
            font-size: 35px;
            line-height: 40px;

        }

        .LocationText {
            font-size: 18px;
            line-height: 18px;
        }

        .LeftArrow {
            height: 10px;
        }

        .RightArrow {
            height: 10px;
        }
    }

    .RightSideContainer {
        /* width: 50vw; */
        padding: 50px 80px;
    }

    .RightSideText, .ReadMoreButton {
        font-size: 18px;
        line-height: 30px;
    }
}

@media (max-width: 800px) {
    .RaveText, .OurInstagramText {
        font-size: 70px;
        line-height: 70px;
    }

    .LeftSideContainer {
        .NameText {
            font-size: 25px;
            line-height: 30px;

        }
        .LocationText {
            font-size: 15px;
            line-height: 15px;
        }

        .LeftArrow {
            height: 8px;
            margin-right: 50%;
        }

        .RightArrow {
            height: 8px;
        }
    }

    .RightSideContainer {
        /* width: 50vw; */
        padding: 30px 40px;
    }

    .RightSideText, .ReadMoreButton {
        font-size: 14px;
        line-height: 20px;
    }
}

@media (max-width: 550px) {
    .RaveText {
        line-height: 105.6px;
    }

    .FourthDivContainer {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 0%;
    }

    .LeftSideContainer {
        align-self: start;
    }

    .RightSideContainer {
        margin-top: 10%;
        margin-left: 0%;
        width: 70vw;
    }

}


/* Fifth slide start */

.FifthDivWrapper {
    min-height: 100dvh;
    max-height: 100vh;
    width: 100%;
    background: #191718;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.FifthDivContainer {
    margin-left: 10%;
}



.InstagramImageContainer {
    display: flex;
    overflow: hidden;
    overflow-x: scroll;
    scroll-behavior: smooth;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.InstagramImageContainer::-webkit-scrollbar {
    display: none;
}

.InstagramImageWrapper {
    position: relative;
    display: inline-block;
}

.InstagramImage {
    height: 40vh;
    width: 40vh;
    object-fit: cover;
}

.ImageOverlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.EyeIcon {
    width: 50px;
    height: 50px;
    cursor: pointer;
}

.InstagramImageWrapper:hover .ImageOverlay {
    opacity: 1;
}

.FollowUsInstagramTextWrapper {
    width: 100%;
    margin-top: 7%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
@media (max-width: 720px) {
    .FollowUsInstagramTextWrapper {

        margin-top: 25%;
        
    }
}


.FollowUsInstagramText {
    font-family: Josefin Sans;
    font-size: 24px;
    font-weight: 400;
    line-height: 24px;
    color: #F5F5F5;
    text-align: center;
    text-decoration: none;
    transition: color 0.9s ease;
}

.FollowUsInstagramText:hover {
    color: #C08882;
}


/* Pop-up modal styles */
.ImagePopup {
    position: fixed;
    /* top: 73.2%; */
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background-color: rgba(0, 0, 0, 0.8); /* Black background with opacity */
    justify-content: center;
    align-items: center;
    z-index: 1000; /* High z-index to appear above other elements */
    opacity: 0; /* Initially hidden */
    transform: translateY(-100%); /* Slide up and out of view */
    transition: transform 0.5s ease, opacity 0.5s ease; /* Smooth transition for showing */
    display: flex; /* Ensure flexbox for centering */
}

/* Slide-in effect */
.ImagePopup.active {
    opacity: 1; /* Fully visible */
    transform: translateY(0); /* Slide down into view */
}

.PopupImage {
    max-width: 80%;
    max-height: 80%;
    border-radius: 8px;
}

.ClosePopupButton {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

body.no-scroll {
    overflow: hidden; /* Disable page scrolling */
}
