@font-face {
    font-family: 'Salty Feathers DEMO';
    src: url('../assets/fonts/Salty Feathers Demo.otf') format('opentype');
}

:root {
    --White: #fff;
    --Egg-white: #F5F5F5;
}

body, html {
    margin: 0;
    padding: 0;

}


#videoContainer {
    position: relative;
    height: 100%;
    width: 100%;

}



#backgroundVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100dvh;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
    overflow: hidden;
}

.overlayDiv1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 9.56%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 2; 
}

.contentDiv1 {
    position: relative;
    z-index: 3; 
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100dvh; 
    text-align: center; 
    color: var(--White);
}

.contentWrapper{
    height: 90dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

#HomePageHeadingDiv1 {
    font-family: Josefin Sans;
font-size: 28px;
font-weight: 300;
line-height: 28px;
letter-spacing: 0.1em;
text-align: center;
margin-bottom: -10px;

}

#HomePageSubHeadingDiv1 {
    font-family: 'Salty Feathers DEMO';
    font-size: 176px;
    font-weight: 400;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;

}

.reveal-text {
    width: 100%;
    animation: revealText 12s cubic-bezier(0.77, 0, 0.175, 1) forwards;
    white-space: nowrap;
}

@keyframes revealText {
    0% {
        clip-path: inset(0 100% 0 -10px); /* Adjust left clip to prevent initial cut-off */
    }
    100% {
        clip-path: inset(0 -10px 0 -10px); /* Adjust both sides to prevent final cut-off */
    }
}


#EnterSiteButton {
    cursor: pointer;
    border: none;
    background: none;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 24px;
    font-weight: 300;
    line-height: 24px;
    text-align: center;
    color: #fff;
    text-decoration: none; 
    position: relative; 
    
}
/* #EnterSiteButton::after {
    content: ''; 
    position: absolute;
    left: 50%;
    bottom: -4px; 
    height: 2px; 
    width: 90%; 
    background-color: #fff; 
    transform: translateX(-50%); 
    z-index: -1; 
} */

@media (max-width: 550px) {
    #HomePageHeading {
        font-family: Josefin Sans;
    font-size: 5vw;
    font-weight: 300;
    line-height: 28px;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: -10px;
    
    }
    
    #HomePageSubHeadingDiv1 {
        font-size: 31vw;
        padding: 0 5px; 
    }

    #HomePageHeadingDiv1{
        font-size: clamp(12px, 7vw, 28px);
    }
    
    #EnterSiteButton {
        cursor: pointer;
        border: none;
        background: none;
        font-family: 'Josefin Sans', sans-serif;
        font-size: 20px;
        font-weight: 300;
        line-height: 24px;
        text-align: center;
        color: #fff;
        text-decoration: none; 
        position: relative; 
    }
    /* #EnterSiteButton::after {
        content: ''; 
        position: absolute;
        left: 50%;
        bottom: -4px; 
        height: 2px; 
        width: 90%; 
        background-color: #fff; 
        transform: translateX(-50%); 
        z-index: -1; 
    } */
}

