@font-face {
  font-family: 'TAModernTimes';
  src: url('../fonts/TA-ModernTimes.otf') format('opentype');
}
@font-face {
  font-family: 'Watch';
  src: url('../fonts/Watch-Quinn.ttf') format('opentype');
}

body {
  margin: 0;
  padding: 0;
  font-family: 'TAModernTimes', serif;
  background-color: #fff;
  color: #111;
}

.bg-video-wrapper {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: #000000db;
}

.bg-video {
  position: absolute;
  top: 50%; left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  opacity: 0.25;
  object-fit: cover;
}

.site-main {
  position: relative;
  z-index: 1;
  padding-top: 120px;
  padding-bottom: 80px;
}

.hero {
  text-align: center;
  margin-bottom: 60px;
  padding-top: 100px;
}

.hero h1 {
  font-size: 64px;
  margin-bottom: 10px;
  color: #fff;
  font-family: 'Watch', sans-serif;
}

.hero p {
  font-size: 26px;
  color: #fff;
  font-family: 'Watch', sans-serif;
}

/* === CTA Section === */
.cta-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cta-block {
  flex: 1 1 48%;
  background: #0000006e;
  color: #fff;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 0 30px rgba(0,0,0,0.3);
  transition: transform 0.4s ease;
  text-align: center;
}

.cta-block:hover {
  transform: translateY(-5px);
  background: #000;
  box-shadow: 0 0 10px #fff, 0 0 20px #000;
}

.cta-block img {
  width: 280px;
  height: auto;
  border-radius: 12px;
  object-fit: contain;
  margin-top: 10px;
}

.cta-block-content h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.cta-block-content h3 {
  font-size: 20px;
  margin: 12px 0;
}

.cta-block-content p {
  font-size: 16px;
  margin-bottom: 16px;
}

.cta-btn {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: #000;
  color: white;
  box-shadow: 0 0 10px #fff, 0 0 20px #000;
}

.avis-slider {
  text-align: center;
  margin: 60px auto;
  max-width: 900px;
}
.avis-slide {
  display: none;
  padding: 20px;
  background: #ffffff0c;
  border: 1px solid #fff;
  border-radius: 12px;
  margin-bottom: 10px;
  color: #fff;
}
.avis-slide.active {
  display: block;
}
.avis-stars {
  font-size: 24px;
  margin-bottom: 10px;
}
.btn-avis {
  background: #fff;
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}
.btn-avis:hover {
  background: #000;
  color: #fff;
  box-shadow: 0 0 10px #fff;
}
.popup {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: #000;
  color: #fff;
  padding: 30px;
  border-radius: 12px;
  z-index: 9999;
  display: none;
  box-shadow: 0 0 20px #fff;
}
.popup.show {
  display: block;
}
.popup input, .popup textarea, .popup select {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border-radius: 6px;
  border: none;
  color: black;
}
.popup button {
  background: #fff;
  color: #000;
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}
.popup .close-btn {
  position: absolute;
  top: 10px; right: 10px;
  cursor: pointer;
  font-size: 20px;
}


@media (max-width: 1024px) {
  .hero h1 { font-size: 36px; margin-bottom: 40px; }
  .hero p { font-size: 18px; }

  .cta-section {
    flex-direction: column;
    gap: 30px;
  }

  .cta-block {
    padding: 20px;
  }

  .cta-block img {
    max-width: 80%;
  }
}
