/* style.css */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Arial', sans-serif;
  color: white;
}

.overlay {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;

  /* Fond avec image + overlay noir pour lisibilité */
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('fond.png') no-repeat center center;
  background-size: cover;
}

.overlay h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

.overlay p {
  font-size: 1.5rem;
  margin: 10px 0;
}

.overlay a {
  color: #fff;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.3s, color 0.3s;
}

.overlay a:hover {
  border-bottom: 2px solid #fff;
  color: #ffd700;
}

.zc-widget-config {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .overlay h1 {
    font-size: 3rem;
  }

  .overlay p {
    font-size: 1.2rem;
  }
}
