:root {
    --primary-color: rgb(255, 226, 226);
    --secondary-color: rgba(255, 255, 255, 0.404);
    --border-color: black;
    --hover-color: rgb(255, 255, 255);
}


@font-face {
  font-family: 'kamos';
  src: url('assets/fonts/Kamos.ttf') format('truetype');
}
@font-face {
    font-family: 'coco';
    src: url('assets/fonts/Cocogoose-Classic-Medium-trial.ttf')  format('truetype');
}


*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    transition: all 0.3s ease-out;
    
    user-select: none;

    /* outline: solid 1px red; */
    
}

body {
    font-family: monospace;
}

/* -------------------------------- */

.bg{
    position: fixed;
    z-index: -1;
    width: 100%;
    height: 100%;
    filter: blur(10px);
}

.heroPage{
    padding: 2vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding: 100px;
}

.heading{
    font-family: 'kamos';
    font-size: 8vw;
}

.catagories{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 10vw;
}
.cat{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2vh;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.cat:hover{
    background-color: var(--hover-color);
    transform: translateY(-2px);
}
.cat a {
    font-size: 1.5em;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2vh;
}
.cat img{
    max-width: 30px;
    object-fit: cover;
    border-radius: 10px;
}

/* -------------------------------- */

.products{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
    padding: 20px;
}

/* ---------Card--------- */
.pdiv{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 1em;
    font-size: 1.5em;
    width: 300px;
    border-radius: 10px;
    background-color: var(--secondary-color);
}
.pdiv:hover{
    background-color: var(--hover-color);
    transform: translateY(-2px);
}
.pdiv img{
    width: 300px;
    object-fit: cover;
    border-radius: 10px;
}

button{
    cursor: pointer;
    width: 80%;
    height: 50px;
    border-radius: 5px;
    font-family: monospace;
    font-weight: 300;
    border: none;
    background-color: rgba(0, 0, 0, 0.137);
    color: black;
}
button:hover{
    background-color: black;
    color: white;
    transform: translateY(-2px);
}

/* ----------------------- */
.product-section {
    padding: 2em 0;
    margin: 2em 0;
    border-top: 2px solid var(--border-color);
}

.section-heading {
    font-family: 'kamos';
    font-size: 3em;
    text-align: center;
    margin-bottom: 1em;
}

.product-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
}


.atc {
    width: 100%;
    height: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
    font-size: 1em;
    background-color: rgba(189, 189, 189, 0.342);
    color: black;
    border-radius: 5px;
    cursor: pointer;
}

.atc:hover {
    transform: translateY(-2px);
    background-color: black;
    color: white;
}

.inDiv {
    width: 2em;
    height: 2em;
    display: grid;
    place-items: center;
    cursor: pointer;
}