/* ---------------- RESET SIMPLE ---------------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ---------------- VARIABLES ---------------- */

:root {
  --font-title: 'Playfair Display', serif;
  --font-text: 'Inter', sans-serif;

  --pink: #ff2f92;
  --orange: #ff6a00;
  --blue: #2b50ff;
  --yellow: #ffe600;
  --black: #0e0e0e;
  --white: #ffffff;
}

/* ---------------- GLOBAL ---------------- */

body {
  font-family: var(--font-text);
  background: var(--white);
  color: var(--black);
  line-height: 1.4;
}

/* ---------------- HERO ---------------- */

.hero {
  min-height: 100vh;
  background: var(--yellow);
  padding: 6rem 4rem;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.95;
  margin-bottom: 2rem;
}

.hero .slogan {
  font-size: 1.4rem;
  max-width: 600px;
}

/* ---------------- SECTIONS ---------------- */

.section {
  min-height: 100vh;
  padding: 6rem 4rem;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section h2 {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1;
  margin-bottom: 2rem;
}

.section p {
  font-size: 1.2rem;
  max-width: 520px;
}

/* ---------------- COULEURS PAR SECTION ---------------- */

.section-a {
  background: var(--pink);
  color: var(--white);
}

.section-b {
  background: var(--blue);
  color: var(--white);
}

.section-c {
  background: var(--orange);
  color: var(--black);
}

/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 768px) {
  .hero,
  .section {
    padding: 4rem 2rem;
  }

  .section p {
    font-size: 1.1rem;
  }
}


/* ---------------- LOGO FLOTTANT ---------------- */

.floating-logo {
  position: absolute;
  top: 80%;
  right: 40px; /* dépasse légèrement */
  transform: translateY(-50%);
  z-index: 10;

  width: 140px;
  height: 140px;

  background: #002fa7; /* bleu klein */
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.floating-logo img {
  width: 70%;
  height: auto;
}

/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 768px) {
  .floating-logo {
    width: 90px;
    height: 90px;
    right: 30px;
    top: 530px;
  }
}
