/* Palette & variables */
:root {
    --black-deep: #050608;
    --black-soft: #0b0f15;
    --black-elevated: #151b24;

    --turquoise-main: #0bb1b0;
    --turquoise-light: #59e2d1;
    --turquoise-dark: #06737a;

    --gold-soft: #c9a86a;
    --gold-light: #eed8a4;

    --text-main: #f7f7fb;
    --text-muted: #b5bac8;

    --radius-card: 18px;
    --radius-pill: 999px;
    --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.75);

    --max-width: 1120px;
    --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    --transition-fast: 0.25s ease;
}

/* Reset léger */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background: radial-gradient(circle at top, #0b1520 0, #050608 40%, #000000 100%);
    color: var(--text-main);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* HEADER & NAV */

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: linear-gradient(
        to bottom,
        rgba(5, 6, 8, 0.92),
        rgba(5, 6, 8, 0.75),
        transparent
    );
    border-bottom: 1px solid rgba(11, 177, 176, 0.3);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0.7rem 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.brand-mark {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 106, 0.7);
    box-shadow: 0 0 16px rgba(11, 177, 176, 0.6);
    background: radial-gradient(circle, var(--turquoise-main), var(--black-soft));
}

.brand-text {
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.82rem;
    color: var(--gold-light);
}

.main-nav {
    display: flex;
    gap: 1.4rem;
    font-size: 0.9rem;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.11em;
    font-size: 0.78rem;
    position: relative;
    padding-bottom: 0.2rem;
    transition: color var(--transition-fast);
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(to right, var(--turquoise-main), var(--gold-soft));
    transition: width var(--transition-fast);
}

.main-nav a:hover {
    color: var(--turquoise-light);
}

.main-nav a:hover::after {
    width: 100%;
}

/* HERO */

.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3.5rem 1.5rem 4.5rem;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 0%, rgba(11, 177, 176, 0.28), transparent 55%),
        radial-gradient(circle at 90% 0%, rgba(6, 115, 122, 0.4), transparent 60%),
        radial-gradient(circle at 50% 120%, rgba(0, 0, 0, 0.9), transparent 60%),
        linear-gradient(135deg, #020309, #050608);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 12%;
    border-radius: 46% 54% 42% 58%;
    border: 1px solid rgba(201, 168, 106, 0.35);
    opacity: 0.45;
    filter: blur(1px);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at bottom, rgba(0, 0, 0, 0.9), transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 650px;
    text-align: center;
}

.hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.7rem;
    color: var(--turquoise-light);
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: clamp(2.8rem, 4.4vw, 3.4rem);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto 2rem;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Boutons */

.btn {
    display: inline-block;
    padding: 0.8rem 2.1rem;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-primary {
    background: linear-gradient(135deg, rgba(11, 177, 176, 0.18), rgba(201, 168, 106, 0.32));
    border-color: rgba(201, 168, 106, 0.7);
    color: var(--text-main);
    box-shadow: 0 0 24px rgba(11, 177, 176, 0.6);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 32px rgba(11, 177, 176, 0.9);
    background: linear-gradient(135deg, rgba(11, 177, 176, 0.35), rgba(201, 168, 106, 0.45));
}

.btn-ghost {
    border-color: rgba(11, 177, 176, 0.6);
    color: var(--turquoise-light);
    background: rgba(5, 8, 13, 0.8);
}

.btn-ghost:hover {
    background: rgba(11, 177, 176, 0.18);
    color: var(--text-main);
}

/* SECTIONS GLOBALES */

.section {
    padding: 4.5rem 1.5rem;
}

.section-alt {
    background: radial-gradient(circle at top, rgba(6, 115, 122, 0.35), transparent 65%);
}

.section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(5, 8, 13, 0.96), rgba(7, 11, 18, 0.96));
    border-radius: var(--radius-card);
    border: 1px solid rgba(11, 177, 176, 0.3);
    box-shadow: var(--shadow-soft);
    padding: 2.6rem 2.3rem;
}

.section h2 {
    font-size: 1.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--turquoise-light);
    margin-bottom: 1.6rem;
}

.section p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.98rem;
}

/* CARTES */

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.4rem;
    margin: 2rem 0 1.4rem;
}

.card {
    background: radial-gradient(circle at top left, rgba(11, 177, 176, 0.14), rgba(5, 6, 8, 0.96));
    border-radius: 16px;
    border: 1px solid rgba(6, 115, 122, 0.6);
    padding: 1.6rem 1.4rem;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.8);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.7rem;
    color: var(--turquoise-light);
}

.card p {
    font-size: 0.95rem;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.95);
    border-color: rgba(201, 168, 106, 0.8);
}

/* PILL ROW */

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 1.4rem 0 1.6rem;
}

.pill {
    border-radius: var(--radius-pill);
    border: 1px solid rgba(11, 177, 176, 0.6);
    padding: 0.35rem 0.9rem;
    font-size: 0.85rem;
    color: var(--turquoise-light);
    background: radial-gradient(circle at 0 0, rgba(11, 177, 176, 0.22), rgba(5, 6, 8, 0.95));
}

/* VALEURS */

.values-list {
    list-style: none;
    margin-top: 1rem;
}

.values-list li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.6rem;
    color: var(--text-muted);
    font-size: 0.96rem;
}

.values-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--turquoise-main), var(--gold-soft));
    box-shadow: 0 0 10px rgba(11, 177, 176, 0.8);
}

/* NOTE */

.note {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-style: italic;
}
/* COLLABORATIONS – Style turquoise & noir */

#collaborations .section-inner {
    background: linear-gradient(
        135deg,
        rgba(5, 8, 13, 0.96),
        rgba(7, 11, 18, 0.96)
    );
    border: 1px solid rgba(11, 177, 176, 0.35);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.75);
}

.collab-list {
    margin-top: 1.4rem;
    padding-left: 0;
    list-style: none;
}

.collab-list li {
    margin-bottom: 0.9rem;
}

.collab-list a {
    color: var(--turquoise-light);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    transition: 0.3s ease;
}

.collab-list a:hover {
    color: var(--gold-soft);
    text-shadow: 0 0 12px rgba(11, 177, 176, 0.5);
}

.collab-note {
    margin-top: 1.2rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

/* FORMULAIRE DE CONTACT */

.contact-form {
    margin-top: 1.8rem;
    display: grid;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

label {
    font-size: 0.9rem;
    color: var(--turquoise-light);
}

input,
textarea {
    background: var(--black-elevated);
    border-radius: 10px;
    border: 1px solid rgba(11, 177, 176, 0.45);
    padding: 0.7rem 0.85rem;
    color: var(--text-main);
    font: inherit;
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

input::placeholder,
textarea::placeholder {
    color: rgba(181, 186, 200, 0.6);
}

input:focus,
textarea:focus {
    border-color: var(--turquoise-light);
    box-shadow: 0 0 0 1px rgba(11, 177, 176, 0.55);
    background: #101723;
}

.contact-note {
    margin-top: 1.1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* FOOTER */

.site-footer {
    text-align: center;
    padding: 1.8rem 1rem 2.3rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    background: radial-gradient(circle at top, rgba(11, 177, 176, 0.18), transparent 65%);
    border-top: 1px solid rgba(11, 177, 176, 0.35);
}

/* RESPONSIVE */

@media (max-width: 880px) {
    .nav-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 0.8rem;
    }
}

@media (max-width: 700px) {
    .section-inner {
        padding: 2.1rem 1.5rem;
    }

    .hero {
        padding-top: 4.5rem;
    }

    .hero h1 {
        letter-spacing: 0.16em;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }
}
/* Monogramme Lady Zaphir */

.lz-monogram-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

.lz-monogram {
  max-width: 200px;      /* taille max sur ordi */
  width: 45vw;           /* taille adaptative sur mobile */
  height: auto;
  display: block;
  border-radius: 50%;    /* garde le monogramme dans un cercle */
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

/* Un peu plus grand sur écran large */
@media (min-width: 768px) {
  .lz-monogram {
    max-width: 230px;
  }
}
/* --- Galerie Lady Zaphir --- */

.lz-gallery-section {
  padding: 3rem 1.5rem;
  background: rgba(0, 55, 65, 0.35);
  backdrop-filter: blur(4px);
  border-radius: 12px;
  margin: 3rem auto;
  max-width: 1000px;
}

.lz-gallery-title {
  text-align: center;
  font-family: "Playfair Display", serif;
  color: #e8d7b9; /* or pâle */
  font-size: 2rem;
  margin-bottom: 2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lz-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.lz-gallery-item img {
  width: 100%;
  height: 100%;          /* 🔑 MANQUAIT ICI */
  object-fit: cover;
  display: block;
  border-radius: 0;      /* évite double arrondi */
}

.lz-gallery-item img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 28px rgba(0,0,0,0.45);
}

/* Sur écran large (ordinateur) */
@media (min-width: 800px) {
  .lz-gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }

/* --- Bouton turquoise luxueux (Lady Zaphir) --- */
.btn-turquoise {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-size: 1.15rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.05em;

  background: linear-gradient(135deg, #11c4d0, #6ef5ff);
  color: #012327; /* turquoise très foncé */
  box-shadow: 0 8px 20px rgba(0, 80, 90, 0.35);

  transition: all 0.3s ease;
}

/* Effet au survol */
.btn-turquoise:hover {
  transform: translateY(-3px) scale(1.04);
  background: linear-gradient(135deg, #6ef5ff, #a7faff);
  box-shadow: 0 12px 28px rgba(0, 80, 90, 0.45);
}
@media (hover: none){ .lz-overlay{ opacity: 0.35; } }
/* =========================
   CLIPS – LADY ZAPHIR
========================= */

#clips.section-zaphir {
  position: relative;
  padding: 4rem 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(6, 18, 22, 0.96),
    rgba(6, 40, 46, 0.92)
  );
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

#clips.section-zaphir::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 255, 220, 0.14), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(40, 170, 255, 0.12), transparent 45%);
  pointer-events: none;
}

/* Titres / sous-titre (Lady Zaphir) */
.section-zaphir-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-zaphir-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 2rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
  color: rgba(185, 255, 245, 0.95);
}

.section-zaphir-subtitle {
  text-align: center;
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 2rem;
  color: rgba(220, 255, 252, 0.8);
}

/* Liens clips (cartes-pills premium) */
#clips.section-zaphir .clips-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

#clips.section-zaphir .clip-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;

  padding: 0.85rem 1.4rem;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);

  color: rgba(235, 255, 252, 0.95);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.04em;

  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);

  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

#clips.section-zaphir .clip-link:hover {
  transform: translateY(-2px);
  background: linear-gradient(
    135deg,
    rgba(0, 255, 220, 0.18),
    rgba(40, 170, 255, 0.16)
  );
  border-color: rgba(185, 255, 245, 0.45);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.55);
}

#clips.section-zaphir .clip-link:active {
  transform: translateY(0);
}
