/* ---- Base Colors ---- */
:root {
    --bg-main: #F1E3D0;
    --bg-card: #E6C4B3;
    --bg-nav: #D9B482;
    --accent-salmon: #FF6657;
    --accent-turquoise: #0BB2AE;
    --text-main: #444;
}

/* ---- Body ---- */
body {
    background-color: var(--bg-main);
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: var(--text-main);
}

/* ---- Cards / Sections ---- */
.section-card {
    background-color: var(--bg-card);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 4rem auto;
    max-width: 600px;
    /* center & narrow the whole form */
}

/* ---- Form styling ---- */
.form-label {
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 1rem;
    /* extra space below label */
}

.form-group {
    margin-bottom: 2rem;
    /* space between end of one field and next label */
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 0.25rem;
    margin-bottom: 1.5rem;
    /* space below field before next label */
}

textarea {
    resize: vertical;
}

.form-check {
    margin-bottom: 0.75rem;
    /* space between checkbox/radio options */
}

.text-danger {
    color: #FF4433;
}

img.shadow-sm {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
}

.custom-card-bg {
    background-color: #d8b19d; 
}