:root {
  --dark: #2F1E42;
  --light: #F4F4F4;
  --accent: #6A4F82;
  --accent-soft: #B8ABCB;
  --text-dark: #2F1E42;
  --text-light: #F4F4F4;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--light);
  line-height: 1.7;
}

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  background: #F4F4F4;
  position: sticky;
  top: 0;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 50px;        /* ajuste selon ton logo */
  width: auto;
  display: block;
}

.logo img {
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.logo:hover img {
  transform: scale(1.05);
  opacity: 0.9;
}

.nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  font-weight: 500;
  color: inherit;
}

/* Buttons */
.btn-dark {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border: 2px solid #2F1E42;
  font-weight: 600;
  text-decoration: none;
  color : #2F1E42;
  background: transparent;  
}

.btn-light {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border: 2px solid #F4F4F4;
  font-weight: 600;
  text-decoration: none;
  color : #F4F4F4;
  background: transparent;  
}


/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 4rem 3rem;
  align-items: center;
}

.hero-image img {
  width: 100%;
  border-radius: 1.5rem;
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
}

.hero-photo {
  width: 500px;
  height: 500px;
  max-width: 40vw;       /* max 40% de la largeur de l’écran */
  max-height: 40vw;
  object-fit: cover;
  border-radius: 0.5rem;
}


/* Bands */
.band {
  padding: 5rem 3rem;
}

.band-dark {
  background: var(--dark);
  color: var(--text-light);
}

.band-light {
  background: var(--light);
}

.band-content {
  max-width: 800px;
  margin: auto;
}

.band h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

/* Wave */
.wave {
  line-height: 0;
  overflow: hidden;
}

.wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

.wave.flip svg {
  transform: rotate(180deg);
}




/* Contact */
.contact {
  padding: 5rem 3rem;
  background: #B8ABCB;
  text-align: center;
}

.contact h2 {
  font-size: 2.2rem;
}

/* Footer */
.site-footer {
  padding: 2rem;
  text-align: center;
  font-size: 0.9rem;
  background-color:#B8ABCB;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
}


/* Responsive */
/* Sur petits écrans, on cache le menu */
@media (max-width: 768px) {
  .nav {
    display: none; /* le menu disparaît */
  }
}


