@import url(‘https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap’);

:root {
–main: #934150;
–light: #f5e9ec;
–dark: #2b1b1f;
–accent: #99582a;
–yellow: #ffe6a7;
}

/* Force le style sur tout le corps de la page d’accueil */
body.home {
font-family: ‘Poppins’, sans-serif !important;
background: #fff !important;
color: #333 !important;
line-height: 1.6 !important;
margin: 0 !important;
padding: 0 !important;
}

/* En-tête */
.custom-portfolio-header {
background: var(–main) !important;
color: white !important;
padding: 4rem 2rem !important;
text-align: center !important;
width: 100% !important;
margin: 0 !important;
}
.custom-portfolio-header h1 { font-size: 2.8rem !important; margin-bottom: 0.5rem !important; color: white !important; }
.custom-portfolio-header h2 { font-weight: 300 !important; font-size: 1.5rem !important; opacity: 0.9 !important; color: white !important; }
.custom-portfolio-header p { margin-top: 1rem !important; font-size: 1.1rem !important; opacity: 0.8 !important; color: white !important; }

/* Sections */
.custom-portfolio-section { padding: 4rem 10% !important; display: block !important; }
.custom-portfolio-section h3 { color: var(–main) !important; margin-bottom: 1.5rem !important; font-size: 2rem !important; text-align: center !important; }
.custom-portfolio-section h4 { color: var(–dark) !important; margin-bottom: 0.5rem !important; }

/* Grille et Cartes */
.custom-grid {
display: grid !important;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
gap: 2rem !important;
margin-top: 2rem !important;
}
.custom-card {
background: var(–light) !important;
padding: 2rem !important;
border-radius: 12px !important;
box-shadow: 0 4px 6px rgba(0,0,0,0.05) !important;
transition: transform 0.2s !important;
display: block !important;
}
.custom-card:hover { transform: translateY(-5px) !important; }
.custom-tag {
display: inline-block !important;
background: var(–main) !important;
color: white !important;
padding: 0.3rem 0.7rem !important;
border-radius: 20px !important;
font-size: 0.75rem !important;
margin: 0.2rem !important;
font-weight: bold !important;
}

/* Timeline */
.timeline-section-bg { background-color: var(–yellow) !important; }
.custom-timeline-item {
background: white !important;
padding: 1.5rem !important;
margin-bottom: 1.5rem !important;
border-radius: 8px !important;
border-left: 5px solid var(–main) !important;
}
.custom-timeline-date { font-size: 0.9rem !important; color: #666 !important; font-style: italic !important; margin-bottom: 0.5rem !important; display: block !important; }

/* Pied de page */
.custom-portfolio-footer {
background: var(–dark) !important;
color: white !important;
text-align: center !important;
padding: 3rem 2rem !important;
width: 100% !important;
}
.custom-portfolio-footer a { color: white !important; text-decoration: none !important; margin: 0 10px !important; font-size: 1.1rem !important; }
.custom-portfolio-footer a:hover { text-decoration: underline !important; }

/* Mobile */
@media (max-width: 768px) {
.custom-portfolio-header h1 { font-size: 2rem !important; }
.custom-portfolio-section { padding: 3rem 5% !important; }
.custom-grid { grid-template-columns: 1fr !important; }
}