/*
Theme Name: Swimming Poule — Coming Soon
Theme URI: https://swimmingpoule.be
Author: Vaya Agency
Author URI: https://vaya.agency
Description: Page d'attente premium pour Swimming Poule — Piscines naturelles 100% sur mesure.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: swimming-poule
*/

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --deep:       #050e14;
  --dark:       #0a1e2b;
  --mid:        #0d2d3f;
  --water:      #0b6e87;
  --teal:       #12a89e;
  --aqua:       #3dd6c8;
  --foam:       #a8f0ea;
  --orange:     #F97316;
  --white:      #f0fafa;
  --white-dim:  rgba(240, 250, 250, 0.65);
  --white-faint:rgba(240, 250, 250, 0.25);

  --font-head:  'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body:  'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-accent:'Montserrat', 'Helvetica Neue', Arial, sans-serif;
}

html, body {
  height: 100%;
  overflow: hidden; /* strict 100vh, zéro scroll */
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--deep);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* =============================================
   VIDÉO DE FOND
   ============================================= */
.video-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--deep); /* fallback si vidéo pas encore chargée */
}

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

/* =============================================
   OVERLAY 85%
   ============================================= */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  background:
    /* Vignette bas pour lisibilité du texte */
    radial-gradient(ellipse 90% 50% at 50% 100%, rgba(5,14,20,0.6) 0%, transparent 70%),
    /* Vignette haut */
    radial-gradient(ellipse 80% 30% at 50% 0%, rgba(5,14,20,0.5) 0%, transparent 60%),
    /* Fond uniforme 85% */
    rgba(5, 14, 20, 0.85);
}

/* =============================================
   LAYOUT PRINCIPAL — 100VH strict
   ============================================= */
.site-wrapper {
  position: relative;
  z-index: 2;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1.2rem, 3vh, 2.2rem) 1.5rem;
  overflow: hidden;
}

/* =============================================
   HEADER / LOGO CLIENT
   ============================================= */
.site-header {
  text-align: center;
  flex-shrink: 0;
}

.client-logo {
  display: inline-block;
}

.client-logo-img {
  width: clamp(64px, 8vw, 88px);
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 24px rgba(61, 214, 200, 0.15));
  transition: filter 0.4s ease, transform 0.4s ease;
}

.client-logo-img:hover {
  filter: drop-shadow(0 6px 32px rgba(61, 214, 200, 0.3));
  transform: translateY(-2px);
}

/* =============================================
   MAIN CONTENT
   ============================================= */
.main-content {
  text-align: center;
  max-width: 720px;
  width: 100%;
  flex-shrink: 0;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-accent);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--aqua);
  border: 1px solid rgba(61, 214, 200, 0.3);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  margin-bottom: clamp(1rem, 2vh, 1.8rem);
  background: rgba(61, 214, 200, 0.05);
  backdrop-filter: blur(4px);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

/* Titre principal */
.main-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4.5vw, 4.4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--white);
  text-align: center;
  margin-bottom: clamp(0.8rem, 1.5vh, 1.4rem);
}

/* Mots en italique serif */
.main-title em {
  font-style: italic;
  color: #7ec8f0;
}

/* Séparateur */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: clamp(0.6rem, 1.2vh, 1.2rem) auto;
}

.divider-line {
  height: 1px;
  width: 60px;
  background: linear-gradient(90deg, transparent, rgba(61,214,200,0.4), transparent);
}

.divider-icon {
  width: 22px;
  height: 22px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.5;
  opacity: 0.7;
}

/* Sous-titre / tagline */
.tagline {
  font-family: var(--font-accent);
  font-size: clamp(0.72rem, 1.5vw, 0.88rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(168, 240, 234, 0.7);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vh, 2rem);
}

/* =============================================
   FORMULAIRE EMAIL
   ============================================= */
.notify-form {
  display: flex;
  gap: 0;
  max-width: 460px;
  margin: 0 auto clamp(0.5rem, 1vh, 1rem);
  border: 1px solid rgba(61, 214, 200, 0.2);
  border-radius: 4px;
  overflow: hidden;
  background: rgba(10, 30, 43, 0.6);
  backdrop-filter: blur(12px);
  transition: border-color 0.3s ease;
}

.notify-form:focus-within {
  border-color: rgba(61, 214, 200, 0.5);
}

.notify-form input[type="email"] {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 0.95rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--white);
  letter-spacing: 0.02em;
}

.notify-form input[type="email"]::placeholder {
  color: rgba(168, 240, 234, 0.35);
}

.notify-form button {
  padding: 0.95rem 1.6rem;
  background: linear-gradient(135deg, var(--teal), var(--water));
  border: none;
  cursor: pointer;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  transition: opacity 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.notify-form button:hover {
  opacity: 0.88;
  transform: scale(1.02);
}

.form-note {
  font-size: 0.72rem;
  color: rgba(168, 240, 234, 0.35);
  letter-spacing: 0.05em;
}

/* =============================================
   CONTACT & FOOTER
   ============================================= */
.contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: rgba(168, 240, 234, 0.55);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.25s ease;
}

.contact-item svg {
  width: 15px;
  height: 15px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
}

.contact-item:hover {
  color: var(--aqua);
}

.contact-separator {
  width: 1px;
  height: 16px;
  background: rgba(61, 214, 200, 0.15);
}

.site-footer {
  text-align: center;
  flex-shrink: 0;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(168, 240, 234, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.site-footer a {
  color: rgba(168, 240, 234, 0.3);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--aqua);
}

.footer-vaya-logo {
  display: inline-block;
  opacity: 0.35;
  transition: opacity 0.3s ease;
}

.footer-vaya-logo:hover {
  opacity: 0.7;
}

.footer-vaya-logo img {
  display: block;
  height: 14px;
  width: auto;
}

/* =============================================
   ANIMATIONS D'ENTRÉE
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.fade-up:nth-child(1) { animation-delay: 0.2s; }
.fade-up:nth-child(2) { animation-delay: 0.35s; }
.fade-up:nth-child(3) { animation-delay: 0.5s; }
.fade-up:nth-child(4) { animation-delay: 0.65s; }
.fade-up:nth-child(5) { animation-delay: 0.8s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 600px) {
  .notify-form {
    flex-direction: column;
    border-radius: 6px;
  }
  .notify-form input[type="email"],
  .notify-form button {
    width: 100%;
    border-radius: 0;
  }
  .contact-row {
    flex-direction: column;
    gap: 1rem;
  }
  .contact-separator { display: none; }
}
