

.userArea{
    top:0;
}

.topnav{
    top: 50px;
}

.hero::before{
    display: block;
    content: "";
    height: 75px;
    margin-top: 0!important;
}

.hero{
    position: relative;
    height: 85vh;
    display: flex;
}

.hero h1{
    position: absolute;
    top: 45%;
    left: 20%;
    right: 20%;
    font-size: clamp(1rem, 4vw, 4.5rem);
    letter-spacing: .17rem;
    background-color: #a94803;
    color: white;
    padding: .9rem 3rem;
    text-align: center;
    margin: 0 auto;
}

.hero figure{
   width: 100%;
   align-self: flex-end;
   font-size: 0;
}
.hero img{
    width: 60%;
    height: auto;
}


/*
Cookie area
*/

.cookieSection{
    display: block;
    height: 150px;
    min-width: 50%;
    position:fixed;
    top: -150px;
    left: 46%;
    transform: translateX(-46%);
    margin: 0 auto;
    background-color: #ff8a37;
    padding: 2rem 0;
    border-radius: 5rem 5rem;
    opacity: 0;
    z-index: 2;
}

.cookieSection p {
    width: 100%;
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.3rem); 
    word-wrap: break-word;
}

.accept{
    font-size: 1.1rem;
    border: none;
    min-width: 25%;
    text-decoration: none;
    padding: .5rem 1.5rem;
    background-color: #6700c7;
    color: white;
    letter-spacing: .1rem;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}



.accept:hover{
    background-color: #888888;
    cursor: pointer;
}

.cookieClose{
    font-size: 2rem;
    border: 0;
    min-height: 50px;
    min-width: 50px;
    background-color: #dfdfdf;
    color:#cb7335;
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-weight: bold;
    border-radius: 50% 50%;
    transform: translate(-20px, -40px);
    outline: 1px solid black;
}

.cookieClose:hover{
    color: #dfdfdf;
    background-color: #cb7335;
    cursor: pointer;
}

@media only screen and (max-width: 700px) {
    .cookieSection p {
        width: 70%;
        margin: 0 auto;
    }
    .cookieSection{
        height: 200px;
    }
}





.foxesStore{
    background-image: linear-gradient(to bottom, white .5%, #adc9d4 15%);
}

.cardStore{
    width: 300px;
    height: 350px;
}

.cardStore h3{
    font-size: clamp(1.3rem, 2vw, 1.9rem);
    padding: 0;
}

.cardStore p{
    font-size: clamp(.9rem, 1.5vw, 1rem);
    max-width: 25ch;
    line-height: 1.5rem;
    letter-spacing: .12rem;
}

.cardContentStore{
    height: 400px;
    height: 100%;
    max-width: 350px;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    justify-content:space-evenly;
    align-items: center;
    background-color: white;
    border: 2px solid #fccaca;
}

.cardButtonsStore{
    width: 100%;
    display: flex;
    gap: 2rem;
    padding: 0 1rem;
}

.cardButtonsStore button{
    padding: .8rem 1rem;
    border: none;
    background-color: #410000;
    color: white;
    width: 75%;
}

.cardButtonsStore button:hover{
    background-color: #bc8f8f;
    color: black;
    cursor: pointer;
}

.storeGrid{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 1.5rem;
    justify-content: center;
    padding-top: 3rem;
    padding-bottom: 7rem;
}

@media only screen and (max-width: 1350px) {
    .storeGrid{
        grid-template-columns: repeat(3, auto);
    }
}

@media only screen and (max-width: 1060px) {
    .storeGrid{
        grid-template-columns: repeat(2, auto);
    }
}

@media only screen and (max-width: 1000px) {
    .hero{
        height: max-content;
    }
}

@media only screen and (max-width: 750px) {
    .storeGrid{
        grid-template-columns: auto;
    }
    .hero img{
        width: 100%;
    }
}