/*
Theme Name: GeneratePress Child
Template: generatepress
Version: 1.0
*/

/* ======================
   VARIABLES
====================== */
:root {
  --grey-main: #dcdcdc;
  --grey-strong: #cfcfcf;
  --grey-light: #f2f2f2;
  --red-main: #e63946;
  --text-dark: #1f2937;
  --header-height: 100px;
}

/* ======================
   RESET GENERATEPRESS
====================== */
.inside-header {
  background: none !important;
  padding: 0 !important;
}

/* ======================
   BASE
====================== */
body {
  margin: 0 !important;
  padding: 0 !important;
  color: var(--text-dark);
  font-family: 'Poppins', sans-serif !important;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Enlever padding top du contenu */
.site-content,
.content-area,
.site-main,
.inside-article,
.entry-header {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* ======================
   HEADER – STRUCTURE FIXE
====================== */
.site-header {
  position: relative !important;
  width: 100%;
  z-index: 1000;
  background: var(--grey-main) !important;
  padding: 0 !important;
}

/* Header home transparent - ULTRA RENFORCÉ */
body.home .site-header,
body.front-page .site-header {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.home .site-header .header-inner,
body.front-page .site-header .header-inner {
  background: transparent !important;
}

.header-inner {
  max-width: 1300px;
  margin: auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  flex-shrink: 0;
}

.logo img {
  height: 75px;
  width: auto;
  display: block;
}

/* ======================
   NAVIGATION DESKTOP
====================== */
.main-nav {
  display: flex;
  flex: 1;
  justify-content: center;
}

.main-nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: var(--text-dark) !important;
  font-weight: 600;
  text-decoration: none !important;
  transition: color 0.3s;
}

.main-nav a:hover {
  color: var(--red-main) !important;
}

/* ======================
   CTA HEADER
====================== */
.header-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.header-cta .phone {
  font-size: 14px;
  text-align: right;
  line-height: 1.4;
}

.btn-call {
  background: var(--red-main) !important;
  color: #fff !important;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none !important;
  display: inline-block;
  transition: all 0.3s;
  white-space: nowrap;
}

.btn-call:hover {
  background: #d32f3e !important;
  transform: scale(1.05);
}

/* ======================
   BURGER MENU – MOBILE
====================== */
#burger-toggle {
  display: none;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 9999;
}

.burger span {
  width: 28px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: 0.3s;
}

.menu-overlay {
  display: none;
}
/* ======================
   HERO
====================== */
.hero {
  position: relative;
  min-height: 90vh;
  background: url('https://i.postimg.cc/nrByMtHy/image-(19).jpg') center / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 180px 20px 80px;
}

/* Hero home : compense le header transparent */
body.home .hero,
body.front-page .hero {
  margin-top: 0 !important;
  padding-top: 140px !important; /* ⬅️ Augmenté pour plus d'espace */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(230,230,230,0.85);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: auto;
  text-align: center;
  padding: 20px;
}

/* TITRE HERO */
.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.3; /* ⬅️ Contrôle l'espace entre les lignes */
  margin: 0 0 30px;
}

.hero h1 span {
  color: var(--red-main);
}

.hero-subtitle {
  margin: 30px 0;
  font-size: 1.2rem;
}

/* Box Xtrem Nuisibles */
.brand-highlight {
  display: inline-block;
  padding: 6px 16px;
  border: 1.5px solid rgba(230, 57, 70, 0.6);
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: 0.3px;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.10), rgba(230, 57, 70, 0.04));
  backdrop-filter: blur(2px);
  margin-bottom: 25px; /* ⬅️ Espace après "Xtrem Nuisibles" */
}

/* LIGNE ROUGE */
.hero-title .highlight-red {
  display: block;
  margin-top: 8px; /* ⬅️ Espace avant "en moins de 45 minutes" */
}

/* ======================
   CTA HERO
====================== */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.btn,
.btn-primary,
.btn-secondary {
  padding: 18px 40px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none !important;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  font-size: 16px;
}

.btn-primary {
  background: var(--red-main) !important;
  color: #fff !important;
  border: 2px solid var(--red-main);
}

.btn-primary:hover {
  background: #d32f3e !important;
  transform: scale(1.05);
}

.btn-secondary {
  border: 2px solid var(--text-dark) !important;
  color: var(--text-dark) !important;
  background: transparent;
}

.btn-secondary:hover {
  background: var(--text-dark) !important;
  color: #fff !important;
}

/* ======================
   FEATURES
====================== */
.features {
  padding: 80px 20px;
  background: var(--grey-light);
}

.features-header {
  text-align: center;
  margin-bottom: 50px;
}

.features-header h2 {
  font-size: 2.5rem;
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.features-header span {
  color: var(--red-main);
}

.features-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: 0 15px 40px rgba(0,0,0,.08);
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 6px;
  line-height: 1.3;
}

.feature-card p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
}

/* Couleurs features */
.feature-red {
  background: #fbe4e6;
}

.feature-red .feature-icon {
  color: var(--red-main);
}

.feature-blue {
  background: #e4edf9;
}

.feature-blue .feature-icon {
  color: #1f4fa3;
}

.feature-green {
  background: #e4f4ef;
}

.feature-green .feature-icon {
  color: #1ea97c;
}

.feature-yellow {
  background: #fdf3c6;
}

.feature-yellow .feature-icon {
  color: #f2b705;
}

/* ======================
   CALCULATEUR DE PRIX
====================== */
.price-calculator {
  padding: 100px 20px;
  background: #fff;
}

.calc-box {
  max-width: 800px;
  margin: auto;
  background: var(--grey-light);
  border-radius: 30px;
  padding: 60px 40px;
  text-align: center;
}

.calc-box h2 {
  font-size: 2.5rem;
  margin: 0 0 10px;
  font-weight: 800;
}

.calc-box h2 span {
  color: var(--red-main);
}

.calc-subtitle {
  color: #666;
  margin-bottom: 40px;
}

.pest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  margin-bottom: 40px;
}

.pest {
  background: #fff;
  border: 3px solid transparent;
  border-radius: 15px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  color: var(--text-dark);
  font-family: 'Poppins', sans-serif !important;
}

.pest:hover {
  border-color: var(--red-main);
  background: #fff5f5;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(230,57,70,.15);
}

.pest.active {
  border-color: var(--red-main);
  background: #fff5f5;
  color: var(--text-dark);
}

.pest strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  color: var(--text-dark);
  font-family: 'Poppins', sans-serif !important;
}

.pest span {
  display: block;
  font-size: 0.85rem;
  color: #6b7280;
  font-family: 'Poppins', sans-serif !important;
}

.calc-field {
  margin-bottom: 40px;
  text-align: left;
}

.calc-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.calc-field select {
  width: 100%;
  padding: 15px 20px;
  border-radius: 10px;
  border: 2px solid var(--grey-strong);
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  background: #fff;
}

.price-box {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
}

.price-label {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 10px;
}

.price-value {
  font-size: 3rem;
  font-weight: 800;
  color: var(--red-main);
  margin-bottom: 10px;
}

.price-note {
  font-size: 0.85rem;
  color: #999;
}

.calc-cta a {
  display: inline-block;
  padding: 18px 50px;
  background: var(--red-main);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
}

.calc-cta a:hover {
  background: #d32f3e;
  transform: scale(1.05);
}

/* ======================
   ÉQUIPE
====================== */
.team {
  padding: 100px 20px;
  background: var(--grey-light);
}

.team-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.team-content h2 {
  font-size: 2.5rem;
  margin: 0 0 20px;
  font-weight: 800;
}

.team-content h2 span {
  color: var(--red-main);
}

.team-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
}

.team-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.team-points li {
  padding: 15px 0;
  font-size: 1.1rem;
  border-bottom: 1px solid var(--grey-strong);
}

.team-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* ======================
   AVIS
====================== */
.reviews {
  padding: 100px 20px;
  background: #fff;
}

.reviews-header {
  text-align: center;
  margin-bottom: 60px;
}

.reviews-header h2 {
  font-size: 2.5rem;
  margin: 0 0 15px;
  font-weight: 800;
}

.reviews-header span {
  color: var(--red-main);
}

.reviews-header p {
  color: #666;
  font-size: 1.1rem;
}

/* ======================
   BLOG
====================== */
.blog {
  background: var(--grey-light);
  padding: 70px 20px 100px;
}

.blog-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.blog-header h1 {
  font-size: 2.3rem;
  font-weight: 800;
  margin: 0 0 14px;
}

.blog-header span {
  color: var(--red-main);
}

.blog-header p {
  font-size: 1.05rem;
  color: #6b7280;
  max-width: 720px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.blog-card {
  background: #fff;
  padding: 26px;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(0,0,0,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 65px rgba(0,0,0,.12);
}

.blog-card-image {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  margin-bottom: 18px;
}

.blog-card-image img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform .35s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-title {
  margin: 0 0 10px;
}

.blog-card-title a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
}

.blog-card-title a:hover {
  color: var(--red-main);
}

.blog-card-excerpt {
  font-size: .95rem;
  color: #4b5563;
  margin-bottom: 16px;
}

.blog-card-link {
  color: var(--red-main);
  font-weight: 700;
  text-decoration: none;
}

/* ======================
   SINGLE ARTICLE
====================== */
.single {
  padding: 40px 20px 100px;
  background: #fff;
}

.single .container {
  max-width: 1200px;
}

.single-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 50px;
  align-items: start;
}

.single-content-area {
  min-width: 0;
  max-width: 760px;
}

.single-header {
  text-align: center;
  margin-bottom: 40px;
}

.single-header h1,
.single-title {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-dark);
  margin: 0 0 12px !important;
}

.single-meta {
  font-size: 0.95rem;
  color: #6b7280;
}

.single-featured,
.single-thumbnail {
  margin: 40px 0;
}

.single-featured img,
.single-thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,.15);
}

.single-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #374151;
}

.single-content h2 {
  margin-top: 50px;
  margin-bottom: 18px;
  font-size: 1.9rem;
  font-weight: 800;
}

.single-content h3 {
  margin-top: 35px;
  font-size: 1.4rem;
  font-weight: 700;
}

.single-content p {
  margin-bottom: 20px;
}

.single-content ul {
  margin: 20px 0;
  padding-left: 20px;
}

/* Sidebar */
.single-sidebar {
  background: #ffffff;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(0,0,0,.08);
}

/* Sidebar sticky desktop */
@media (min-width: 900px) {
  .single-sidebar {
    position: sticky;
    top: 30px;
    align-self: flex-start;
  }
}

.single-sidebar h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 22px;
  color: var(--text-dark);
}

.latest-posts {
  list-style: none;
  margin: 0;
  padding: 0;
}

.latest-post-item {
  padding: 14px 0;
  border-bottom: 1px solid #e5e7eb;
}

.latest-post-item:last-child {
  border-bottom: none;
}

.latest-title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text-dark);
  text-decoration: none;
  display: block;
  transition: color .2s ease;
}

.latest-title:hover {
  color: var(--red-main);
}

/* ======================
   CONTACT
====================== */
.contact-section {
  padding: 100px 20px;
  background: #f5f7fb;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
}

.contact-form {
  background: #fff;
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

.contact-form h2 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.contact-form h2 span {
  color: var(--red-main);
}

.contact-subtitle {
  color: #666;
  margin-bottom: 35px;
}

.contact-form input,
.contact-form textarea,
.contact-form select,
.contact-form button,
.contact-form input[type="submit"] {
  font-family: 'Poppins', sans-serif !important;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 12px;
  border: 2px solid #e5e7eb;
  font-size: 15px;
  margin-bottom: 18px;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.contact-form button {
  background: #ffc107;
  color: #000;
  border: none;
  padding: 16px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #ffb300;
  transform: scale(1.02);
}

.contact-box {
  background: linear-gradient(180deg, #3f6fa6, #2f5f94);
  color: #fff;
  padding: 50px 40px;
  border-radius: 24px;
  text-align: center;
}

.contact-box h3 {
  font-size: 1.8rem;
  margin-bottom: 25px;
}

.contact-phone {
  font-size: 1.6rem;
  color: var(--red-main);
  margin-bottom: 25px;
  font-weight: 800;
}

.contact-box a[href^="tel"] {
  color: var(--red-main) !important;
  text-decoration: none;
}

.contact-btn {
  display: block;
  padding: 16px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

/* Bouton Appeler maintenant - FORCE BLANC */
.contact-box .contact-btn.call,
.contact-box a.contact-btn.call,
a.contact-btn.call {
  background-color: var(--red-main) !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

.contact-box .contact-btn.call:hover,
.contact-box a.contact-btn.call:hover,
a.contact-btn.call:hover {
  background-color: var(--red-main) !important;
  color: #ffffff !important;
  filter: brightness(0.95);
}

.contact-box .contact-btn.call:visited,
.contact-box a.contact-btn.call:visited,
a.contact-btn.call:visited {
  color: #ffffff !important;
}

.contact-box .contact-btn.call:active,
.contact-box a.contact-btn.call:active,
a.contact-btn.call:active {
  color: #ffffff !important;
}

/* WhatsApp */
.contact-box .contact-btn.whatsapp,
.contact-box a.contact-btn.whatsapp,
a.contact-btn.whatsapp {
  background: #25d366 !important;
  color: #fff !important;
  text-decoration: none !important;
}

.contact-box .contact-btn.whatsapp:hover {
  filter: brightness(0.95);
  color: #fff !important;
}

.contact-infos {
  margin-top: 30px;
  text-align: left;
  font-size: 14px;
  line-height: 1.6;
}

/* ======================
   FOOTER
====================== */
.site-footer {
  background: linear-gradient(180deg, #62676d, #565b61);
  color: #f5f5f5;
  padding: 80px 20px 30px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 50px;
}

.footer-col h4 {
  color: var(--red-main);
  font-size: 1.25rem;
  margin-bottom: 22px;
  font-weight: 700;
}

.footer-col p,
.footer-col li {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e5e5e5;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  color: #f0f0f0;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-col a:hover {
  color: var(--red-main);
}

.footer-brand img {
  max-width: 180px;
  margin-bottom: 20px;
}

.footer-brand p {
  color: #e0e0e0;
}

.footer-zone {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-zone h5 {
  font-size: 1rem;
  margin-bottom: 8px;
  font-weight: 600;
  color: #ffffff;
}

.footer-zone span {
  color: var(--red-main);
  font-weight: 800;
}

.footer-bottom {
  text-align: center;
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 0.85rem;
  color: #d1d1d1;
}

/* ======================
   TITRES
====================== */
h2 {
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* ======================
   RESPONSIVE – TABLETTE
====================== */
@media (max-width: 1200px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  /* Blog */
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Contact */
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-form,
  .contact-box {
    padding: 35px 25px;
  }

  .contact-row {
    grid-template-columns: 1fr;
  }

  /* Single */
  .single-layout {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-brand img {
    margin: 0 auto 20px;
  }
}

/* ======================
   RESPONSIVE – MOBILE
====================== */
@media (max-width: 768px) {
  /* Header mobile */
  .header-inner {
    padding: 12px 20px;
  }

  .logo img {
    height: 60px;
  }

  /* Burger visible */
  .burger {
    display: flex;
  }

  /* Navigation mobile */
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--grey-light);
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    z-index: 9998;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav li {
    border-bottom: 1px solid var(--grey-strong);
  }

  .main-nav a {
    display: block;
    padding: 18px 0;
  }

  /* Overlay menu */
  .menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9997;
  }

 /* Au lieu de */
#burger-toggle:checked ~ .main-nav {
  right: 0;
}

/* Utilise */
#burger-toggle:checked ~ .header-inner .main-nav {
  right: 0;
}

/* Et */
#burger-toggle:checked ~ .header-inner .burger span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

#burger-toggle:checked ~ .header-inner .burger span:nth-child(2) {
  opacity: 0;
}

#burger-toggle:checked ~ .header-inner .burger span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

  /* Header CTA mobile */
  .header-cta .phone {
    display: none;
  }

  .btn-call {
    padding: 10px 16px;
    font-size: 14px;
  }

  /* Hero mobile */
  .hero {
    min-height: auto;
    padding: 120px 20px 60px;
  }

  body.home .hero,
  body.front-page .hero {
    margin-top: 0;
    padding-top: 120px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn,
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  /* Grids mobile */
  .features-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .team-container {
    grid-template-columns: 1fr;
  }

  .pest-grid {
    grid-template-columns: 1fr;
  }

  /* Calculateur mobile */
  .calc-box {
    padding: 40px 20px;
  }

  .price-value {
    font-size: 2rem;
  }

  /* Single mobile */
  .single {
    padding: 130px 20px 80px;
  }

  .single-header h1 {
    font-size: 2rem;
  }


@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
}

.footer-socials img {
  width: 28px;
  height: 28px;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.footer-socials img:hover {
  opacity: 1;
}

