/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */
         :root {
            --primary-color: #6366f1;
            --secondary-color: #f59e0b;
            --success-color: #10b981;
            --dark-color: #1f2937;
            --light-bg: #f8fafc;
        }
  body {
            background-color: #f9f8f6;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        }
        
        .header-main {
            background-color: #471396;
            color: white;
            padding: 15px 0;
        }
        
        .header-main .nav-link {
            color: white;
            text-decoration: none;
            transition: all 0.5 ease;
        }

        .header-main .nav-link:hover{
            color: #DE7F06;
        }

        /* uploader design */
.image-upload-container {
  position: relative;
  width: 150px;
  height: 150px;
  margin-bottom: 15px;
  background-color: black;
}

.upload-preview {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  border: 2px dashed rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.upload-preview img {
  max-width: 40px;
  max-height: 40px;
  margin-bottom: 10px;
}

.upload-preview img.preview-active {
  max-width: 100%;
  max-height: 100%;
  margin: 0;
  object-fit: cover;
}

.upload-text {
  font-size: 10px;
  font-weight: bold;
  color: white;
  margin: 0 5px 5px;
}

.upload-subtext {
  font-size: either;
  color: #5f6368;
  margin: 0 5px;
  font-size: 8px;
}

.photo-input {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 10;
}

.text-hidden {
  display: none;
}
/* uploader design */
        
        .hero-section {
            padding: 0%;
            background-color: #f9f8f6;
        }
        
        .hero-card {
            background: white;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            max-width: 500px;
        }
        
        .btn-primary-custom {
            background-color: #471396;
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 6px;
        }
        
        .btn-primary-custom:hover {
            background-color: #5a1ab8;
        }
        
        .filter-section {
            background-color: white;
            padding: 60px 0;
        }
        
        .filter-tabs {
            display: flex;
            gap: 20px;
            margin-bottom: 40px;
            border-bottom: 2px solid #e0e0e0;
            padding-bottom: 10px;
            flex-wrap: wrap;
        }
        
        .filter-tab {
            padding: 10px 20px;
            border: 1px solid #ddd;
            border-radius: 20px;
            background: #f5f5f5;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .filter-tab.active {
            background-color: #471396;
            color: white;
            border-color: #471396;
        }
        
        .course-card {
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        
        .course-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .course-image {
            height: 200px;
            background-color: #f0f0f0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            color: #471396;
        }
        
        .coaches-section {
            background-color: #471396;
            color: white;
            padding: 80px 0;
        }
        
        .coach-card {
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s;
        }
        
        .coach-card:hover {
            background: rgba(255,255,255,0.15);
            transform: translateY(-5px);
        }
        
        .coach-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: white;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            color: #471396;
        }
        
        .free-courses-section {
            padding: 80px 0;
        }
        
        .become-coach-section {
            background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
            padding: 80px 0;
        }
        
        .become-coach-card {
            background: #2e7d32;
            color: white;
            padding: 50px;
            border-radius: 12px;
            max-width: 600px;
            margin-left: auto;
        }
        
        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            background-color: #471396;
            border-radius: 50%;
            padding: 20px;
        }
 a{
  color:#000000;
  text-decoration: none;
 }
 .bg-orange{
    background-color: #DE7F06;
 }
 .bg-noir{
  background-color: #471396;
}
 .text-orange {
  color: #DE7F06;
}
.btn{
  border-radius: 0%;
  padding: 3%;
}
.btn-afk{
  background-color: #DE7F06;
  color: white;
  border: 2px solid white;
}

.btn-noir{
  background-color: #000000;
  color: white;
}

.btn-noir:hover{
  background-color: #000000;
  color: #DE7F06;
}

.btn-afk:hover{
  background-color: white;
  color: #DE7F06;
}
.btn-menu-afk{
  background-color: #DE7F06;
  color: white;
  border: 0px solid white;
}

.btn-menu-afk:hover{
  background-color: white;
  color: #DE7F06;
}
 .menu-principal{
    background-color: #000000;
 }
.menu-principal .nav-link{
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    transition: all ease 0.2s;
}
.menu-principal .nav-link:hover{
  color: #DE7F06;
}
.menu-utilisateur .nav-link{
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  transition: all ease 0.2s;
}
.menu-utilisateur .nav-link:hover{
color: #DE7F06;
}
/* Appliquer le fond noir au menu déroulant */
.nav-pills .dropdown-menu {
  background-color: black !important;
  border: none; /* Supprime la bordure par défaut */
}

/* Couleur du texte blanc dans le dropdown */
.nav-pills .dropdown-menu .dropdown-item {
  color: white !important;
  text-transform: uppercase;
  transition: all ease 0.2s;
}

/* Changer la couleur au survol */
.nav-pills .dropdown-menu .dropdown-item:hover {
  background-color: #DE7F06 !important;
  color: black !important; /* Pour un bon contraste */
}

/* Couleur du texte blanc dans le dropdown */
.menucart .dropdown-menu {
  background-color: black !important;
  border: none; /* Supprime la bordure par défaut */
}

/* Couleur du texte blanc dans le dropdown */
.menucart .dropdown-menu .dropdown-item {
  color: white !important;
  text-transform: uppercase;
  transition: all ease 0.2s;
  text-decoration: none;
}

/* Changer la couleur au survol */
.menucart .dropdown-menu .dropdown-item:hover {
  background-color: #DE7F06 !important;
  color: black !important; /* Pour un bon contraste */
}

.logo{
    width: 70%;
    margin: auto;
}
.img-kare{
  width: 150px;
}
/* acceuil */
/* Le col-8 a une hauteur définie */
.col-container {
  position: relative;
  height: 75vh; /* Détermine la hauteur globale */
  padding: 0;
}

/* Le carousel prend 100% du parent (col-8) */
.carousel {
  width: 100%;
  height: 100%;
}

/* Le carousel-inner suit la hauteur du carousel */
.carousel-inner {
  width: 100%;
  height: 100%;
}

/* Les items du carousel occupent toute la place */
.carousel-item {
  width: 100%;
  height: 100%;
}

/* Les images remplissent totalement le carousel sans se déformer */
.carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contenu (slogan + recherche) centré */
.overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
  width: 60%;
}

/* Formulaire de recherche */
.search-form {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.search-input {
  padding: 10px;
  border: none;
  border-radius: 5px 0 0 5px;
  width: 250px;
}

.search-btn {
  background: #ff6600;
  border: none;
  color: white;
  padding: 10px 15px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}
.cta-box {
  background: linear-gradient(to right, #fd7e14, #ff922b);
}

.right-section {
  background-color: white;
}

.card {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  transition: transform 0.2s;
}

.card:hover {
  transform: translateY(-2px);
}

.right-section .badge {
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: normal;
}

.right-section .badge a{
  background-color:#DE7F06;
  color: white;
  text-decoration: none;
  transition: all ease 0.3s;
  padding: 8px 16px;
  border-radius: 20px;
}

.badge a:hover{
  color:#DE7F06;
  background-color: white;
  text-decoration: none;
  border: 1px solid #DE7F06;
}



.btn-light:hover {
  background-color: #f8f9fa;
  color: #fd7e14;
}


.home-headline{
  font-size: 40px;
  font-weight: bold;
  text-transform: uppercase;
}
.home-intro{
  font-size: 16px;
}
.abonnement-bg{
  background: url('https://res.cloudinary.com/aseed/image/upload/v1740207725/afrikimages/assets/abo-bg_vuh6dx.jpg')no-repeat;
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
}
.abonnement-bg-filtre{
  background: url('')no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  height: 400px;
}
.abonnement-bg-headline{
  font-size: 50px;
  font-weight: bold;
  text-transform: uppercase;
}
.abonnement-bg-intro{
  font-size: 24px;
}
.galerie-section{
  background-color: white;
}
.galerie-section-headline{
  color: #DE7F06;
  font-size: 30px;
  font-weight: bold;
  text-transform: uppercase;
}
.galerie-section-btn{
  background-color: #000000;
  color: white;
  transition: all ease 0.2s;
}
.galerie-section-btn:hover{
  background-color: #DE7F06;
  color: #000000;
  transition: all ease 0.3s;
}
.galerie-section-square{
  width: 200px;
  height: 200px;
  background-color: transparent;
  padding-left: 10%;
  padding-right: 10%;
}
.galerie-section img{
  width: 200px;
  height: 200px;
}
.fill {
  object-fit: fill;
}
.contain {
  object-fit: contain;
}

.cover {
  object-fit: cover;
}
/* acceuil fin */

.lacategorie-container{
    background-size:cover;
    background-position: center center;
}

.lacategorie-filtre{
    background: rgba(0,0,0,.5);
    color:white; 
    height:50vh;
}

.souscategorie-formations-container {
  padding: 2rem !important;
  background-color: #471396;
}
.formations-headline{
  font-size: 26px;
  font-weight: bold;
  text-transform: uppercase;
}
.formation-titre::first-letter{
  text-transform: uppercase;
}

.dropdown-menu {
  min-width: 200px;
}

.dropdown-item {
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
}

.dropdown-item:hover {
  background-color: #DE7F06 !important;
  color: white;
}

.dropdown-item i {
  font-size: 1.1rem;
}

.copy-link {
  cursor: pointer;
}

.souscategorie-container {
  padding: 2rem !important;
  background-color: #DE7F06;
}

.souscategorie-container .row {
  gap: 2rem; /* Espacement uniforme entre les cartes */
}

.souscategorie-card {
  position: relative;
  overflow: hidden;
  height: 300px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 8px; /* coins légèrement arrondis */
}

.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease-in-out;
}

.souscategorie-card:hover .bg-image {
  transform: scale(1.1);
}

.filtre {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* Légèrement plus foncé pour meilleur contraste */
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding: 1.5rem;
  transition: background-color 0.3s ease;
}

.souscategorie-card:hover .filtre {
  background-color: rgba(0, 0, 0, 0.5); /* Plus foncé au survol */
}

.filtre .souscategorie-nom {
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.filtre .btn {
  border-radius: 0;
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease;
}

.filtre .btn-afk-light {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: 2px solid white;
}

.filtre .btn-afk-light:hover {
  background-color: #DE7F06;
  color: white;
  transform: translateY(-2px);
}

/* formation show page */
.formation-viewer-container {
  position: relative;
  min-height: auto;
  background-color: #f8f9fa;
  overflow: hidden;
}

/* Arrière-plan flouté */
.formation-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 0;
  overflow: hidden;
}

.background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(20px) brightness(0.7);
  transform: scale(1.1); /* Pour éviter les bords blancs dus au flou */
}

/* Conteneur des éléments principaux */
.container {
  position: relative;
  z-index: 1;
}

/* Style du conteneur de la formation principale */
.formation-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.formation-wrapper {
  position: relative;
  max-height: 70vh;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

/* Style de l'image principale */
.main-image {
  max-height: 70vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Actions sur l'image (boutons en haut) */
.formation-actions {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
}

.formation-actions .btn {
  width: 40px;
  height: 40px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.9);
}

/* Bouton pour supprimer l'arrière-plan */
.remove-background-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
}

/* Style pour le panneau de détails */
.image-details {
  background-color: white;
  border-radius: 8px;
}

.souscategories-container {
  margin-top: 15px;
}

.souscategory-link {
  display: inline-flex;
  align-items: center;
  background: #000000;
  color: white;
  padding: 6px 12px;
  margin: 5px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s ease;
}

.souscategory-link i {
  margin-right: 5px;
}

.souscategory-link:hover {
  background: white;
  color: #DE7F06;
  border: 1px solid #000000;
}




.tags-container {
  margin-top: 15px;
}

.tag-link {
  display: inline-flex;
  align-items: center;
  background: #DE7F06;
  color: white;
  padding: 6px 12px;
  margin: 5px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s ease;
}

.tag-link i {
  margin-right: 5px;
}

.tag-link:hover {
  background: white;
  color: #DE7F06;
  border: 1px solid #DE7F06;
}
/* formations show page */
.masonry-grid {
  column-count: 4; /* Nombre de colonnes */
  column-gap: 10px; /* Espacement entre les colonnes */
}

.masonry-item {
  display: inline-block;
  width: 100%;
  margin-bottom: 10px; /* Espacement vertical */
}

.masonry-item img {
  width: 100%;
  border-radius: 5px; /* Coins arrondis */
  display: block;
}

/* utilsateur & admin design */
/* Sidebar styles */
.sidebar {
  background-color: #000;
  color: #fff;
  height: 100vh;
  position: fixed;
  width: 260px;
  left: 0;
  top: 0;
  overflow-y: auto;
  z-index: 100;
  box-shadow: 2px 0 5px rgba(0,0,0,0.1);
}

.logo-container {
  padding: 20px;
  border-bottom: 1px solid #333;
}

.logo {
  max-width: 180px;
}

.nav-menu {
  padding: 15px 0;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 12px 20px;
  transition: all 0.3s;
  border-left: 4px solid transparent;
}

.nav-menu a:hover, .nav-menu a.active {
  background-color: #222;
  border-left: 4px solid #FFC107;
}

.nav-menu i {
  margin-right: 10px;
}

.disconnect-btn {
  position: absolute;
  bottom: 20px;
  width: 90%;
  margin: 0 5%;
}

/* Main content area */
.main-content {
  margin-left: 260px;
  padding: 20px 30px;
  min-height: 100vh;
  transition: all 0.3s;
}

/* Cards styling */
.content-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 25px;
  margin-bottom: 20px;
}

.card-title {
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
}

/* Form elements styling */
.form-label {
  font-weight: 500;
  color: #555;
  margin-bottom: 8px;
}

.form-control, .form-select {
  border-radius: 6px;
  padding: 10px 15px;
  border: 1px solid #ddd;
  transition: all 0.3s;
}

.form-control:focus, .form-select:focus {
  border-color: #FFC107;
  box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
}

textarea.form-control {
  min-height: 120px;
}

/* Table styling */
.table-container {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.table {
  margin-bottom: 0;
}

.table-dark {
  background-color: #212529;
}

.table th {
  font-weight: 600;
  padding: 15px;
  vertical-align: middle;
}

.table td {
  padding: 15px;
  vertical-align: middle;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0,0,0,0.02);
}

/* Buttons styling */
.btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-warning {
  background-color: #FFC107;
  border-color: #FFC107;
  color: #212529;
}

.btn-warning:hover {
  background-color: #e0a800;
  border-color: #e0a800;
}

.btn-success {
  background-color: #28a745;
  border-color: #28a745;
}

.btn-success:hover {
  background-color: #218838;
  border-color: #218838;
}

.btn-danger {
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-danger:hover {
  background-color: #c82333;
  border-color: #c82333;
}

/* Image preview */
.img-preview {
  max-width: 200px;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.img-kare {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
}

/* Dropdown styling */
.dropdown-menu {
  padding: 8px 0;
  border: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-radius: 6px;
}

.dropdown-item {
  padding: 8px 20px;
  transition: all 0.2s;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
}

.dropdown-divider {
  margin: 8px 0;
  border-top: 1px solid #eee;
}

/* Page header */
.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}


/* Page coach */

        .coachero-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, #8b5cf6 100%);
            color: white;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .coachero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23ffffff10" points="0,1000 1000,800 1000,1000"/></svg>');
            background-size: cover;
        }

        .coachero-content {
            position: relative;
            z-index: 2;
        }

        .btn-primary-custom {
            background: var(--secondary-color);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn-primary-custom:hover {
            background: #d97706;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        .feature-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), #8b5cf6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            color: white;
        }

        .stats-section {
            background: var(--dark-color);
            color: white;
            padding: 60px 0;
        }

        .stat-item {
            text-align: center;
            margin-bottom: 30px;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--secondary-color);
        }

        .process-step {
            text-align: center;
            margin-bottom: 30px;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 20px;
        }

        .testimonial-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            text-align: center;
        }

        .testimonial-avatar {
            width: 80px;
            height: 80px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 2rem;
        }

        .cta-section {
            background: var(--light-bg);
            padding: 80px 0;
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }

        .floating-element {
            position: absolute;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .earnings-highlight {
            background: linear-gradient(135deg, var(--success-color), #059669);
            color: white;
            padding: 15px 25px;
            border-radius: 10px;
            display: inline-block;
            margin: 10px 0;
            font-weight: 600;
            font-size: 1.1rem;
        }

/* Page coach */

/* utilsateur & admin design */

@media (min-width: 320px) and (max-width: 440px){

  /* acceuil */
  .menu-principal .nav-link{
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    transition: all ease 0.2s;
    font-size: 14px;
}
/* Le col-8 a une hauteur définie */
.col-container {
  position: relative;
  height: 50vh; /* Détermine la hauteur globale */
  padding: 0;
}

/* Le carousel prend 100% du parent (col-8) */
.carousel {
  width: 100%;
  height: 100%;
}

/* Le carousel-inner suit la hauteur du carousel */
.carousel-inner {
  width: 100%;
  height: 100%;
}

/* Les items du carousel occupent toute la place */
.carousel-item {
  width: 100%;
  height: 100%;
}

/* Les images remplissent totalement le carousel sans se déformer */
.carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contenu (slogan + recherche) centré */
.overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
  width: 80%;
}

/* Formulaire de recherche */
.search-form {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.search-input {
  padding: 10px;
  border: none;
  border-radius: 5px 0 0 5px;
  width: 250px;
}

.search-btn {
  background: #ff6600;
  border: none;
  color: white;
  padding: 10px 15px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}

.home-headline{
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
}
.home-intro{
  font-size: 14px;
}

.masonry-grid {
  column-count: 2; /* Nombre de colonnes */
  column-gap: 10px; /* Espacement entre les colonnes */
}

.masonry-item {
  display: inline-block;
  width: 100%;
  margin-bottom: 10px; /* Espacement vertical */
}

.masonry-item img {
  width: 100%;
  border-radius: 5px; /* Coins arrondis */
  display: block;
}

.abonnement-bg-headline{
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
}
.abonnement-bg-intro{
  font-size: 16px;
}

.galerie-section-headline{
  color: #DE7F06;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
}

/* acceuil */



}