/* Signature Hôtelière - Frontend Styles */

:root {
    --sh-primary: #1a3d5c;
    --sh-secondary: #d4af37;
    --sh-accent: #20b2aa;
    --sh-light: #f5f5f5;
    --sh-text: #333;
}

.sh-devis-form,
.sh-mypos-form {
    background: var(--sh-light);
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    margin: 30px 0;
}

.sh-devis-form h2,
.sh-mypos-form h2 {
    color: var(--sh-primary);
    margin-bottom: 20px;
}

.sh-devis-form fieldset,
.sh-mypos-form fieldset {
    border: none;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

.sh-devis-form input,
.sh-devis-form textarea,
.sh-mypos-form input,
.sh-mypos-form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.sh-devis-form button,
.sh-mypos-form button {
    background-color: var(--sh-secondary);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
    transition: background 0.3s;
}

.sh-devis-form button:hover,
.sh-mypos-form button:hover {
    background-color: var(--sh-accent);
}

.sh-cgv-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 40px;
    line-height: 1.8;
    color: var(--sh-text);
}

.sh-cgv-container h1 {
    color: var(--sh-primary);
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 3px solid var(--sh-secondary);
    padding-bottom: 15px;
}

.sh-cgv-container h2 {
    color: var(--sh-primary);
    margin-top: 40px;
    margin-bottom: 15px;
}

.sh-cgv-container ul {
    margin-left: 20px;
}

.sh-cgv-container li {
    margin: 10px 0;
}

@media (max-width: 768px) {
    .sh-devis-form,
    .sh-mypos-form,
    .sh-cgv-container {
        padding: 20px;
    }
}
