body {
    background: url('/uploads/1000030569.jpg') no-repeat center center fixed;
    background-size: cover;
}

.global-container {
    background-color: transparent;
}

main.container {
    background-color: rgba(255, 255, 255, 0.35);
    padding: 2rem;
    border-radius: 10px;
}

/* ✅ Navbar avec image en fond */
.navbar {
    background: url('/uploads/1000030709.jpg') no-repeat center center;
    background-size: cover;
    height: 200px;
    position: relative;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.014);
    z-index: 0;
}

.navbar .container {
    position: relative;
    z-index: 1;
}

.nav-link {
    font-family: 'Georgia', serif;
    font-size: 1.3rem;
    color: #4a3d36;
}

.prepare-link .full-text {
    display: none;
}

.prepare-link:hover .short-text {
    display: none;
}

.prepare-link:hover .full-text {
    display: inline;
}

/* Blur sur fond mobile menu ouvert */
.navbar-collapse.show {
    backdrop-filter: blur(8px);
    background-color: rgba(255, 255, 255, 0.6); /* pour compatibilité */
    border-radius: 10px;
    box-shadow: #333;
    padding: 1rem;
    transition: backdrop-filter 0.3s ease;
}

.navbar-collapse.show .nav-link {
    color: #333 !important;
}

footer {
    position: relative;
    overflow: hidden;
    font-size: 0.95rem;
    background-color: rgba(0, 0, 0, 0.8);
    border-top: 2px solid #fff;
}

.footer-chatons {
  position: absolute;
  inset: 0; 
  pointer-events: none;
  z-index: 2;
}


.chaton {
  position: absolute;
  width: 50px;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease-out;
  will-change: transform;
  pointer-events: none;
}

/* 🖥️ Sur desktop, navbar plus grande */
@media (min-width: 992px) {
    .navbar {
        height: 600px;
    }
}
