@font-face {
  font-family: "Rinter";
  src: url("Fonts/Rinter.woff2") format("woff2"),
       url("Fonts/Rinter.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

::selection {
  background-color: #FBFBFB;
  color: #0000ff;
}

* {
    box-sizing: border-box;
}

body{
    background-color: #FBFBFB;
    margin: 0;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;  
}

.logo-header {
    width: 200px;
}

.logo-icon{
    display: none;
}

.qualite p{
    font-family: Rinter;
    font-size: 18px;
    color: #0000ff;
    border: 2px solid #0000ff;
    border-radius: 60px;
    padding: 8px;
    margin: 0;
}

nav ul {
    padding: 0.5rem 1.5rem; /* espace intérieur */
    background-color: rgba(223, 223, 223, 0.5);
    border-radius: 100px;
    backdrop-filter: blur(8px);

    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;

    width: fit-content; /* IMPORTANT */
}

nav ul li a {
    color: #0000ff;
    font-family: Rinter;
    text-decoration: none;
    border-radius: 100px;
    padding: 8px 24px;
    transition: 0.3s;
}

nav ul li a:hover {
    border: 2px solid #0000ff;
}

nav ul li a.active {
    background-color: #0000ff;
    color: white;
}

main{
    padding: 0 120px;
}

h1{
   font-family: Rinter;
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: blue;
}

h4{
    font-family: Rinter;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: blue;
    margin: 0;
}

.title{
    display: flex;
    align-items: center;
    align-self: stretch;
    margin-top: 100px;
    margin-bottom: 100px;
}

.gallery {
    display: flex;
    gap: 24px;
    margin: 24px;
    max-width: 1200px;
    align-items: start;
    opacity: 0;
    transform: translateX(-120px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
}

.gallery.visible {
    opacity: 1;
    transform: translateX(0);
}

.gallery img {
    width: 300px;
    height: auto;
    border-radius: 8px;
}

.books{
    margin-top: 80px;
}

.posters{
    margin-top: 80px;
}

.albums{
    margin-top: 80px;
}

footer{
    margin-top: 80px;
    max-width: auto;
    width: 100%;
    background-color: #0000ff;
}

.footer-box{
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-logo{
  width: 300px;
  height: auto;
}

.col-2{ 
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: white;
    order: 1;
}

.col-3{
    order: 2;
}

h6{
    font-family: Rinter;
    font-size: 24px;
    color: white;
    margin-top: 0;
    margin-bottom: 8px;
}

.contacts{
    list-style: none;
    display: block;
    padding: 0;
}

footer ul li a{
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 14px;
}