/* ============================================
   Solyan - Styles
   ============================================ */

body {
    font-family: "Inter", sans-serif;
    background: #f7f8fc;
    color: #1b1b1d;
}

/* ---- Navigation ---- */
.nav-blur {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

/* ---- Cards ---- */
.card {
    background: #ffffff;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.06);
}

/* ---- Effet de survol générique (cartes, images) ---- */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.06);
}

/* ---- Section titles ---- */
.section-eyebrow {
    width: 3rem;
    height: 4px;
    background: rgb(0 102 255);
    border-radius: 9999px;
    margin: 0 auto 1.5rem;
}

/* ---- Section bands (pleine largeur, sans coins arrondis) ---- */
.section-band {
    background: #f7f9ff;
}
.section-band-alt {
    background: #f1f4f9;
}

/* ---- Bouton primary ---- */
.btn-primary {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.35);
}

/* ---- Image zoom ---- */
.img-zoom {
    transition: transform 0.3s ease;
}
.img-zoom:hover {
    transform: scale(1.1);
}

/* ---- Formulaire de contact ---- */
.contact-card {
    background: #ffffff;
    border: 1px solid #e4e8f0;
    border-radius: 1.25rem;
    box-shadow: 0 8px 40px rgba(0, 40, 120, 0.06);
}

.form-input {
    width: 100%;
    background: #f7f8fc;
    border: 1px solid #d4d8e8;
    border-radius: 0.625rem;
    padding: 0.75rem 1rem;
    color: #1b1b1d;
    font-size: 0.9375rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-input:focus {
    border-color: rgb(0 102 255);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.12);
    background: #ffffff;
}
.form-input::placeholder {
    color: #9ea3b5;
}

/* ---- Alertes ---- */
.alert-success {
    background: #f0faf4;
    border: 1px solid #86efac;
    color: #166534;
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
}
.alert-error {
    background: #fff0f0;
    border: 1px solid #fca5a5;
    color: #991b1b;
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
}

/* ---- Footer ---- */
.footer-section-band-alt {
    background: #2d3135;
}
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    border: 1px solid #c8cedf;
    background: #f0f3fa;
    color: #414755;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.badge:hover {
    box-shadow: 0 4px 12px rgba(0, 88, 188, 0.12);
    transform: translateY(-1px);
}

/* ---- Footer dark ---- */
.badge-dark {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
    color: #9ca3af;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.2s ease, border-color 0.2s ease;
}
.badge-dark:hover {
    color: #ffffff;
    border-color: rgba(255,255,255,0.3);
}
