/* styles.css */
@font-face {
    font-family: 'FuturaLT';
    src: url('fonts/FuturaLT.ttf') format('truetype');
    font-display: swap;
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Zarathos';
    src: url('fonts/Zarathos.otf') format('opentype');
    font-display: swap;
    font-weight: normal;
    font-style: normal;
}

/* Reset des styles de base */
body {
    font-family: 'FuturaLT', Arial, sans-serif !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Styles pour la navbar */
.navbar {
    font-family: 'FuturaLT', Arial, sans-serif !important;
    background-color: black;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar a {
    font-family: 'FuturaLT', Arial, sans-serif !important;
    text-transform: capitalize !important;
    font-weight: bold !important;
    color: white !important;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: #3b82f6 !important;
}

.navbar .separator {
    color: white;
    margin: 0 0.5rem;
    font-weight: bold;
}

.navbar .menu-mobile {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: black;
    padding: 20px;
    z-index: 50;
}

.navbar .menu-mobile.active {
    display: block;
}

/* Styles pour les titres */
h1, h2, h3, h4, h5, h6,
.text-4xl, .text-3xl, .text-2xl, .text-xl {
    font-family: 'Zarathos', sans-serif !important;
    letter-spacing: 1mm !important;
    text-transform: uppercase !important;
}

/* Styles pour les paragraphes et éléments de texte */
p, div, button, input, textarea, li {
    font-family: 'FuturaLT', Arial, sans-serif !important;
}

/* Styles pour les liens */
a {
    font-family: 'FuturaLT', Arial, sans-serif !important;
}

/* Styles pour les spans */
span {
    font-family: 'FuturaLT', Arial, sans-serif !important;
}

/* Exception pour h6 */
h6 {
    text-transform: none !important;
}

/* Styles pour la page Branding */
.branding-intro {
    padding: 4rem 0;
    text-align: center;
    background-color: #f8f9fa;
}

.branding-services {
    padding: 4rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.branding-process {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.process-steps {
    counter-reset: step;
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.process-steps li {
    position: relative;
    padding: 2rem;
    margin-bottom: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.process-steps li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: -2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    background: #007bff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.branding-benefits {
    padding: 4rem 0;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.benefits-list li {
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    padding-left: 2.5rem;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 1rem;
    color: #28a745;
    font-weight: bold;
}

.cta-section {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: white;
    color: #007bff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    margin-top: 1rem;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
}

