.create-hero {
background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);

    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 5rem 1rem;
}

.create-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.create-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
/* Options de projet */
.project-options {
    background-color: var(--light-color);
    padding: 4rem 1rem;
}

.project-options h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
    position: relative;
}

.project-options h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.option-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 350px;
    margin: 2rem auto;
}

.option-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.option-icon {
    width: 100%;
    height: 80px;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.option-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.option-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.option-card p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;  
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    min-height: 4.5em; /* pour garder la hauteur même si c'est court */
    margin-bottom: 1.5rem;
}
.btn-secondary {
    display: inline-block;
    padding: 8px 20px;
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    transition: var(--transition);
    text-align: center;
    font-weight: bold;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}


.option-image {
    width: 100%;
    aspect-ratio: 3/1; /* ou ajuste selon ton image */
    overflow: hidden;
    background: #eee;
    margin-bottom: 1.5rem;
}

.option-image img {
    width: 100%;
    height: 100%;
    object-fit:contain;
    display: block;
}