body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  background: #222;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  position: relative;
  overflow-x: hidden;
}

html {
  padding: 0;
  margin: 0;
}


@media print {
  @page {
    size: auto;
    margin: .5rem 0;
  }
  :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: transparent;
  }
  ::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: transparent;
  }
  :-ms-input-placeholder { /* Internet Explorer 10+ */
    color: transparent;
  }
  ::-webkit-input-placeholder { /* WebKit browsers */
    color: transparent;
  }
  
}

/* Fond de brouillard */
#fog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -2;
}

.fog-layer {
  position: absolute;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
  animation: moveFog 60s linear infinite;
  opacity: 0.3;
}

.fog-layer:nth-child(2) {
  animation-duration: 80s;
  animation-direction: reverse;
  opacity: 0.2;
}

.fog-layer:nth-child(3) {
  animation-duration: 100s;
  opacity: 0.1;
}

@keyframes moveFog {
  0% {
    transform: translate(-50%, -50%);
  }

  50% {
    transform: translate(50%, 50%);
  }

  100% {
    transform: translate(-50%, -50%);
  }
}

/* Brouillard généré au clic */
.fog-click {
  position: absolute;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
  border-radius: 50%;
  opacity: 0.5;
  pointer-events: none;
  animation: fadeOut 3s linear;
  z-index: -1;
}

@keyframes fadeOut {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  100% {
    transform: scale(3);
    opacity: 0;
  }
}

/* Header */
.navbar {
  background: linear-gradient(90deg, rgba(34, 34, 34, 1) 0%, rgba(0, 0, 0, 1) 100%);
  padding: 1rem 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.8rem;
  color: #ffc107;
  transition: color 0.3s;
}

.navbar-brand:hover {
  color: #fff;
}

.navbar-dark .navbar-nav .nav-link {
  font-size: 1.1rem;
  margin-right: 15px;
  color: #fff;
  transition: color 0.3s;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: #ffc107;
}

#Accueil{
  display: flex;
  flex-direction: row;
}
@media only screen and (max-width: 1000px) {
  #Accueil{
    display: flex;
    flex-direction: column;
  }
}

.img-poster {
  height: 40em;
}

/* Carousels */
.carousel-item img {
  object-fit: cover;
  height: 550px;
  border-radius: 10px;
}

@media only screen and (max-width: 1000px) {
  .carousel-item img {
    object-fit: cover;
    height: auto;
    border-radius: 10px;
  }
}

.carousel-caption {
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  padding: 20px;
}

/* Footer */
footer {
  color: #fff;
  padding: 40px 0;
}

footer a {
  color: #ffc107;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

footer a:hover {
  text-decoration: underline;
  color: #fff;
}

/* Cards */
.card {
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffc107;
}

.card-text {
  font-size: 1rem;
  color: #fff;
}

/* Buttons */
.btn-custom {
  background: #ffc107;
  color: #000;
  border: none;
  transition: background 0.3s, color 0.3s;
}

.btn-custom:hover {
  background: #e0a800;
  color: #fff;
}

/* Form Inputs */
.form-control {
  background: #333;
  color: #fff;
  border-style: none none solid;
  border-color: #555;
}

/* Section Titles */
h2 {
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 20px;
}


/* mode telephone pour (600px et moins)*/
