@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Sora', sans-serif;
    background: #FFFDF5;
    overflow-x: hidden;
}

:root {
    --yellow: #FFD700;
    --yellow-dark: #E6A800;
    --yellow-light: #FFF2CC;
    --dark: #1A1A2E;
    --gray: #F5F5F0;
    --text: #333;
    --text-light: #666;
}

/* FORMES FLOTTANTES */
.floating-shape {
    position: fixed;
    z-index: -1;
    pointer-events: none;
    opacity: 0.06;
}
.shape-1 { top: 10%; left: -50px; width: 300px; height: 300px; background: var(--yellow); border-radius: 50%; animation: float1 20s infinite; }
.shape-2 { bottom: 20%; right: -80px; width: 400px; height: 400px; background: var(--yellow-dark); border-radius: 50%; animation: float2 25s infinite; }
.shape-3 { top: 50%; left: 30%; width: 200px; height: 200px; background: var(--yellow); border-radius: 50%; animation: float3 18s infinite; }

@keyframes float1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(50px,-40px); } }
@keyframes float2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-40px,50px); } }
@keyframes float3 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(30px,30px); } }

/* NAVIGATION */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.navbar .container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.logo-image { height: 95px; width: auto; margin: -15px 0; }
.nav-links { display: flex; gap: 2rem; flex-wrap: wrap; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text); font-weight: 500; }
.nav-links a:hover { color: var(--yellow-dark); }
.btn-nav { background: var(--yellow-dark); padding: 0.6rem 1.8rem; border-radius: 40px; color: white !important; font-weight: 600; }

/* HERO */
.hero {
    min-height: 75vh;
    display: flex;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #FFF8E7, #FFF2CC);
    padding-top: 100px;
    padding-bottom: 40px;
}
.hero .container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.hero h1 { font-size: 3rem; font-weight: 800; color: var(--dark); }
.hero h1 span { color: var(--yellow-dark); }
.hero p { font-size: 1.2rem; color: var(--text-light); margin: 1rem auto; }
.hero-search-group { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.hero-search-group select, .hero-search-group input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    background: white;
    border-radius: 60px;
    font-family: 'Sora', sans-serif;
}
.hero-search-btn {
    background: var(--dark);
    padding: 0.8rem 1.5rem;
    border-radius: 60px;
    color: white;
    font-weight: 600;
    border: none;
    cursor: pointer;
}
.hero-stats { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-top: 2rem; }
.stat-item { background: white; padding: 0.6rem 1.5rem; border-radius: 40px; text-align: center; }
.stat-number { font-size: 1.5rem; font-weight: 800; color: var(--yellow-dark); }

/* CATÉGORIES POPULAIRES – GRILLE */
.categories-section { padding: 4rem 1rem; background: white; }
.section-title { text-align: center; font-size: 2rem; margin-bottom: 0.5rem; }
.section-title span { color: var(--yellow-dark); }
.categories-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}
.category-card {
    flex: 0 0 auto;
    background: var(--gray);
    padding: 1rem 1rem;
    border-radius: 24px;
    min-width: 110px;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
}
.category-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.category-icon { font-size: 2rem; display: block; margin-bottom: 0.5rem; }
.category-card h3 {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--dark);
    white-space: normal;
    word-break: keep-all;
}

/* PROFIL – AVEC BONNE PHOTO */
.profile-container {
    max-width: 1000px;
    margin: 100px auto 30px;
    background: white;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.cover-area {
    height: 220px;
    background: linear-gradient(135deg, #FFD700, #FFC107);
    position: relative;
    overflow: hidden;
}
.cover-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.avatar-area {
    position: absolute;
    bottom: -50px;
    left: 30px;
}
.avatar-circle {
    width: 130px;
    height: 130px;
    background: white;
    border-radius: 50%;
    padding: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center center;
    background: #FFC107;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}
.profile-content {
    padding: 70px 30px 30px 30px;
}
.profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.stars-large {
    font-size: 1.4rem;
    letter-spacing: 3px;
    color: #FFD700;
    margin-bottom: 0.5rem;
}
.info-card {
    background: #f8f8f8;
    border-radius: 24px;
    padding: 1.2rem;
    margin: 1rem 0;
}
.info-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}
.info-row i {
    width: 28px;
    color: #E6A800;
}
.section-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 24px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}
.form-avis-modern {
    background: #fff8e7;
    border-radius: 28px;
    padding: 1.5rem;
    border: 1px solid #FFD700;
}
.form-avis-modern input,
.form-avis-modern select,
.form-avis-modern textarea {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 40px;
    padding: 0.7rem 1rem;
    width: 100%;
    margin-bottom: 1rem;
    font-family: 'Sora', sans-serif;
}
.form-avis-modern button {
    background: #E6A800;
    border: none;
    border-radius: 60px;
    padding: 0.7rem;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    color: white;
    transition: 0.3s;
}
.form-avis-modern button:hover {
    background: #c99500;
}
.contact-btn {
    background: #E6A800;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
}

/* RESPONSIVE PROFIL */
@media (max-width: 768px) {
    .cover-area { height: 140px; }
    .avatar-circle { width: 90px; height: 90px; bottom: -40px; left: 20px; }
    .avatar-img { font-size: 2rem; }
    .profile-content { padding: 60px 20px 20px; }
    .stars-large { font-size: 1rem; }
    .profile-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

/* PROS / GRID */
.pros-section { padding: 4rem 1rem; background: var(--gray); }
.pros-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.pro-card { background: white; border-radius: 24px; overflow: hidden; text-align: center; box-shadow: 0 5px 10px rgba(0,0,0,0.05); }
.pro-card-img { height: 110px; background: linear-gradient(135deg, var(--yellow-dark), #c99500); display: flex; align-items: center; justify-content: center; }
.pro-card-img img { width: 70px; height: 70px; border-radius: 50%; object-fit: cover; border: 2px solid white; }
.pro-card-content { padding: 1rem; }
.pro-card-title { font-size: 1rem; font-weight: 700; }
.btn-view { background: var(--yellow-dark); color: white; padding: 0.4rem 1rem; border-radius: 40px; text-decoration: none; font-size: 0.8rem; display: inline-block; margin-top: 0.5rem; }

/* CTA + FOOTER */
.cta-section { background: var(--dark); padding: 3rem 1rem; text-align: center; color: white; }
.btn-cta { background: var(--yellow-dark); color: var(--dark); padding: 0.7rem 1.5rem; border-radius: 40px; text-decoration: none; font-weight: 700; display: inline-block; }
.footer { background: #1a1a1a; color: #888; padding: 1.5rem; text-align: center; font-size: 0.8rem; }