:root{
    --primaryColor: #FFD9DA;
    --secondaryColor: #EA638C;
    --accentColor: #DECEBE;
    --headingText: Changa;
    --productNameText: Comfortaa;
    --productPriceText: 'Mochiy Pop One';
    --contentText: Pompiere;
    --Abel: Abel;
    --Itim: Itim;
    --classic: Antic Didone;
    --funky: Marko One;
    --abzee: ABeeZee;
}

body{
    margin: 0;
    padding: 0;
    background-color: var(--primaryColor);
    overflow: hidden;
    overflow-y: scroll;
    display: grid;
    grid-template-rows: auto 1fr auto;
    grid-template-areas: 
    "nav"
    "main"
    "footer";
}
::-webkit-scrollbar{
    display: none;
}
a{
    text-decoration: none;
    color: inherit;
}

/* HERO SECTION */
main{
    grid-area: 'main';
}
section#hero{
    width: 100vw;
    height: 100vh;
    position: relative;
    padding-top: 10vh;
}
section#hero>img{
    aspect-ratio: 11/16;
    align-self: center;
    width: 100vw;
    mask-image: 
        linear-gradient(to bottom, black 0%, black 85%, #7a7979c8 90%, #d9fff500 100%),
        linear-gradient(to left, black 0%, black 80%, #ffd9daad 90%, #d9fff500 100%),
        linear-gradient(to right, black 0%, black 80%, #ffd9daad 90%, #d9fff500 100%);
    mask-composite: intersect;
    position: relative;
    z-index: 5;
}
section#hero div.hookText{
    text-align: center;
    margin: 5vw;
}
section#hero div.hookText h1{
    font-family: var(--abzee);
    font-size: 1.5rem;
    color: #000000a3;
}
section#hero div.hookText h2{
    display: none;
    font-family: var(--Itim);
}
section#hero div.hookText img{
    width: 90vw;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
section#hero div.hookText div.cta{
    display: flex;
    flex-direction: column;
    gap: 5vh;
    align-items: center;
}
section#hero div.hookText div.cta button{
    width: 50vw;
    min-height: 8vh;
    max-height: auto;
    background-color: var(--secondaryColor);
    border: 3px solid white;
    border-radius: 25px;
    font-family: var(--Itim);
    color: white;
    position: absolute;
    z-index: 15;
    font-size: 1.2rem;
}
section#hero div.hookText div.cta button#dmbtn{
    bottom: 15vh;
}
section#hero div.hookText div.cta button#shopbtn{
    bottom: 5vh;
}

/* ABOUT SECTION */

section#about{
    width: 100%w;
    height: fit-content;
    background-color: var(--accentColor);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 10;
    gap: 0;
}
section#about div.content{
    width: 90vw;
    height: 100%;
    z-index: 2;
    position: relative;
    left: 10%;
}
section#about img{
    position: absolute;
    z-index: 0;
    height: 100vh;
    opacity: 50%;
    mask-image: linear-gradient(to right, black 0%, black 60%, #ffd9da48 90%, #d9fff500 100%);
    bottom: 0;
}
section#about h1{
    font-family: var(--headingText);
    font-size: 8vw;
    z-index: 2;
    text-align: center;
}
section#about h2{
    text-align: left;
    align-self: center;
    width: 80vw;
    height: 90%;
    font-family: var(--contentText);
    font-size: 5vw;
    z-index: 2;
}
section#shop{
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
    min-height: fit-content;
    padding-bottom: 10vh;
}
section#shop>h1{
    font-family: var(--headingText);
    font-size: 2rem;
    text-align: center;
}
section#shop section#categories{
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    row-gap: 5vh;
    width: 80vw;
}
section#shop div.category{
    width: 50vw;
    height: 60vh;
    min-height: fit-content;
    background-color: #ea638c90;
    z-index: 20;
    font-size: 1rem;
    overflow: hidden;
    padding: 1% 4%;
    border: 2px solid black;
    margin: 0 auto;
}
section#shop div.category a{
    display: flex;
    flex-direction: column;
    height: 100%;
}
section#shop div.category a>img{
    aspect-ratio: 9/12;
    width: auto;
    height: 80%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 20px;
}
section#shop div.category h2{
    margin: auto;
    text-align: center;
    font-family: var(--abzee);
    position: relative;
    display: flex;
    height: fit-content;
    justify-content: center;
    align-items: center;
    gap: 2%;
    text-decoration: underline;
}
section#shop div.category h2>img{
    width: 10%;
    height: auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

@media screen and (width <= 2500px) and (orientation: landscape){
    /* HERO SECTION */
    section#hero{
        height: 100vh;
        position: relative;
        margin: 0;
        padding-top: 8vh;
        overflow: hidden;
        display: flex;
    }
    section#hero>img{
        height: 100vh;
        width: auto;
        position: absolute;
        right: 0;
        bottom: 0;
        mask-image: linear-gradient(to left, black 0%, black 80%, #ffd9daad 90%, #d9fff500 100%);
    }
    section#hero div.hookText{
        text-align: left;
        width: 50vw;
        height: 85vh;
        display: flex;
        flex-direction: column;
        align-content: start;
        justify-content: start;
        margin-top: 10vh;
        position: relative;
    }
    section#hero div.hookText img{
        width: 40vw;
        left: auto;
        transform: none;
        position: relative;
    }
    section#hero div.hookText h1{
        font-size: 3rem;
    }
    section#hero div.hookText h2{
        display: block;
        font-family: var(--abzee);
    }
    section#hero div.hookText div.cta{
        align-items: flex-start;
        gap: 5vh;
        margin-top: 5vh;
    }
    section#hero div.hookText div.cta button{
        width: 25vw;
        min-width: fit-content;
        font-size: 1.5rem;
        position: unset;
    }
    section#hero div.hookText div.cta button:hover{
        border-color: var(--secondaryColor);
        color: var(--secondaryColor);
        background-color: var(--primaryColor);
        box-shadow: 0px 0px 20px 15px var(--secondaryColor);
        transition: 1s 0s ease-in-out;
        transform: translateY(-10px);
    }
    /* ABOUT SECTION */
    section#about{
        height: fit-content;
        overflow: hidden;
    }
    section#about img{
        width: 80vw;
        height: auto;
        opacity: 80%;
        mask-image: linear-gradient(to right, black 0%, black 60%, #ffd9da48 90%, #d9fff500 100%);
        bottom: 0;
        transform: translateY(20%);
    }
    section#about  h1{
        text-align: center;
        font-size: 6vw;
    }
    section#about h2{
        font-size: 2vw;
        width: 40vw;
        align-self: flex-end;
        justify-self: flex-end;
    }
    section#shop section#categories{
        margin: 0% auto;
    }
    section#shop div.category{
        width: 20vw;
        margin: 0% 2%;
        padding: 1%;
    }
    section#shop div.category a>img{
        height: 80%;
    }
    section#shop div.category h2>img{
        width: 0%;
        transform: translateY(-50%) scale(0);
    }
    section#shop div.category h2{
        text-decoration: none;
    }
    section#shop div.category:hover{
        background-color: #EA638C;
        border-radius: 20px;
        transform: scaleY(105%);
        transition: 0.7s 0s ease-in-out;
    }
    section#shop div.category:hover h2{
        text-decoration: underline;
        transition: 0.9s 0s ease-in-out;
    }
    section#shop div.category:hover h2>img{
        width: 10%;
        display: block;
        transform: translateY(-50%) scale(100%);
        transition: 0.9s 0s ease-in-out;
    }
}