/* =========================
   Global iOS Design
========================= */

body {
    background: linear-gradient(135deg, #ece9ff, #f7f5ff);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
}

/* Empêche tout impact sur le header */
.apropos-wrapper {
    padding-top: 20px;
}

/* Corrige les liens soulignés */
.apropos-wrapper a {
    text-decoration: none !important;
    color: inherit;
}

.apropos-container {
    max-width: 880px;
    margin: 40px auto;
    padding: 25px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #4c2ccf;
    text-align: center;
    margin-bottom: 22px;
}

/* Dynamic Island style blocks */
.dynamic-block {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    border-radius: 30px;
    padding: 24px;
    margin-bottom: 32px;
    box-shadow: 0 4px 20px rgba(80, 60, 160, 0.08);
}

/* Cards slider */
.cards-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
}

.card-ios {
    min-width: 240px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 4px 14px rgba(90, 50, 200, 0.12);
    scroll-snap-align: start;
}

.card-ios h3 {
    font-size: 1.15rem;
    color: #5a2fe3;
}

/* Contact form */
.imessage-form input,
.imessage-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 12px;
    background: #ffffff;
    border: 1px solid #dcd3ff;
    border-radius: 18px;
    font-size: 1rem;
}

#send-btn {
    width: 100%;
    padding: 14px;
    background: #4c2ce4;
    color: white;
    border-radius: 20px;
}

.success-banner {
    display: none;
    background: #e6f8ee;
    color: #0a7d35;
    padding: 14px;
    border-radius: 16px;
    margin-top: 12px;
}

