@font-face {
    font-family: 'Fira';
    src: url('/public/assets/fonts/firasanscondensed-light.otf');
}

* {
    font-family: "Fira";
    margin: 0;
    padding: 0;
}


/* HEADER  */
.header {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10vh; /* Full height to center the logo vertically */
    font-family: "Fira";
}

.header-content a {
    display: inline-block; /* Display links in a row */
    color: black;
    text-decoration: none;
    padding: 10px;
    margin: 0 0px;
}

.header-content {
    display: none;
    position: absolute;
    top: 100%; /* Position below the logo */
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    /* border: 1px solid #ccc; */
    padding: 10px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    z-index: 1;
    white-space: nowrap; /* Prevent wrapping */
}



/* LOGO  */
.logo {
    width: 40px; /* Adjust size as needed */
    height: auto;
    cursor: pointer;
    margin-bottom: 0px;
    margin-top: 40px;
    /* align-items: center; */
}

.logo-div{
    width: 30vw;
    margin: 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
} 

.logo-container{
    position: relative;
    align-items: center;
}
/* DROPDOWN */

.dropdown {
    position: relative;
    display: inline-block; /* Align with other links */
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    z-index: 1;
    flex-direction: column;
    padding: 10px;
}

.dropdown-content a {
    display: block;
    padding: 10px;
    white-space: nowrap;
}

.dropdown-content a:hover {
    background-color: #f0f0f0;
}

/* Show header content on hover */
.logo-container:hover .header-content,
.header-content:hover {
    display: block;
}

/* Show dropdown content on hover */
.dropdown:hover .dropdown-content {
    display: block;
}



/* SHOP  */

.click-zone {
    position: absolute;
    top: 0px;
    right: 0px;
    margin: 10px; 
    margin-top: 30px;
    margin-right: 30px;
    width: 40px; 
    height: 40px;
    justify-content: right;
}

.cart{
    display: flex;
    flex-flow: row nowrap;
    justify-content: right;
    width: 30px ;
    position: absolute;
    top: 2px;
    right: 2px;
}   


.item-count {
    font-family: Arial, Helvetica, sans-serif;
    display: none;
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: rgba(0, 0, 0, 0.661);
    color: white;
    font-size: 12px;
    padding: 2px 6px;
    margin-top: 18px;
    margin-right: 16px;
    border-radius: 50%;
}

/* 

img{
    height: auto;
    max-height: 250px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
}
 */


/* FOOTER  */
.footer {
    font-size: 10px;
    color: #000;
    text-align: center;
    margin: 0;
    padding: 0;
    font-family: 'Fira', sans-serif;
}



.footer {
    font-size: 10px;
    color: #000;
    text-align: center;
    margin: 0;
    padding: 0;
    font-family: 'Fira', sans-serif;
    width: 100%;
}

.footer-cgv{
    font-size: 10px;
    color: #000;
    text-align: center;
    padding: 0px 0px;
    font-family: 'Fira', sans-serif;
    background-color: #ffffff;
    width: 100%;
    margin-bottom: 10px;
    text-decoration: none;
}

@media (max-width : 1249px){
    .footer{
        margin-bottom: 40px;
        /* margin-top: 20px; */
    }
}


html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: 20px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

@media (min-width : 1250px){
    .footer {
        margin-bottom: 20px;
        margin-top: 20px;
    }
}