/*
class="text" 
.text {}

id="text"
#text {}
*/

:root {
  --color-black: #0A0B1A;
  --color-white: #FFF5E1;
  --color-theme1: #1C1442;
  --color-theme2: #2B1660;
  --color-theme3: #142850;
}




body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}


.Nav_Bar nav {
    position: fixed;
    z-index: 10; /*affects the stacking priority of the object*/
    margin: auto;
    
    top: 50%;
    transform: translateY(-50%); /*together, these two move the object to be centerd vertically in the screen*/

    left: 0;
    
    display: flex;
    align-items: center;


    height: auto;
    width: 15vw;

}

.Nav_Bar nav ul {
    display: flex;
    flex-flow: column;
    gap: 3vh;
}

.Nav_Bar nav ul li {
    text-transform: uppercase;          
    font-size: clamp(1rem, 2vh, 1.5rem);
    font-family: 'quantico';
    list-style: none;

}

.Nav_Bar nav ul li a {
    text-decoration: none;
    
    transition: all 0.3s ease 0s;

    color: var(--color-white);

    mix-blend-mode: difference;

}

.Nav_Bar nav ul li a:hover {
    transition: all 0.3s ease 0s;
    color: sandybrown;
}

/*==========================================================================================================
begin overall architecture for landing page

have pages that snap when you scroll, not super duper aggressive, take up the whole view port like a slide show
==========================================================================================================*/
.binder {
    overflow-y: scroll;
    scroll-snap-type: y proximity;
    height: 100vh;

    background-image: url('/media/background/m31.webp'); /* default static image */
    background-size: cover;     /* like object-fit: cover */
    background-position: center;
    background-repeat: no-repeat;


    scrollbar-width: none;
}

.page {
    z-index: 2;
    
    margin: 0;
    border: 0;
    padding: 0;

    scroll-snap-align: end;

    height: 100%;
    width: 100%;
}


/*individual pages for landing page, only have three right now:
- Signature Page 
- About
- Connect
*/
#hancockHero {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
}
#signature {
    margin: auto;
    font-size: clamp(3rem, 8vw, 10rem);
    font-family: 'Ruigslay';

    z-index: 2;
    position: relative;
    color: var(--color-white);
    mix-blend-mode: exclusion;

    transform: translate(-10%,-20%);
}
#scrollPrompter {
    display: flex;
    justify-content: center;

}

.backVideo {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    z-index: 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0, 0.4);
    z-index: 1;
}


/*
==========================================================================================================
ABOUT page
==========================================================================================================
*/
#aboutPage {
    /*background: linear-gradient(to bottom, var(--color-black), var(--color-theme1) );*/
    display: flex;
    flex-flow: column;
    justify-content: start;
    align-items: center;

    height: 200%;
}

.fillerBox {
    width: 100%;
    height: 5vh;
}
#aboutTitle {
    width: 100%;
    height: 10vh;

    display: flex;
    justify-content: center;
}

#aboutTitle p{
    display: inline-block;
    
    max-width: 100%;
    height: 100%;


    margin-top: 0;
    margin-bottom: 0;
    margin-left: 15vw;
    margin-right: 30vw;

    text-align: left;

    color: var(--color-white);
    font-family: 'Quantico';
    font-size: clamp(1.5rem, 3rem, 3rem);
}
#contentBox1 {
    width: 100%;
    height: 55vh;

    display: inline-flex;
}

#spacer {
    width: 15vw;
    height: 100%;
}

#aboutSpacer{
    height: 10vh;
    width: 100%;
}
#aboutMainText {
    width: 45vw;
    height: 100%;

    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}

#aboutMainText p {
    color: var(--color-white);
    font-family: 'Times New Roman';
    font-size: 2rem;
    padding-left: 2.5vw;
    padding-right: 2.5vw;
}

#aboutMainText a{
    color: var(--color-black);
    background-color: var(--color-white);
    font-family: 'CanelaReg';
    font-size: 2rem;
    padding-left: 2.5vw;
    padding-right: 2.5vw;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
    border-radius: 9999px;
    text-decoration: none;
    display: inline-block;
}

#altText {
    font-size: clamp(1.5rem, 5vw, 4rem);
    color: var(--color-white);
}
#funText {
    font-family: 'Ruigslay';
    font-size: clamp(1.5rem, 4vw, 3rem);
}
#CanelaMed {
    font-family: 'CanelaMed';
    font-size: clamp(1.5rem, 4vw, 1.5rem);
}

#pictureFrame {
    width: 25vw;
    height: 100%;

    
    display: flex;
    justify-content: center;

}
#pictureFrame img {
    width: auto;
    height: 100%;

    border: 1vh solid var(--color-white);
    border-radius: 20px;
}

#contentBox2 {
    width: 100%;
    height: 80vh;
    display: flex;
}

#GoalsandInterest {
    width: 70vw;
    height: 100%;

    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;

}

#GoalsandInterestTitle {
    width: 45vw;
}

#contentBox2 p {
    color: var(--color-white);
    font-family: 'Canelareg';
    text-align: left;
    font-size: clamp(.75rem, 1.5vw, 1.25rem);

    margin: 0%;

}
#contentBox2 h1 {
    color: var(--color-white);
    font-family: 'CanelaMed';
    font-size: clamp(1.5rem, 4vw, 3rem);
    margin-top: 0%;
    margin-bottom: 1vh;
}

#contentBox3 {
    width: 100%;
    height: 55vh;
    display: flex;


}


#CurrentPursuits {
    width: 70vw;
    height: 100%;

    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;

}

#CurrentPursuitsTitle {
    width: 45vw;
}

#contentBox3 p {
    color: var(--color-white);
    font-family: 'Canelareg';
    text-align: left;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    margin: 0%;
}

#contentBox3 h1 {
    color: var(--color-white);
    font-family: 'CanelaMed';
    font-size: clamp(1.5rem, 4vw, 3rem);
    margin-top: 0%;
    margin-bottom: 1vh;
}


/*
================================================================================================================
CONNECT page
==============================================================================================================
*/

#connectPage {
    /*  background: linear-gradient(to top, var(--color-black), var(--color-theme1) );*/

   
    display: flex;
    justify-content: center;
    align-items: center;
}

#connectPage li{
    color: var(--color-white);
    list-style: none;
    text-align: center;

    font-family: 'Quantico';
    font-size: 2rem;
}

#connectPage img{
    height: 100%;
    width: auto;
}