.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('../images/fond_entrepot.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 2rem;
    color: var(--text-light);
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.logo-link:hover {
    opacity: 0.9;
}

.logo {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
}

.logo-separator {
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 600;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

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

.flex-column {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    width: auto;
}

.btn-primary {
    background: var(--primary);
    color: var(--text-light);
}

.btn-primary:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-primary-outline:hover {
    border: 2px solid var(--primary);
    background: var(--text-light);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--text-light);
    color: var(--text-light);
}

.btn-outline:hover {
    background: var(--text-light);
    color: var(--primary);
    transform: translateY(-2px);
}

.features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature {
    text-align: center;
    padding: 2rem 1rem;
    background: #fff;
    color: #000;
    backdrop-filter: blur(10px);
    border-radius: 10px;
    width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 190px; /* Hauteur fixe pour uniformiser les boîtes */
}

.feature i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.feature h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feature p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.bg-primary-button {
    line-height: 1.6;
    background: rgba(107, 114, 128, 1);
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    border-color: #e5e7eb;
    border-style: solid;
    border-width: 0;
    box-sizing: border-box;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
    cursor: pointer;
    text-decoration: none;
    font-size: 100%;
    line-height: inherit;
    margin:0;
}

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

.bg-secondary-button {
    color: #fff;
    text-decoration-line: underline;
    font-size: 0.875rem;
    line-height:1.25rem;
    border-radius:0.375rem;
    border-color: #e5e7eb;
    border-style: solid;
    border-width: 0;
    cursor:pointer;
    background-color:transparent;
    background-image:none;
    text-transform:none;
}

@media (max-width: 768px) {
    .features {
        flex-direction: column;
        align-items: center;
    }

    .hero {
        padding: 2rem 1rem;
    }
}