/* Variables de couleur */
:root {
    /* Couleurs primaires */
    --primary-50: #f2faf6;
    --primary-100: #e6f5ec;
    --primary-200: #c3e7d4;
    --primary-300: #9fd9bc;
    --primary-400: #7acba4;
    --primary-500: #56bd8c;
    --primary-600: #46a577;
    --primary-700: #388862;
    --primary-800: #2a6b4d;
    --primary-900: #24523a;

    /* Couleurs secondaires */
    --secondary-50: #fefdf9;
    --secondary-100: #fcf8ed;
    --secondary-200: #f8f0d5;
    --secondary-300: #f3e7bb;
    --secondary-400: #e9d993;
    --secondary-500: #fee1c4;
    --secondary-600: #b8a853;
    --secondary-700: #93863f;
    --secondary-800: #6e632d;
    --secondary-900: #49401b;

    /* Neutres */
    --neutral-50: #f9f9f9;
    --neutral-100: #f0f0f0;
    --neutral-200: #dcdcdc;
    --neutral-300: #c2c2c2;
    --neutral-400: #9f9f9f;
    --neutral-500: #7a7a7a;
    --neutral-600: #5c5c5c;
    --neutral-700: #434343;
    --neutral-800: #2a2a2a;
    --neutral-900: #141414;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans', sans-serif;
    color: var(--neutral-700);
    line-height: 1.5;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    background-color: white;
    transition: all 0.3s;
}

/* Typographie */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.25rem;
}

h2 {
    font-size: 1.875rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin: 0;
}

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

ul {
    list-style: none;
}

.pl-1 {
    padding-left: 1em;
}

.list-decimal {
    list-style: decimal;
}

.list-disc {
    list-style: disc;
}


/* Utilitaires de mise en page */
.container {
    width: 100%;
    /* max-width: 72rem; */
    /* 6xl = 72rem */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.grid {
    display: grid;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.space-y-4>*+* {
    margin-top: 1rem;
}

.space-y-6>*+* {
    margin-top: 1.5rem;
}

.space-y-12>*+* {
    margin-top: 3rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.text-center {
    text-align: center;
}

.text-start {
    text-align: left;
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: transparent;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--neutral-500);
}

nav ul {
    display: flex;
    gap: 2.5rem;
    justify-content: flex-end;
    font-size: 0.875rem;
}

nav a {
    transition: all 0.3s ease-in-out;
    color: #141414;
}

nav a:hover:not(.active, .contact-btn) {
    color: var(--primary-900);
}

nav a.active {
    color: var(--primary-900);
    font-weight: 600;
}

.contact-btn {
    background-color: var(--primary-900);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    transition: all 0.3s;
}

.contact-btn:hover {
    background-color: var(--primary-700);
}

.floating-button {
    position: fixed;
    display: flex;
    gap: 0.5em;
    align-items: center;
    right: 0rem;
    bottom: 10em;
    z-index: 100;
    background-color: rgba(36, 82, 58, 0.8);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem 0 0 0.375rem;
    font-size: 0.875rem;
    transition: all 0.3s;
    border-style: solid;
    border-color: var(--primary-900);
    border-right: none;
}

.footer-logo {
    height: 8em;
    width: 8em;
    margin-bottom: 1em;
}

.footer-logo img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Logo */
.logo {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 7rem;
    width: 7rem;
}

.logo img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

/* Bannière */
.banner {
    height: 600px;
    width: 100%;
    object-fit: cover;
}

.section-heading {
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    text-align: center;
    color: var(--neutral-500);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--neutral-700);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--neutral-600);
    max-width: 48rem;
    margin: 0 auto 3rem auto;
    text-align: center;
}

/* Cartes de service */
.service-card {
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid var(--neutral-100);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Hero section et sections spécifiques de l'atelier de chaussage */
.hero-section {
    position: relative;
    width: 100%;
    margin: 0 auto;
    height: 600px;
    background-color: var(--neutral-700);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to right, rgba(28, 78, 56, 0.6), rgba(20, 20, 20, 0.6));
    z-index: 0;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.75;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 0 1rem;
    color: white;
}

.hero-heading {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subheading {
    font-size: 1.25rem;
    max-width: 48rem;
}

@media (min-width: 768px) {
    .hero-heading {
        font-size: 3rem;
    }

    .hero-subheading {
        font-size: 1.5rem;
    }
}

.hero-button {
    margin-top: 2rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-600);
    color: white;
    font-weight: 500;
    border-radius: 0.375rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.hero-button:hover {
    background-color: var(--primary-700);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Style pour les étapes de l'atelier */
.step-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--neutral-100);
    transition: box-shadow 0.3s;
}

.step-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary-100);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.step-number span {
    color: var(--primary-700);
    font-weight: 700;
    font-size: 1.25rem;
}

/* Style pour les options de rendez-vous */
.appointment-card {
    border: 1px solid var(--neutral-200);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.appointment-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.appointment-card.featured {
    border-color: var(--primary-200);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.appointment-card.featured:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.appointment-header {
    background-color: var(--neutral-50);
    padding: 1rem;
    border-bottom: 1px solid var(--neutral-200);
    transition: background-color 0.3s;
}

.appointment-card:hover .appointment-header {
    background-color: var(--primary-50);
}

.appointment-card.featured .appointment-header {
    background-color: var(--primary-50);
}

.appointment-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-500);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-bottom-left-radius: 0.5rem;
}

.appointment-content {
    padding: 1.5rem;
}

.appointment-features {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.appointment-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.appointment-feature i {
    margin-top: 0.25rem;
    margin-right: 0.5rem;
}

.appointment-feature.available i {
    color: var(--secondary-500);
}

.appointment-feature.unavailable {
    color: var(--neutral-400);
}

.appointment-note {
    font-size: 0.875rem;
    font-style: italic;
    color: var(--primary-600);
    margin-top: 1rem;
}

.appointment-button {
    width: 100%;
    display: inline-block;
    text-align: center;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: all 0.3s;
}

.appointment-button.primary {
    background-color: var(--primary-600);
    color: white;
}

.appointment-button.primary:hover {
    background-color: var(--primary-700);
}

.appointment-button.secondary {
    background-color: var(--neutral-100);
    color: var(--primary-700);
}

.appointment-button.secondary:hover {
    background-color: var(--primary-100);
}

/* Style pour les FAQ */
.faq-card {
    border-radius: 0.75rem;
    border: 1px solid var(--neutral-100);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.faq-card.primary {
    background-color: var(--primary-500);
}

.faq-card.primary .faq-title,
.faq-card.primary .faq-text {
    color: white;
}

.faq-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s;
}

.faq-card:hover .faq-icon {
    transform: rotate(6deg);
}

.faq-card.primary .faq-icon {
    background-color: white;
}

.faq-card:not(.primary) .faq-icon {
    background-color: var(--primary-50);
}

.faq-icon i {
    color: var(--primary-600);
    font-size: 1.25rem;
}

.faq-content {
    padding: 1.5rem;
    position: relative;
}

.faq-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    padding-right: 2rem;
}

.faq-text {
    font-size: 1rem;
}

/* Style pour les sections CTA */
.cta-section {
    background-color: var(--primary-600);
    color: white;
    padding: 4rem 1rem;
    text-align: center;
}

.cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-text {
    max-width: 32rem;
    margin: 0 auto 2rem auto;
    color: var(--primary-100);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.cta-button {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 0.375rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.cta-button.primary {
    background-color: white;
    color: var(--primary-700);
}

.cta-button.primary:hover {
    background-color: var(--primary-50);
}

.cta-button.secondary {
    background-color: var(--primary-700);
    color: white;
}

.cta-button.secondary:hover {
    background-color: var(--primary-800);
}

/* Styles pour le hero à l'atelier de chaussage */
.leading-tight {
    line-height: 1.25;
}

.leading-relaxed {
    line-height: 1.625;
}

.service-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-icon.primary {
    background-color: var(--primary-50);
    color: var(--primary-500);
}

.service-icon.secondary {
    background-color: rgba(252, 248, 237, 0.7);
    color: var(--secondary-500);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.service-title.primary {
    color: var(--primary-500);
}

.service-title.secondary {
    color: var(--secondary-500);
}

/* Cartes de formation */
.formation-card {
    height: 220px;
    background-color: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid var(--neutral-100);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.formation-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.formation-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: var(--primary-50);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s;
}

.formation-card:hover .formation-icon {
    transform: rotate(6deg);
}

.formation-icon i {
    color: var(--primary-600);
    font-size: 1.25rem;
}

.badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.badge.completed {
    background-color: var(--primary-50);
    color: var(--primary-700);
}

.badge.in-progress {
    background-color: var(--secondary-100);
    color: var(--secondary-800);
}

.pulse {
    display: inline-block;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: var(--secondary-500);
    margin-right: 0.25rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(222, 203, 107, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(222, 203, 107, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(222, 203, 107, 0);
    }
}

/* Témoignages */
.testimonial {
    background-color: var(--neutral-50);
    padding: 1.5rem;
    border-radius: 0.75rem;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -1rem;
    left: -1rem;
    color: var(--primary-200);
    font-size: 6rem;
    z-index: 0;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-text {
    color: var(--neutral-600);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: var(--primary-100);
    color: var(--primary-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 1rem;
}

.author-name {
    font-weight: 500;
    color: var(--neutral-700);
}

.author-info {
    color: var(--neutral-500);
    font-size: 0.875rem;
}

/* Footer */
footer {
    background-color: var(--primary-900);
    color: white;
    padding: 4rem 0;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--secondary-500);
}

.footer-text {
    color: var(--neutral-300);
    font-size: 0.875rem;
}

.footer-link {
    color: var(--neutral-300);
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--secondary-300);
}

.footer-icon {
    color: var(--primary-400);
    margin-right: 0.75rem;
}

.footer-social {
    background-color: var(--primary-800);
    color: var(--primary-300);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.footer-social:hover {
    background-color: var(--primary-700);
    color: var(--secondary-400);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--primary-800);
    color: var(--neutral-400);
    font-size: 0.875rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-bottom a {
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: var(--secondary-300);
}

.text-underliner {
    border: 3px solid var(--secondary-500);
    width: 9%;
    margin-top: 1em;
}

.text-left {
    text-align: left !important;
}

/* Responsive */
@media (min-width: 768px) {
    .grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .md\:flex-row {
        flex-direction: row;
    }

    .md\:items-start {
        align-items: flex-start;
    }

    .md\:text-left {
        text-align: left !important;
    }

    .md\:text-5xl {
        font-size: 3rem;
    }

    .md\:text-2xl {
        font-size: 1.5rem;
    }

    .md\:w-1\/2 {
        width: 50%;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-bottom>*:first-child {
        margin-bottom: 0;
    }
}

/* Utilitaires divers */
.text-white {
    color: #fff
}

.bg-white {
    background-color: white;
}

.bg-neutral-50 {
    background-color: var(--neutral-50);
}

.bg-neutral-100 {
    background-color: var(--neutral-100);
}

.bg-primary-50 {
    background-color: var(--primary-50) !important;
}

.bg-primary-100 {
    background-color: var(--primary-100);
}

.bg-primary-500 {
    background-color: var(--primary-500);
}

.bg-primary-600 {
    background-color: var(--primary-600);
}

.bg-primary-700 {
    background-color: var(--primary-700);
}

.bg-primary-800 {
    background-color: var(--primary-800);
}

.bg-primary-900 {
    background-color: var(--primary-900);
}

.bg-secondary-100 {
    background-color: var(--secondary-100);
}

.bg-secondary-400 {
    background-color: var(--secondary-400);
}

.bg-secondary-500 {
    background-color: var(--secondary-500);
}

.text-white {
    color: white;
}

.text-primary-300 {
    color: var(--primary-300);
}

.text-primary-400 {
    color: var(--primary-400);
}

.text-primary-500 {
    color: var(--primary-500);
}

.text-primary-600 {
    color: var(--primary-600);
}

.text-primary-700 {
    color: var(--primary-700);
}

.text-primary-900 {
    color: var(--primary-900);
}

.text-secondary-300 {
    color: var(--secondary-300);
}

.text-secondary-400 {
    color: var(--secondary-400);
}

.text-secondary-500 {
    color: var(--secondary-500);
}

.text-secondary-600 {
    color: var(--secondary-600);
}

.text-secondary-800 {
    color: var(--secondary-800);
}

.text-neutral-300 {
    color: var(--neutral-300);
}

.text-neutral-400 {
    color: var(--neutral-400);
}

.text-neutral-500 {
    color: var(--neutral-500);
}

.text-neutral-600 {
    color: var(--neutral-600);
}

.text-neutral-700 {
    color: var(--neutral-700);
}

.font-normal {
    font-weight: 400;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.text-xs {
    font-size: 0.75rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-base {
    font-size: 1rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.text-5xl {
    font-size: 3rem;
}

.text-6xl {
    font-size: 3.75rem;
}

.uppercase {
    text-transform: uppercase;
}

.italic {
    font-style: italic;
}

.rounded {
    border-radius: 0.25rem;
}

.rounded-md {
    border-radius: 0.375rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-full {
    border-radius: 9999px;
}

.rounded-bl-lg {
    border-bottom-left-radius: 0.5rem;
}

.border {
    border-width: 1px;
    border-style: solid;
}

.border-t {
    border-top-width: 1px;
}

.border-b {
    border-bottom-width: 1px;
}

.border-neutral-100 {
    border-color: var(--neutral-100);
}

.border-primary-200 {
    border-color: var(--primary-200);
}

.border-primary-800 {
    border-color: var(--primary-800);
}

.border-neutral-200 {
    border-color: var(--neutral-200);
}

.shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.hover\:shadow-lg:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.hover\:shadow-xl:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.p-4 {
    padding: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.p-12 {
    padding: 3rem;
}

.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.px-3 {
    padding-inline: 0.5em;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.pt-6 {
    padding-top: 1.5rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.py-2 {
    padding-block: 0.5em;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-64 {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.pt-4 {
    padding-top: 1rem;
}

.pt-8 {
    padding-top: 2rem;
}

.pb-3 {
    padding-bottom: 0.75rem;
}

.pb-4 {
    padding-bottom: 1rem;
}

.pb-6 {
    padding-bottom: 1.5em;
}

.pb-16 {
    padding-bottom: 4rem;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mr-1 {
    margin-right: 0.25rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.mr-3 {
    margin-right: 0.75rem;
}

.mr-4 {
    margin-right: 1rem;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-10 {
    margin-top: 2.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-12 {
    margin-top: 3rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mx-8 {
    margin-left: 2rem;
    margin-right: 2rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-6xl {
    max-width: 72rem;
}

.w-10 {
    width: 2.5rem;
}

.w-12 {
    width: 3rem;
}

.w-16 {
    width: 4rem;
}

.w-20 {
    width: 5rem;
}

.w-32 {
    width: 8rem;
}

.w-full {
    width: 100%;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.h-2 {
    height: 0.5rem;
}

.h-10 {
    height: 2.5rem;
}

.h-12 {
    height: 3rem;
}

.h-16 {
    height: 4rem;
}

.h-20 {
    height: 5rem;
}

.h-32 {
    height: 8rem;
}

.h-full {
    height: 100%;
}

.h-\[220px\] {
    height: 220px;
}

.h-\[500px\] {
    height: 500px;
}

.h-\[600px\] {
    height: 600px;
}

.h-\[700px\] {
    height: 43.75rem;
}

.object-cover {
    object-fit: cover;
}

.object-contain {
    object-fit: contain;
}

.object-top {
    object-position: top;
}

.opacity-0 {
    opacity: 0;
}

.overflow-hidden {
    overflow: hidden;
}

.whitespace-nowrap {
    white-space: nowrap;
}

.grayscale {
    filter: grayscale(100%);
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.transition-colors {
    transition-property: color, background-color, border-color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.transition-shadow {
    transition-property: box-shadow;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.duration-300 {
    transition-duration: 300ms;
}

.ease-in-out {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.hover\:bg-primary-100:hover {
    background-color: var(--primary-100);
}

.hover\:bg-primary-700:hover {
    background-color: var(--primary-700);
}

.hover\:bg-primary-50:hover {
    background-color: var(--primary-50);
}

.hover\:bg-primary-800:hover {
    background-color: var(--primary-800);
}

.hover\:text-primary-400:hover {
    color: var(--primary-400);
}

.hover\:text-primary-600:hover {
    color: var(--primary-600);
}

.hover\:text-secondary-300:hover {
    color: var(--secondary-300);
}

.hover\:text-secondary-400:hover {
    color: var(--secondary-400);
}

.hover\:-translate-y-1:hover {
    transform: translateY(-0.25rem);
}

.transform {
    transform: translateZ(0);
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.sticky {
    position: sticky;
}

.fixed {
    position: fixed;
}

.top-0 {
    top: 0;
}

.top-4 {
    top: 1rem;
}

.right-0 {
    right: 0;
}

.right-4 {
    right: 1rem;
}

.top-\-4 {
    top: -1rem;
}

.left-\-4 {
    left: -1rem;
}


.z-0 {
    z-index: 0;
}

.z-1 {
    z-index: 1;
}

.z-10 {
    z-index: 10;
}

/* Section témoignages - classe supplémentaire */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Classes pour le layout */
.inline-flex {
    display: inline-flex;
}

.inline-block {
    display: inline-block;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-1 {
    flex: 1 !important
}

.items-start {
    align-items: flex-start;
}

.items-end {
    align-items: flex-end;
}

.justify-end {
    justify-content: flex-end;
}

.justify-around {
    justify-content: space-around;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-10 {
    gap: 2.5rem;
}

.gap-12 {
    gap: 3rem;
}

.gap-16 {
    gap: 4rem;
}

/* Gradients */
.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--primary-50), white);
}

.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--primary-900), var(--neutral-900));
}

/* Opacities */
.opacity-75 {
    opacity: 0.75;
}

/* For hero section backgrounds */
.from-primary-50-to-white {
    background-image: linear-gradient(to bottom right, var(--primary-50), white);
}

.from-neutral-50-via-primary-50-to-neutral-50 {
    background-image: linear-gradient(to bottom right, var(--neutral-50), var(--primary-50), var(--neutral-50));
}

.from-primary-900-60-to-neutral-900-60 {
    background-image: linear-gradient(to right, rgba(28, 78, 56, 0.6), rgba(20, 20, 20, 0.6));
}

/* Ajout des classes pour les grid cols */
.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.col-span-1 {
    grid-column: span 1 / span 1;
}

.col-span-2 {
    grid-column: span 2 / span 2;
}

.col-span-3 {
    grid-column: span 3 / span 3;
}

/* Tracking */
.tracking-\[\.5em\] {
    letter-spacing: .5em;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

/* Polices de caractères */
.font-montserrat {
    font-family: 'Montserrat', sans-serif;
}

.font-lato {
    font-family: 'Lato', sans-serif;
}

.font-noto {
    font-family: 'Noto Sans', sans-serif;
}

/* Animation */
.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.group:hover .group-hover\:rotate-6 {
    transform: rotate(6deg);
}

/* Styles supplémentaires pour iframe */
iframe {
    border: 0;
}

.stepper {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 1em;
    padding-block: 1em;
}

.stepper li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1em;
}

.stepper li span {
    width: 2em;
    height: 2em;
    border-radius: 50%;
    background-color: var(--primary-500);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stepper li>div {
    display: flex;
    align-items: center;
    gap: 1em;
}

.stepper li>.image {
    height: 25em;
    width: 45em;
    aspect-ratio: 1/2;
}

.stepper li>.image>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Classes CSS pour les media queries spécifiques */
@media (min-width: 640px) {
    .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sm\:flex-row {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .md\:grid-cols-5 {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .md\:col-span-1 {
        grid-column: span 1 / span 1;
    }

    .md\:col-span-2 {
        grid-column: span 2 / span 2;
    }

    .md\:p-12 {
        padding: 3rem;
    }

    .md\:mb-0 {
        margin-bottom: 0;
    }

    .md\:items-start {
        align-items: flex-start;
    }

    .md\:text-left {
        text-align: left;
    }

    .md\:flex-row {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.header-container {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    transition: all 0.15s ease-in-out;
}

.header-container.sticky {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 9999;
}

.header-container.sticky nav {
    color: var(--neutral-700) !important;
}

.button {
    padding: 0.75em;
    background: var(--primary-900);
    color: #fff;
    border-radius: 0.5em 0 0.5em 0;
}

#cancerologie {
    background: linear-gradient(to bottom, var(--neutral-50), transparent);
}

.image-container {
    height: 5em;
    width: 5em;
    border-radius: 100%;
    background-color: #fff;
    padding: 1em;
}

.image-container img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.avatar-container {
    width: 15em;
    height: 15em;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.banner-container {
    width: 80%;
    height: 100%;
}

.spinner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.spinner-ring {
    width: 48px;
    height: 48px;
    border: 5px solid rgba(0, 0, 0, 0.12);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}

/* respect user preference */
@media (prefers-reduced-motion: reduce) {
    .spinner-ring {
        animation: none;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}