
:root {
    --primary: #162a46;
    --secondary: #7ba3d6;
    --accent: #ed6751;
    --light: #F8F9FA;
    --dark: #212529;
    --gray: #6C757D;
    --white: #ffffff;
    --yellow: #EDAD09;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    font-size: 62.5%;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--dark);
}

.custom-section {
    padding: 2rem;
    background-color: var(--white); /* Ejemplo de fondo para la sección */
    text-align: center;
}

.custom-title {
    font-family: 'Bakerie', sans-serif;
    font-size: 6.4rem; /* Ajusta el tamaño según lo necesario */
    color: var(--primary);
    line-height: 1.2;
}

/* Header & Navigation */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 80px;
}

.nav-menu {
    display: flex;
    gap: 3.2rem;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-size: 1.5rem;
    font-weight: 800;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--yellow);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 12.8rem 3.2rem 3.2rem;
    color: var(--primary);
    text-align: left;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

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

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    color: var(--white );
    font-size: 4rem;
    margin-bottom: 2.4rem;
    line-height: 1.2;
}

.hero p {
    font-size: 2rem;
    margin-bottom: 3.2rem;
}


/* promesse */
.promesse {
    padding: 6.4rem 2.4rem;
    background: var(--light);
}

.promesse-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.6rem;
}

.promesse-element {
    padding: 3.2rem;
    text-align: left; 
}

.promesse-image img {
    max-width: 100%;
    height: auto;
}

.promesse h1 {
    font-family: 'Montserrat', sans-serif;
    color: var(--secondary );
    font-size: 4.8rem;
    margin-bottom: 2.4rem;
    line-height: 1.1;
}

.promesse h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--accent );
    font-size: 3.2rem;
    margin-bottom: 2.4rem;
    line-height: 1.2;
}

.promesse h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--secondary );
    font-size: 2rem;
    margin-bottom: 0.32rem;
    line-height: 1;
}

.promesse p {
    font-size: 1.6rem;
}

.promesse ul li {
    display: flex;
    align-items: flex-start;
    margin-top: 20px;
}


/* Features */
.features {
    padding: 6.4rem 3.2rem;
    background: var(--light);
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3.2rem;
}

.feature-card {
    width: 100%;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
}

.feature-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.nos-produits {
    border: none;
    box-shadow: none;
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}
.nos-produits h2 {
    font-family: sans-serif;
    color: var(--primary);
    text-align: center;
    font-size: 3.2rem;
}
.feature-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 1.6rem;
}

.feature-card h3 {
    position: absolute;
    width: 100%;
    padding: 10px;
    margin: 0;
    bottom: 0;
    background-color: var(--secondary);
    text-align: center;
    color: var(--white);
    z-index: 1;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    
}

/* Stats */
.stats {
    padding: 6.4rem 3.2rem;
    background: var(--primary);
    color: white;
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 4rem;
    margin-bottom: 0.8rem;
}

/* Testimonials */
.testimonials {
    padding: 6.4rem 3.2rem;
    background: white;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 3.2rem;
    background: var(--light);
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

/* CTA */
.cta {
    padding: 6.4rem 3.2rem;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
    text-align: center;
}

.button {
    display: inline-block;
    padding: 1.6rem 3.2rem;
    background: var(--accent);
    color: var(--light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s;
}

.button:hover {
    transform: translateY(-3px);
    color: var(--light);
}

/* Partners */
.partners {
    padding: 6.4rem 3.2rem;
    background: white;
    text-align: center;
}

.partners-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 3.2rem;
    align-items: center;
}

/* Footer */
.footer {
    padding: 3.2rem;
    background: var(--dark);
    color: white;
    text-align: center;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

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