/* Reset basique */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Comic Neue', sans-serif;
}

/* ===== Body ===== */
body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url('jacquot-cscsc.jpg') no-repeat center center;
  background-size: cover;
  background-color: #000;
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 0;
}

/* Overlay */
body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
  z-index: 1;
}

/* Conteneur */
.container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

/* Titre */
h1 {
  font-size: 3rem;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}

/* Bouton */
.btn {
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  color: #fff;
  background-color: #ff7f50;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.5);
  font-weight: bold;
}

.btn:hover {
  background-color: #ff6347;
  transform: scale(1.05);
}

/* Dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  min-width: 250px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  border-radius: 8px;
  z-index: 3;
  font-family: "Comic Neue", sans-serif;
  flex-direction: column;
}

.dropdown-content a {
  color: #333;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-weight: bold;
}

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

/* Signature */
.signature {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #eee;
  font-weight: bold;
  font-size: 0.9rem;
  padding: 5px 15px;
  border-radius: 12px;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 5;
  opacity: 0;
  animation: fadeIn 2s forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
  body {
    background-size: contain;
    background-position: center center;
  }

  h1 {
    font-size: 2rem;
  }

  .btn {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }

  .dropdown-content {
    min-width: 200px;
  }
}
