/* GLOBAL ------------------------------------------------------------------------------------------------------------- */
:root {
    box-sizing: border-box;                   /*Prevent overflow/vertical scroll bars*/
    scroll-behavior: smooth;
    --black: #000000;
    --green: #00FF00;
}


html {
    height: 100%;                             /* Force footer to end of page */
}

@font-face {
    font-family: 'Panchang';
    src:    url(../fonts/panchang/TTF/Panchang-Extrabold.ttf) format('truetype'),
            url(../fonts/panchang/WEB/Panchang-Extrabold.woff2) format('woff2'),
            url(../fonts/panchang/WEB/Panchang-Extrabold.woff) format('woff');
}

@font-face {
    font-family: 'Satoshi';
    src:    url(../fonts/satoshi/TTF/Satoshi-Black.ttf) format('truetype'),
            url(../fonts/satoshi/WEB/Satoshi-Black.woff2) format('woff2'),
            url(../fonts/satoshi/WEB/Satoshi-Black.woff) format('woff');
}




* {
    margin: 0px;                            /* Default margins */
    padding: 0px;                           /* Default padding */
    font-family: 'Panchang', sans-serif;
    font-size: 1rem;
    line-height: 1.5rem;
    text-decoration: none;
    color: var(--black);
    scroll-behavior: smooth;                /* Smooth scrolling */
}

main {
    height: 100%;

}

/* TEXT------------------------------------------------------------------------------------------------------------------------------ */


p {
    font-family: 'Satoshi', sans-serif;
    font-size: 1.5rem;
    line-height: 2rem;
    color:  var(--black);
}

a{
    color: var(--black);
    font-family: 'Panchang', sans-serif;
    font-size: 2rem;
    text-transform: uppercase;
}


/* LOADING--------------------------------------------------------------------------------------------------------------------------- */

.loadingScreen {
    position: absolute;
    z-index: 5000;
    width: 100%;
    height: 100vh;
    background-color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
  }
/* HTML: <div class="loader"></div> */
.loader {
    width: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 8px solid;
    border-color: #000 #0000;
    animation: l1 1s infinite;
  }
  @keyframes l1 {to{transform: rotate(.5turn)}}


/* HEADER---------------------------------------------------------------------------------------------------------------------------- */

.header {
    position: fixed;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    color: var(--black);
    transform: translateY(-50%);
    top: 50%;
    left: 0%;
}

.homeAbout {
    font-family: 'Panchang', sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    margin: 10px 0px 10px 0px;
    writing-mode: vertical-lr;
    transform: scale(-1, -1);
}

.headerTitleContainer {
    width: 50%;
    display: flex;
    justify-content: center;
    padding: 20px;
    background-color: var(--green);
    text-align: center;
}

.header-title {
    font-family: 'Panchang', sans-serif;
    font-size: 3rem;
    text-transform: uppercase;
    writing-mode: vertical-lr;
    transform: scale(-1, -1);
}


/* TITLE SEQUENCE ---------------------------------------------------------------------------------------------------------------- */

.titleImageContainer {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    margin: 0;
    /* display: none; */
  }

  #titleImage {
    width: 100%;
    height: 100%;
    z-index: 100;
  }


/* HERBS -------------------------------------------------------------------------------------------------------------*/

  .herbs {
    display: grid;
    grid-template-columns: repeat(3, 350px);
    grid-row-gap: 100px;
    float: right;
    margin-right: 30px;
    margin-top: 100px;
    padding-bottom: 70px;
}



.herbs img {
    width: 200px;
    padding: 20px;
}

.herbs img:hover {
    animation: rotateY-anim 3s ease infinite;
}

@keyframes rotateY-anim {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

.herb-title {
    font-family: 'Panchang', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.5rem;
    color: var(--black);
    transform-origin: center;
}

.herb-title span {
    position: absolute;
    transform-origin: 50% 100%;
  }