/* -----------------------------------------------------------
   GLOBAL STYLES — Warm Classic Theme
----------------------------------------------------------- */

body {
    margin: 0;
    padding: 0;
    font-family: "Georgia", serif;
    background: #f5f2ec;
    /* warm cream */
    color: #3a2f28;
    /* warm brown */
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: "Georgia", serif;
    color: #2e241e;
    margin-bottom: 0.5rem;
}

p {
    font-family: "Arial", sans-serif;
    color: #4a3f38;
}

.section-padding {
    padding: 80px 20px;
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.2rem;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6d5e54;
}

/* -----------------------------------------------------------
   BUTTONS
----------------------------------------------------------- */

.btn {
    padding: 0.75rem 1.5rem;
    background: #6d5e54;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-family: "Arial", sans-serif;
    letter-spacing: 0.5px;
}

.btn:hover {
    background: #8a7a70;
}

/* -----------------------------------------------------------
   GRID LAYOUTS (Finishes, Designers, Projects)
----------------------------------------------------------- */

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background: #faf7f2;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* -----------------------------------------------------------
   SPECIALTY FINISHES
----------------------------------------------------------- */

    .finishes-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

.finish-card {
    background: #faf7f2;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* -----------------------------------------------------------
   CONTACT FORM
----------------------------------------------------------- */

    .contact-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
    .form-column input[type="text"],
    .form-column input[type="email"],
    .form-column input[type="tel"] {
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-row {
    display: flex;
    gap: 2rem;
}

.form-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #3a2f28;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="number"] {
    padding: 0.75rem;
    border: 1px solid #c8bfb6;
    border-radius: 6px;
    background: #fffdf8;
    font-family: "Arial", sans-serif;
}

.contact-form input[readonly] {
    background: #e9e3dc;
    color: #6d5e54;
}

.rooms-grid {
    display: flex;
    gap: 2rem;
}

.rooms-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
    .rooms-grid {
    grid-column: 1 / -1;
}
.room-counter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.count-field {
width: 80px;
flex: 0 0 80px;
margin-left: 0.5rem;
}

.count-field {
    width: 80px;
    margin-left: 0.5rem;
}


.finishes-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.start-date-options {
    display: flex;
    gap: 2rem;
    margin: 1rem 0;
}

/* -----------------------------------------------------------
   FOOTER
----------------------------------------------------------- */

footer {.form-column
    background: #e8e1d8;
    padding: 40px 20px;
    text-align: center;
    color: #4a3f38;
    font-family: "Arial", sans-serif;
}

/* -----------------------------------------------------------
   RESPONSIVE
----------------------------------------------------------- */

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }

    .rooms-grid,
    .finishes-grid {
        flex-direction: column;
    }
    .rooms-grid {
display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
}
    .rooms-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    }
    .rooms-column label {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
}