/* =========================
   RESET / BASE
========================= */

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

@import url('outfit.css');

html {
  font-size: 16px;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Helvetica, Arial, sans-serif;
  color: #E76C5A;
  background-color: #F8EEDC;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}


/* =========================
   LAYOUT HELPERS
========================= */

.header-inner,
.hero-inner,
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}


/* =========================
   HEADER
========================= */

.site-header {
  background-color: #FDD7D4;
  padding: 2rem 0;
}

.logo img {
  height: 70px;
  margin: 0 auto;
}


/* =========================
   MAIN / HERO
========================= */

.site-main {
  flex: 1;
}

.hero {
  min-height: calc(100vh - 220px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: Outfit-Black;
}

.hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  color: #E76C5A;
}

.language-buttons {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}


/* =========================
   BUTTONS
========================= */

.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 1.2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-family: Outfit-Black;
    border: 1px solid #E76C5A;
}

.btn-language {
  background-color: #E76C5A;
  color: #fff;
}

.btn-language:hover {
  /*transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);*/
   background-color: #FDD7D4; 
    border: 1px solid #E76C5A;
    color: #E76C5A;
    transition: 0.5s;
}


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

.site-footer {
  background-color: #FDD7D4;
  position: relative;
  padding-top: 6rem;
}

/* Trame décorative */
.footer-pattern {
  position: absolute;
  top: -120px;
  left: 0;
  width: 100%;
  height: 250px;
  background-image: url("images/TRAME-FOOTER2.png");
  background-repeat: repeat-x;
  background-position: center;
  z-index: 1;
}

/* Contenu footer */
.footer-inner {
  text-align: center;
  padding-bottom: 3rem;
}

.footer-brand img {
    position: relative;
  height: 45px;
  margin: 0 auto 1.5rem;
  z-index: 20;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.social-link img {
  width: 28px;
  height: 28px;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.social-link:hover img {
  opacity: 1;
  transform: scale(1.05);
}

.footer-tagline {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: #E76C5A;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 600px) {

  .hero {
    padding: 3rem 0;
    height: 700px;
  }

  .hero-title {
    letter-spacing: 0.02em;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

}
