/* ============================================================
   NOTANOVA – Feuille de style principale
   Palette : Bleu marine #1B2E5E | Doré #C9A84C | Blanc #FFFFFF
   ============================================================ */

/* === VARIABLES === */
:root {
  --bleu-marine:  #0B1638;
  --bleu-clair:   #122050;
  --dore:         #C9A84C;
  --dore-hover:   #b8943d;
  --blanc:        #FFFFFF;
  --gris-fin:     #F5F4F1;
  --gris-texte:   #6b6b6b;

  --font-titre:   'Cormorant Garamond', Georgia, serif;
  --font-corps:   'Montserrat', sans-serif;
}

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

html, body {
  height: 100%;
}

body {
  font-family: var(--font-corps);
  background-color: var(--blanc);
  color: var(--bleu-marine);
  -webkit-font-smoothing: antialiased;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bleu-marine);
  padding: 4rem 2rem 3rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

/* --- Logo avec animation --- */
.hero-logo {
  width: clamp(220px, 40vw, 480px);
  height: auto;

  /* Passe le logo en blanc */
  filter: brightness(0) invert(1);

  /* Animation d'apparition */
  animation: logoAppear 1.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes logoAppear {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* --- Séparateur doré --- */
.hero-separateur {
  width: 60px;
  height: 1.5px;
  background-color: var(--dore);
  animation: fadeIn 1.8s ease both;
}

/* --- Tagline --- */
.hero-tagline {
  font-family: var(--font-titre);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  font-weight: 400;
  color: var(--blanc);
  letter-spacing: 0.04em;
  animation: fadeIn 2s ease both;
}

/* --- Bouton CTA --- */
.btn-rdv {
  display: inline-block;
  padding: 0.85rem 2.4rem;
  background-color: var(--dore);
  color: var(--blanc);
  text-decoration: none;
  font-family: var(--font-corps);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background-color 0.25s ease, transform 0.2s ease;
  animation: fadeIn 2.2s ease both;
}

.btn-rdv:hover {
  background-color: var(--dore-hover);
  transform: translateY(-2px);
}

/* --- Adresses --- */
.hero-adresses {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  margin-top: 1rem;
  animation: fadeIn 2.4s ease both;
}

.adresse {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.adresse-ville {
  font-family: var(--font-corps);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dore);
}

.adresse p {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.adresse-divider {
  width: 1px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.2);
  align-self: center;
}

/* === ANIMATION UTILITAIRE === */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: var(--bleu-marine);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  transition: transform 0.3s ease;
}

.navbar--hidden {
  transform: translateY(-100%);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar-logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}

.navbar-links {
  display: flex;
  gap: 1.8rem;
  flex: 1;
  justify-content: center;
}

.navbar-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-family: var(--font-corps);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--dore);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.navbar-tel {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 400;
  transition: color 0.2s;
}

.navbar-tel:hover { color: var(--blanc); }

.btn-espace-client {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--dore);
  color: var(--blanc);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 0.2s, color 0.2s;
}

.btn-espace-client:hover {
  background-color: var(--dore);
}

.navbar-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.navbar-burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background-color: var(--blanc);
}

.navbar--minimal {
  background-color: transparent;
  border-bottom: none;
}

.navbar--minimal .navbar-inner {
  justify-content: space-between;
}

.navbar--minimal .navbar-links {
  justify-content: flex-start;
  flex: none;
}

/* ============================================================
   EN-TÊTE DE PAGE (page intérieure)
   ============================================================ */

.page-hero {
  background-color: var(--bleu-marine);
  padding: calc(5rem + 70px) 2rem 4rem;
  text-align: center;
}

.page-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.page-hero-surtitre {
  font-family: var(--font-corps);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--dore);
}

.page-hero-titre {
  font-family: var(--font-titre);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--blanc);
  line-height: 1.1;
}

/* ============================================================
   SECTION TARIFS
   ============================================================ */

.tarifs-section {
  padding: 5rem 2rem;
  background-color: var(--blanc);
}

.tarifs-section--alt {
  background-color: var(--gris-fin);
}

.tarifs-container {
  max-width: 820px;
  margin: 0 auto;
}

.tarifs-titre {
  font-family: var(--font-titre);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--bleu-marine);
  margin-bottom: 2.5rem;
}

.tarifs-titre span {
  font-size: 0.85em;
  font-weight: 300;
  color: var(--gris-texte);
}

/* ============================================================
   ACCORDION
   ============================================================ */

.accordion {
  border-bottom: 1px solid #e4e0d8;
}

.accordion:first-of-type {
  border-top: 1px solid #e4e0d8;
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}

.accordion-header span {
  font-family: var(--font-corps);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--bleu-marine);
  text-transform: uppercase;
}

.accordion-icon {
  width: 18px;
  height: 18px;
  color: var(--dore);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.accordion.open .accordion-icon {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion.open .accordion-body {
  max-height: 2000px;
}

.tarifs-liste {
  list-style: none;
  padding: 0 0 1.5rem 0;
}

.tarifs-liste li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding: 0.65rem 0;
  font-size: 0.87rem;
  font-weight: 300;
  color: #444;
  line-height: 1.5;
  border-bottom: 1px solid #f0ece6;
}

.tarifs-liste li:last-child {
  border-bottom: none;
}

.tarifs-liste li strong {
  font-weight: 600;
  color: var(--bleu-marine);
  text-align: right;
  flex-shrink: 0;
}

.tarifs-liste--liens li {
  display: block;
  padding: 0.65rem 0;
}

.tarifs-liste--liens a {
  color: var(--bleu-marine);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.6;
  transition: color 0.2s;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tarifs-liste--liens a:hover {
  color: var(--dore);
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background-color: var(--bleu-marine);
  color: var(--blanc);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
}

.footer-logo-bloc {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  min-width: 220px;
}

.footer-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-adresse {
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
}

.footer-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
  transition: border-color 0.2s, color 0.2s;
}

.footer-linkedin svg {
  width: 16px;
  height: 16px;
}

.footer-linkedin:hover {
  border-color: var(--dore);
  color: var(--dore);
}

.footer-liens {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-width: 150px;
}

.footer-col h6 {
  font-family: var(--font-corps);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blanc);
  margin-bottom: 0.4rem;
}

.footer-col a {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.4;
}

.footer-col a:hover {
  color: var(--dore);
}

.footer-bas {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 1.2rem 2rem;
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   PAGE ÉQUIPE
   ============================================================ */

.equipe-section {
  padding: 5rem 2rem 6rem;
  background-color: var(--blanc);
}

.equipe-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem 2rem;
}

.membre {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
}

.membre-photo {
  width: 150px;
  height: 150px;
  object-fit: cover;
  flex-shrink: 0;
}

.membre-photo--placeholder {
  background-color: #e8e4dc;
  display: block;
}

.membre-nom {
  font-family: var(--font-titre);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--bleu-marine);
  margin-top: 0.4rem;
}

.membre-role {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--gris-texte);
  letter-spacing: 0.06em;
  line-height: 1.5;
}

.membre-icones {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  margin-top: 0.2rem;
}

.membre-linkedin {
  color: var(--dore);
  transition: opacity 0.2s;
}

.membre-linkedin:hover {
  opacity: 0.7;
}

.membre-linkedin svg {
  width: 18px;
  height: 18px;
}

/* ============================================================
   FOOTER SIMPLE
   ============================================================ */

.footer-simple {
  background-color: var(--bleu-marine);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  padding: 1.5rem 2rem;
}

.footer-simple-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-simple-inner span {
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
}

.footer-simple-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-left: auto;
}

.footer-simple-links a {
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-simple-links a:hover {
  color: var(--dore);
}

.footer-linkedin {
  color: rgba(255,255,255,0.25);
  transition: color 0.2s;
  line-height: 0;
}

.footer-linkedin:hover {
  color: rgba(255,255,255,0.6);
}

.footer-linkedin svg {
  width: 15px;
  height: 15px;
}

@media (max-width: 540px) {
  .footer-simple {
    padding: 2rem 1.5rem;
  }

  .footer-simple-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.2rem;
  }

  .footer-simple-links {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
}

/* ============================================================
   PAGES LÉGALES
   ============================================================ */

.legal-section {
  padding: 4rem 2rem 5rem;
  background-color: var(--blanc);
}

.legal-container {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.legal-date {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--gris-texte);
  letter-spacing: 0.06em;
}

.legal-container h2 {
  font-family: var(--font-titre);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--bleu-marine);
  border-bottom: 1px solid #e8e4dc;
  padding-bottom: 0.4rem;
  margin-bottom: -0.8rem;
}

.legal-container p,
.legal-container li {
  font-size: 0.875rem;
  font-weight: 300;
  color: #444;
  line-height: 1.8;
}

.legal-container ul {
  padding-left: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.legal-container a {
  color: var(--bleu-marine);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.legal-container a:hover {
  color: var(--dore);
}

/* ============================================================
   CARTE DE VISITE NUMÉRIQUE
   ============================================================ */

.carte-page {
  min-height: 100vh;
  background-color: var(--bleu-marine);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.carte-hero {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3.5rem 2rem 2rem;
  gap: 0.6rem;
  text-align: center;
}

.carte-photo {
  width: 140px;
  height: 140px;
  object-fit: cover;
  margin-bottom: 0.8rem;
}

.carte-nom {
  font-family: var(--font-titre);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--blanc);
  line-height: 1.1;
}

.carte-titre {
  font-family: var(--font-corps);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dore);
}

.carte-icones {
  display: flex;
  gap: 1.2rem;
  margin-top: 1.4rem;
}

.carte-icone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
}

.carte-icone-cercle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dore);
  transition: background-color 0.2s, border-color 0.2s;
}

.carte-icone:hover .carte-icone-cercle {
  background-color: var(--dore);
  color: var(--blanc);
  border-color: var(--dore);
}

.carte-icone-cercle svg {
  width: 20px;
  height: 20px;
}

.carte-icone span {
  font-size: 0.62rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn-ajouter-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.8rem;
  padding: 0.9rem 2.2rem;
  background-color: var(--dore);
  color: var(--blanc);
  font-family: var(--font-corps);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
}

.btn-ajouter-contact:hover {
  background-color: var(--dore-hover);
  transform: translateY(-1px);
}

.btn-ajouter-contact svg {
  width: 16px;
  height: 16px;
}

.carte-details {
  width: 100%;
  max-width: 480px;
  background-color: var(--gris-fin);
  margin-top: 2.5rem;
  flex: 1;
}

@media (min-width: 600px) {
  .carte-page {
    justify-content: center;
    padding: 3rem 0;
  }
  .carte-details {
    flex: none;
    margin-bottom: 3rem;
  }
}

.carte-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.8rem;
  border-bottom: 1px solid #e8e4dc;
  text-decoration: none;
}

.carte-detail-item:last-child {
  border-bottom: none;
}

.carte-detail-icone {
  color: var(--dore);
  flex-shrink: 0;
  margin-top: 2px;
}

.carte-detail-icone svg {
  width: 18px;
  height: 18px;
}

.carte-detail-texte {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.carte-detail-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gris-texte);
}

.carte-detail-valeur {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--bleu-marine);
  line-height: 1.5;
}

/* Lien carte dans la page équipe */
.membre-carte-lien {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--gris-texte);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.membre-carte-lien:hover {
  opacity: 1;
}

/* === RESPONSIVE (mobile) === */
@media (max-width: 540px) {
  .hero {
    padding-top: 4rem;
  }

  .hero-logo {
    width: 75vw;
  }

  .hero-adresses {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .adresse-divider {
    width: 40px;
    height: 1px;
  }

  .equipe-section {
    padding: 3rem 1.2rem 4rem;
  }

  .equipe-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1rem;
  }

  .membre-photo {
    width: 110px;
    height: 110px;
  }

  .membre-nom {
    font-size: 0.95rem;
  }
}
