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

/* ------------------- BASE ------------------- */

@font-face {
  font-family: 'GasthonySignature';
  src: url('../font/GasthonySignature-L3Pnn.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #111;
  background: #fdfdfd;
  line-height: 1.6;
  font-size: 16px;
}

.container {
  width: 90%;
  max-width: 800px;
  margin: auto;
  padding: 40px 0;
}

h1, h2, h3 {
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  line-height: 1.3;
}

h1 {
  font-size: 1.6rem;
  color: #111;
  margin-bottom: 30px;
  text-align: center;
}

h2 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 20px;
}

h3 {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 10px;
}

p {
  font-size: 0.85rem;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #999;
}

strong {
  font-weight: 700;
  color: #111;
}

/* ----------------- HEADER ----------------- */
header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: #fff;
  padding: 10px 0;
}

.social-icons {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 10px;
}

.social-icons a img {
  width: 12px;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.social-icons a img:hover {
  opacity: 1;
}

.logo-menu-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-center img {
  height: 60px;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.menu-centered ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 10px;
}

.menu-centered a {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #111;
}

.menu-centered a:hover {
  color: #999;
}

/* ----------------- BLOG ARTICLE ----------------- */
.blog-article {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.blog-article h1,
.blog-article h2,
.blog-article h3 {
  margin-bottom: 15px;
}

.blog-article p {
  margin-bottom: 15px;
  font-size: 0.85rem;
  color: #555;
}

.blog-article strong {
  color: #111;
  font-weight: 700;
}

.blog-article a {
  border-bottom: none; /* PAS de bordure par défaut */
  font-size: 0.75rem;
}

.blog-article a::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #111;
  margin-top: 2px;
  transition: background 0.3s;
}

.blog-article a:hover::after {
  background: #999;
}

.blog-article a:hover {
  color: #999;
}

/* ----------------- FOOTER ----------------- */
.footer {
  background: #fff;
  padding: 60px 20px;
  color: #555;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  border-top: 1px solid #eee;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-photo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.footer-phrase {
  font-size: 0.75rem;
  line-height: 1.8;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  max-width: 800px;
  margin: 0 auto 10px auto;
}

.footer-contact {
  font-size: 0.75rem;
  margin: 20px 0;
}

.footer-contact a {
  color: #111;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #999;
}

.footer-contact p {
  margin: 8px 0;
  font-size: 0.8rem;
}

.footer .cta-btn {
  display: inline-block;
  font-size: 0.7rem;
  background: #111;
  color: #fff;
  padding: 8px 20px;
  text-transform: uppercase;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-top: 10px;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

.footer .cta-btn:hover {
  background: #333;
  transform: translateY(2px);
}

.footer-social {
  margin-top: 20px;
}

.footer-social a img {
  width: 20px;
  margin: 0 10px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.footer-social a img:hover {
  opacity: 1;
}

.footer-signature {
  margin-top: 30px;
  font-size: 0.75rem;
  color: #555;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-signature p {
  margin: 0;
}

.footer-signature span {
  font-style: italic;
}

.footer-signature .studio-signature {
  font-family: 'GasthonySignature', cursive; /* utilise la police personnalisée */
  font-style: italic;
  text-transform: capitalize; /* S majuscule, reste en minuscule */
  font-size: 1rem; /* ajuste si tu veux qu’il ressorte plus */
}

/* ----------------- RESPONSIVE ----------------- */
@media (max-width: 768px) {
  .container {
    padding: 30px 15px;
  }
  
  .hamburger {
    display: block;
  }

  .blog-article {
    padding: 30px 20px;
  }

  h1 {
    font-size: 1.4rem;
  }

  h2 {
    font-size: 1rem;
  }

  h3 {
    font-size: 0.9rem;
  }

  p {
    font-size: 0.8rem;
  }

  .footer-phrase {
    font-size: 0.7rem;
  }

  .footer-contact p {
    font-size: 0.75rem;
  }

  .logo-center img {
    height: 50px;
  }

  .social-icons {
    position: static;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
    transform: none;
  }

  header {
    flex-direction: column;
    align-items: center;
  }

  .menu-centered ul {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }
  .menu-centered {
    display: none; /* caché par défaut */
    flex-direction: column;
    gap: 15px;
    background: #fff;
    width: 100%;
    padding: 10px 0;
  }

  .menu-centered.active {
    display: flex; /* s’affiche au clic */
  }
}
