/* =====================================================
   Fun & Calm – Contact Culturovie  |  fcco-contact.css
   ===================================================== */

.fcco-contact {
    padding: 72px 48px;
    font-family: 'Mulish', sans-serif;
    background: #fff;
    box-sizing: border-box;
}

/* ── En-tête ── */
.fcco-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    color: #9A6E1E;
    margin: 0 0 12px;
}

.fcco-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 500;
    color: #2C2420;
    line-height: 1.15;
    margin: 0 0 10px;
}

.fcco-intro {
    font-size: 15px;
    color: #7A6F68;
    line-height: 1.85;
    font-weight: 300;
    max-width: 580px;
    margin: 0 0 36px;
}

.fcco-intro strong { color: #2C2420; font-weight: 600; }

/* ── Grille ── */
.fcco-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 32px;
    align-items: start;
}

/* ── Formulaire ── */
.fcco-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fcco-field {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #DDD5C8;
    border-radius: 12px;
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
    color: #2C2420;
    background: #F7F3EE;
    outline: none;
    transition: border-color .2s, background .2s;
    box-sizing: border-box;
}

.fcco-field:focus {
    border-color: #D8A94C;
    background: #fff;
}

.fcco-field::placeholder { color: #A89F98; }

select.fcco-field {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A89F98' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 12px;
    background-color: #F7F3EE;
    padding-right: 36px;
}

select.fcco-field:focus { background-color: #fff; }

textarea.fcco-field {
    resize: vertical;
    min-height: 100px;
}

/* Feedback */
.fcco-feedback {
    font-size: 13px;
    font-weight: 600;
    padding: 0;
    min-height: 0;
    transition: all .2s;
}

.fcco-feedback.success {
    color: #2E7D32;
    background: #E8F5E9;
    padding: 10px 14px;
    border-radius: 10px;
}

.fcco-feedback.error {
    color: #C62828;
    background: #FFEBEE;
    padding: 10px 14px;
    border-radius: 10px;
}

/* Bouton */
.fcco-submit {
    background: #D8A94C;
    color: #fff;
    padding: 13px;
    border-radius: 40px;
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background .2s, opacity .2s;
    margin-top: 4px;
    width: 100%;
}

.fcco-submit:hover    { background: #9A6E1E; }
.fcco-submit:disabled { opacity: .6; cursor: default; }

/* ── Infos & notes ── */
.fcco-infos {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fcco-info-item {
    background: #F7F3EE;
    border-radius: 14px;
    border: 1px solid #DDD5C8;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: border-color .2s, background .2s;
    box-sizing: border-box;
}

a.fcco-info-item:hover {
    border-color: #D8A94C;
    background: #FDF4E3;
}

.fcco-info-ico { font-size: 18px; flex-shrink: 0; line-height: 1; }

.fcco-info-label {
    font-size: 11px;
    color: #A89F98;
    font-weight: 600;
    letter-spacing: .3px;
    margin: 0 0 2px;
}

.fcco-info-val {
    font-size: 14px;
    font-weight: 600;
    color: #2C2420;
    margin: 0;
}

/* Notes */
.fcco-note {
    background: #FDF4E3;
    border-radius: 14px;
    border: 1px solid rgba(216, 169, 76, .25);
    padding: 16px 18px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    box-sizing: border-box;
}

.fcco-note-ico {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    line-height: 1;
}

.fcco-note p {
    font-size: 13px;
    color: #9A6E1E;
    line-height: 1.7;
    font-weight: 300;
    margin: 0;
}

.fcco-note p strong { color: #2C2420; font-weight: 600; }

/* ── Responsive ── */
@media (max-width: 768px) {
    .fcco-contact { padding: 56px 24px; }
    .fcco-grid    { grid-template-columns: 1fr; }
}
