/* ============================================================
   Made by : BoostMySocialBE
   BOOSTMYSOCIALBE - style.css
   Palette : #0f3230 (fond), #98b8b5 (accent), #F4F1EC (texte clair)
   Typos : Playfair Display (titres), Poppins (textes)
   ============================================================ */

/* -----------------------------------------
   RESET & VARIABLES
----------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-bg: #0f3230;
  --color-accent: #98b8b5;
  --color-light: #F4F1EC;
  --font-title: 'Playfair Display', serif;
  --font-text: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg);
  color: var(--color-light);
  font-family: var(--font-text);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
}

/* -----------------------------------------
   PAGE / LAYOUT GENERAL
----------------------------------------- */
.page {
  width: 100%;
  max-width: 640px;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}

/* -----------------------------------------
   LOGO
----------------------------------------- */
.logo {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  animation: fadeInDown 0.8s ease both;
}

/* -----------------------------------------
   HERO (TITRE / SOUS-TITRE)
----------------------------------------- */
.hero {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(32px, 6vw, 52px);
  line-height: 1.2;
  color: var(--color-light);
  letter-spacing: 0.5px;
}

.hero-subtitle {
  font-family: var(--font-text);
  font-weight: 300;
  font-size: clamp(15px, 2.4vw, 18px);
  line-height: 1.7;
  color: var(--color-accent);
  max-width: 460px;
  margin: 0 auto;
}

/* -----------------------------------------
   SUIVEZ-NOUS (FACEBOOK)
----------------------------------------- */
.follow {
  animation: fadeInUp 0.8s ease 0.3s both;
}

.follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  background-color: var(--color-accent);
  color: var(--color-bg);
  font-family: var(--font-text);
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.follow-btn svg {
  width: 20px;
  height: 20px;
  fill: var(--color-bg);
}

.follow-btn:hover,
.follow-btn:focus-visible {
  background-color: var(--color-light);
  transform: scale(1.05);
}

.follow-btn:focus-visible {
  outline: 2px solid var(--color-light);
  outline-offset: 3px;
}

/* -----------------------------------------
   CONTACT
----------------------------------------- */
.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.contact-title {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: clamp(20px, 3vw, 26px);
  color: var(--color-light);
  position: relative;
  padding-bottom: 14px;
}

.contact-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 2px;
  background-color: var(--color-accent);
}

.contact-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: rgba(244, 241, 236, 0.06);
  border: 1px solid rgba(152, 184, 181, 0.4);
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.contact-btn svg {
  width: 24px;
  height: 24px;
  fill: var(--color-light);
  transition: fill 0.25s ease;
}

.contact-btn:hover,
.contact-btn:focus-visible {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  transform: scale(1.1);
}

.contact-btn:hover svg,
.contact-btn:focus-visible svg {
  fill: var(--color-bg);
}

.contact-btn:focus-visible {
  outline: 2px solid var(--color-light);
  outline-offset: 3px;
}

/* -----------------------------------------
   ANIMATIONS
----------------------------------------- */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -----------------------------------------
   RESPONSIVE
----------------------------------------- */
@media (max-width: 480px) {
  .page {
    padding: 36px 20px;
    gap: 32px;
  }

  .logo {
    width: 136px;
    height: 136px;
  }

  .contact-btn {
    width: 50px;
    height: 50px;
  }

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