/* ========== MODALE ========== */
#louise-contact-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
}

#louise-contact-modal:target {
    display: flex;
    align-items: center;
    justify-content: center;
}

#louise-form-message {
    min-height: 20px;
    display: block !important;
}

.lh-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

.lh-modal__content {
    position: relative;
    background: white;
    border-radius: 0.25rem;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.08);
    width: 90vw;
    max-width: 35rem;
    max-height: 90vh;
    overflow-y: auto;
    padding: clamp(1.5rem, 5vw, 2rem);
    display: flex;
    flex-direction: column;
}

.lh-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.lh-modal__close:hover {
    color: #333;
}

.lh-modal__title {
    margin: 0 0 1.5rem 0;
    font-size: clamp(1.25rem, 4vw, 1.75rem);
}

/* ========== FORMULAIRE ========== */
.lh-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.lh-fieldset {
    border: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lh-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lh-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #555;
    text-align: left;
}

.lh-required {
    color: #d63031;
}

.lh-input {
    padding: 0.75rem;
    font-size: 0.95rem;
    border: 1px solid #e0e0e0;
    border-radius: 0.25rem;
    background: #fafafa;
    font-family: inherit;
    transition: border-color 0.2s, background 0.2s;
}

.lh-input:focus {
    outline: none;
    background: white;
    border-color: #333;
}

/* ========== QUILL ========== */
.lh-editor {
    min-height: 6rem;
    resize: vertical;
}

.lh-editor .ql-editor {
    min-height: 5rem;
}

/* ========== HONEYPOT ========== */
.lh-honeypot {
    display: none;
    position: absolute;
    left: -9999px;
}

/* ========== BOUTON ========== */
.lh-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    background: #333;
    color: white;
    border: 1px solid #333;
    border-radius: 0.25rem;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s, border-color 0.2s;
    width: 100%;
    text-align: center;
}

.lh-btn:hover {
    background: #555;
    border-color: #555;
}

.lh-btn:disabled {
    background: #ccc;
    border-color: #ccc;
    cursor: not-allowed;
}

/* ========== UTILITAIRE ========== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
}



