/*
Theme Name: Akilia Web Solutions
Theme URI: https://akiliawebsolutions.fr
Description: Thème WordPress professionnel pour Akilia Web Solutions - Spécialiste WordPress, création de sites vitrines et e-commerce, développement sur mesure. Rendu visuel inspiré de Silverstorm avec sticky menu, smooth scroll et animations.
Version: 2.0.0
Author: AkiliaWebSolutions - Jessica MORENCY
Author URI: https://akiliawebsolutions.fr
Tags: block-patterns, full-site-editing, custom-colors, custom-menu, featured-images, threaded-comments, translation-ready, sticky-header, smooth-scroll
Text Domain: akilia-web-solutions
Tested up to: 6.4
Requires at least: 6.2
Requires PHP: 7.4
License: GNU General Public License v2.0 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

/* ========================================
   Variables CSS - Palette de couleurs & Fonts
   ======================================== */
:root {
  --bleu-vert-teal: #00b2c0;
  --ardoise: #384053;
  --ardoise-clair: #495467;
  --blanc: #ffffff;
  --bronze: #c89847;
  --magenta: #e91e8c;

  /* Fonts */
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Open Sans', sans-serif;
  --font-decorative: 'Corinthia', cursive;

  /* Espacement */
  --container-padding: 15px;
  --section-padding: 60px 20px;
}

/* ========================================
   Reset & Base Styles
   ======================================== */
* {
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
  scroll-behavior: smooth; /* Smooth scroll natif */
}

body {
  margin: 0 !important;
  padding: 0;
  color: var(--ardoise);
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  background-color: white;
  width: 100%;
  overflow-x: hidden;
}

#page {
  width: 100%;
  overflow-x: hidden;
}

/* Empêcher le scroll quand un modal est ouvert */
html.no-scroll {
  overflow: hidden;
}

/* Images et médias responsives */
img,
video,
iframe,
embed,
object {
  max-width: 100%;
  height: auto;
}

/* Éviter le débordement des éléments */
img {
  display: block;
}

/* Tables responsive */
table {
  max-width: 100%;
  overflow-x: auto;
  display: block;
}

/* ========================================
   Système de grille inspiré de Silverstorm
   ======================================== */
.h-container {
  width: 100%;
  padding-right: var(--container-padding);
  padding-left: var(--container-padding);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .h-container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .h-container {
    max-width: 720px;
  }
}

@media (min-width: 1024px) {
  .h-container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .h-container {
    max-width: 1232px;
  }
}

.h-container-fluid {
  width: 100%;
  padding-right: var(--container-padding);
  padding-left: var(--container-padding);
  margin-right: auto;
  margin-left: auto;
}

.h-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: calc(var(--container-padding) * -1);
  margin-left: calc(var(--container-padding) * -1);
}

/* ========================================
   Typographie
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.3;
  margin-top: 0;
}

h1 {
  font-size: 2.5rem;
  color: var(--ardoise);
}

h2 {
  font-size: 2rem;
  color: var(--bronze);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  color: var(--ardoise);
}

p, span {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 2em;
}

p{ margin-bottom: 1rem; }

a {
  color: var(--bronze);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--bronze);
}

/* ========================================
   STICKY HEADER (inspiré de Silverstorm)
   ======================================== */
.site-header {
  /* background-color géré par le Customizer */
  /* padding: 1rem 0; - Maintenant géré par le Customizer */
  position: relative;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Sticky state */
.site-header.sticky,
.site-header.h-navigation_sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  /* background-color géré par le Customizer */
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  animation: slideDown 0.3s ease-out;
}

/* Animation du sticky header */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Compensation pour le sticky header */
body.header-sticky-active {
  padding-top: 80px; /* Ajuster selon la hauteur réelle du header */
}

/* Admin bar compensation */
.logged-in.admin-bar .site-header.sticky {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .logged-in.admin-bar .site-header.sticky {
    top: 46px;
  }
}

.site-header .header-container {
  max-width: 1370px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo dans le sticky */
.site-logo img {
  max-height: 50px;
  width: auto;
  transition: all 0.3s ease;
}

.site-header.sticky .site-logo img {
  max-height: 40px; /* Logo plus petit en mode sticky */
}

/* ========================================
   Navigation
   ======================================== */
.main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2rem;
}

.main-navigation a {
  color: var(--blanc);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.main-navigation a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--bronze);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item a::after {
  width: 80%;
}

.main-navigation a:hover {
  color: var(--bronze);
}

/* Sous-menus */
.main-navigation li {
  position: relative;
}

.main-navigation .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--blanc);
  min-width: 200px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  flex-direction: column;
  gap: 0;
  padding: 0.5rem 0;
  z-index: 1000;
}

.main-navigation li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-navigation .sub-menu a {
  color: var(--ardoise);
  padding: 0.75rem 1.5rem;
  display: block;
}

.main-navigation .sub-menu a:hover {
  background-color: #f5f5f5;
  color: var(--bronze);
}

/* Menu Toggle (Burger) */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  position: relative;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--blanc);
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* ========================================
   Responsive Navigation
   ======================================== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .main-navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--blanc);
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 999;
    padding: 5rem 0 2rem;
  }

  .main-navigation.mobile-menu-active {
    right: 0;
  }

  .main-navigation ul {
    flex-direction: column;
    gap: 0;
  }

  .main-navigation li {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }

  .main-navigation a {
    padding: 1rem 1.5rem;
    display: block;
    width: 100%;
    color: var(--ardoise);
    font-weight: 500;
  }

  .main-navigation a:hover {
    color: var(--bronze);
    background-color: #f9f9f9;
  }

  .main-navigation a::after {
    display: none;
  }

  /* Sous-menus mobiles */
  .main-navigation .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background-color: #f8f8f8;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .main-navigation li.menu-item-has-children > a::before {
    content: '▼';
    float: right;
    font-size: 0.75rem;
    transition: transform 0.3s ease;
  }

  .main-navigation li.menu-item-has-children.submenu-open > a::before {
    transform: rotate(180deg);
  }

  .main-navigation li.submenu-open > .sub-menu {
    max-height: 500px;
  }

  .main-navigation .sub-menu a {
    padding-left: 2.5rem;
    font-size: 0.9rem;
    color: var(--ardoise);
  }

  .main-navigation .sub-menu a:hover {
    color: var(--bronze);
    background-color: #e8e8e8;
  }

  /* Item de menu actif sur mobile */
  .main-navigation .current-menu-item > a,
  .main-navigation .current-menu-ancestor > a {
    color: var(--bronze);
    font-weight: 600;
  }

  /* Header container responsive */
  .header-container {
    justify-content: space-between;
  }

  /* Overlay pour fermer le menu */
  .mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .mobile-menu-overlay.active {
    display: block;
    opacity: 1;
  }

  /* Empêcher le scroll quand le menu est ouvert */
  body.mobile-menu-open {
    overflow: hidden;
  }
}

/* ========================================
   Back to Top Button (style Silverstorm)
   ======================================== */
.h-back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: var(--bronze);
  color: var(--blanc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 998;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(10px);
  visibility: hidden;
}

.h-back-to-top.h-back-to-top--visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.h-back-to-top:hover {
  background-color: var(--bronze);
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.h-back-to-top::before {
  content: '↑';
  font-size: 24px;
  font-weight: bold;
}

/* ========================================
   Scroll Down Arrow Animation
   ======================================== */
.h-down-arrow {
  position: absolute !important;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 10;
}

.h-scroll-to__outer {
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-name: move-down-bounce;
  cursor: pointer;
  display: inline-block;
}

@keyframes move-down-bounce {
  0%, 100%, 20%, 50%, 80% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: var(--blanc);
  padding: 80px 20px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.wp-block-cover.hero-section .wp-block-cover__inner-container{ 
  z-index: 2; 
}

.wp-block-cover.hero-section .wp-block-cover__inner-container,
.wp-block-group__inner-container{
  max-width: 1370px;
  margin-left: auto;
  margin-right: auto;    
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
}

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

.hero-section h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-section p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: var(--blanc);
}

/* ========================================
   Boutons
   ======================================== */
.wp-block-button__link,
.btn,
.button {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--bronze);
  color: var(--blanc);
  border: 2px solid var(--bronze);
  border-radius: 5px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.wp-block-button__link:hover,
.btn:hover,
.button:hover {
  background-color: var(--ardoise);
  border: 2px solid var(--ardoise);
  color: var(--blanc);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* boutons contour */
.is-style-outline .wp-block-button__link{
  background-color: var(--blanc);
  color: var(--bronze);
  border: 2px solid var(--bronze);  
}
.is-style-outline .wp-block-button__link:hover{
  color: var(--ardoise); 
  border: 2px solid var(--ardoise); 
}
/* ========================================
   Sections de contenu
   ======================================== */

.content-section {
  padding: var(--section-padding);
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.content-section.bg-light {
  background-color: #f9f9f9;
}

.content-section.bg-dark {
  background-color: var(--ardoise);
  color: var(--blanc);
}

.content-section.bg-dark h2 {
  color: var(--blanc);
}

/* ========================================
   Grilles de services
   ======================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: var(--blanc);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  /* text-align: center; */
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

/* Stagger animation pour les cards */
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.service-card .icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card h3 {
  color: var(--ardoise);
  margin-bottom: 15px;
}
/*
.service-card p {
  font-size: 15px;
  line-height: 1.6;
}
*/

/* ========================================
   Footer
   ======================================== */
.site-footer {
  background-color: var(--ardoise);
  color: var(--blanc);
  padding: 40px 20px 20px;
  text-align: center;
}

.site-footer a {
  color: var(--bronze);
}

.site-footer a:hover {
  color: var(--bronze);
}

.site-footer ul{ list-style: none; }

.footer-content {
  max-width: 1370px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}

/* ========================================
   Largeur des contenus WordPress
   ======================================== */
.site-content {
  width: 100%;
  overflow-x: hidden;
}

.wp-block,
.entry-content > *:not(.alignfull):not(.alignwide),
.entry-footer:not(.alignfull):not(.alignwide),
.wp-block-template-part > *:not(.alignfull):not(.alignwide),
.entry-header > *:not(.alignfull):not(.alignwide){
  max-width: 1370px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.entry-content > .wp-block-list{ padding-left: 3em !important; }

.entry-header{ margin-top: 1.5em; }

.alignwide {
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}

.alignfull {
  clear: both;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}

.aligncenter {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   Classes utilitaires de couleurs
   ======================================== */
.has-bleu-vert-teal-color { color: var(--bleu-vert-teal); }
.has-bleu-vert-teal-background-color { background-color: var(--bleu-vert-teal); }
.has-bleu-vert-teal-border-color { border-color: var(--bleu-vert-teal); }

.has-ardoise-color { color: var(--ardoise); }
.has-ardoise-background-color { background-color: var(--ardoise); }
.has-ardoise-border-color { border-color: var(--ardoise); }

.has-ardoise-clair-color { color: var(--ardoise-clair); }
.has-ardoise-clair-background-color { background-color: var(--ardoise-clair); }
.has-ardoise-clair-border-color { border-color: var(--ardoise-clair); }

.has-blanc-color { color: var(--blanc); }
.has-blanc-background-color { background-color: var(--blanc); }
.has-blanc-border-color { border-color: var(--blanc); }

.has-bronze-color { color: var(--bronze); }
.has-bronze-background-color { background-color: var(--bronze); }
.has-bronze-border-color { border-color: var(--bronze); }

.has-magenta-color { color: var(--magenta); }
.has-magenta-background-color { background-color: var(--magenta); }
.has-magenta-border-color { border-color: var(--magenta); }

/* ========================================
   Responsive Design
   ======================================== */

/* Responsive général */
@media (max-width: 1200px) {
  .wp-block,
  .entry-content > *:not(.alignfull):not(.alignwide),
  .wp-block-template-part > *:not(.alignfull):not(.alignwide) {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 768px) {
  /* Réduire les paddings sur mobile */
  .wp-block,
  .entry-content > *:not(.alignfull):not(.alignwide),
  .wp-block-template-part > *:not(.alignfull):not(.alignwide) {
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-header .header-container {
    flex-direction: row;
    justify-content: space-between;
    gap: 1rem;
  }

  .main-navigation ul {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

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

  .services-grid {
    grid-template-columns: 1fr;
  }

  h2 {
    font-size: 1.5rem;
  }
}

/* ========================================
   Accessibilité
   ======================================== */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 16px;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* ========================================
   Classes Utilitaires - Fonts
   ======================================== */

/* Font Families */
.font-primary {
  font-family: var(--font-primary) !important;
}

.font-secondary {
  font-family: var(--font-secondary) !important;
}

.font-decorative,
.font-corinthia {
  font-family: var(--font-decorative) !important;
  font-weight: 400; /* Regular par défaut */
}

.font-corinthia-bold {
  font-family: var(--font-decorative) !important;
  font-weight: 700;
}

/* Font Awesome - Classes utilitaires */
.icon {
  font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Brands';
}

.icon-solid {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900; /* Solid icons */
}

.icon-regular {
  font-family: 'Font Awesome 6 Free';
  font-weight: 400; /* Regular icons */
}

.icon-brand {
  font-family: 'Font Awesome 6 Brands';
  font-weight: 400;
}

/* Tailles d'icônes Font Awesome */
.icon-xs { font-size: 0.75em; }
.icon-sm { font-size: 0.875em; }
.icon-lg { font-size: 1.25em; }
.icon-xl { font-size: 1.5em; }
.icon-2x { font-size: 2em; }
.icon-3x { font-size: 3em; }
.icon-4x { font-size: 4em; }
.icon-5x { font-size: 5em; }

/* Rotation et animation d'icônes */
.icon-spin {
  animation: fa-spin 2s infinite linear;
}

.icon-pulse {
  animation: fa-spin 1s infinite steps(8);
}

@keyframes fa-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Icônes avec cercle/carré de fond */
.icon-circle,
.icon-square {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5em;
  height: 2.5em;
  background-color: var(--bronze);
  color: var(--blanc);
}

.icon-circle {
  border-radius: 50%;
}

.icon-square {
  border-radius: 4px;
}

/* Couleurs d'icônes */
.icon-primary { color: var(--bronze); }
.icon-secondary { color: var(--bronze); }
.icon-teal { color: var(--bronze); }
.icon-white { color: var(--blanc); }

/* ========================================
   Utilitaires WordPress
   ======================================== */
.sticky {
  /* WordPress sticky posts */
}

.bypostauthor {
  /* WordPress post author highlight */
}

/* ========================================
   Bannière de page par défaut
   ======================================== */
.akilia-page-banner {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.akilia-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.akilia-banner-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  text-align: center;
}

.akilia-banner-content.align-top {
  align-self: flex-start;
  padding-top: 40px;
}

.akilia-banner-content.align-center {
  align-self: center;
}

.akilia-banner-content.align-bottom {
  align-self: flex-end;
  padding-bottom: 40px;
}

.akilia-banner-content .page-title {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

@media (max-width: 768px) {
  .akilia-banner-content .page-title {
    font-size: 1.8rem;
  }
}

/* ===========================
   Fil d'Ariane (Breadcrumb)
   =========================== */

.akilia-breadcrumb {
  background: #f8f9fa;
  padding: 12px 0;
  margin: 0;
  border-bottom: 1px solid #e9ecef;
}

.breadcrumb-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.breadcrumb-item {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  color: #6c757d;
}

.breadcrumb-item a {
  color: var(--ardoise);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: var(--bronze);
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: var(--bronze);
  font-weight: 500;
}

.breadcrumb-separator {
  margin: 0 8px;
  color: #adb5bd;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .breadcrumb-list {
    font-size: 0.85rem;
  }

  .breadcrumb-separator {
    margin: 0 6px;
  }
}
