html{
    --font-celtic:'Celtic', Arial, sans-serif;
    --font-arial:'Arial Rounded', Arial, sans-serif;
    --btn-color: #996533;
    --bg-color-brown: #996533;
    --white: #ffffff;
    --black: #000000;
    --dark-primary: #7a502a;
    --light-primary: #c49b76;
}

@font-face {
    font-family: 'Celtic';
    src: url('../fonts/CELTG___.TTF') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Arial Rounded';
    src: url('../fonts/arlrdbd.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


   
.header {
    background-color: var(--bg-color-brown);
    color: var(--white);
    padding: 1.5rem;
    text-align: center;
    position: relative;
}

.header h1 {
    font-family: var(--font-celtic);
    font-size: 2.5rem;
    margin: 0;
}

.header p {
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

.header::after {
    content: "";
    display: block;
    height: 3px;
    background: var(--light-primary);
    width: 80%;
    margin: 1rem auto 0;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.intro {
    text-align: center;
    margin-bottom: 2rem;
}

.intro h2 {
    font-family: var(--font-celtic);
    color: var(--dark-primary);
    font-size: 1.8rem;
}

.intro p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.commitment-notice {
    background-color: var(--light-primary);
    color: var(--white);
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: bold;
}

.form-container {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--form-border);
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section h3 {
    color: var(--dark-primary);
    font-family: var(--font-celtic);
    margin-top: 0;
    margin-bottom: 1rem;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1rem 1rem;
}

.form-col {
    flex: 1;
    padding: 0 1rem;
    min-width: 250px;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-note {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.3rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--form-border);
    border-radius: 5px;
    font-family: var(--font-arial);
    font-size: 1rem;
    transition: border-color 0.3s;
    background-color: var(--form-bg);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--light-primary);
    box-shadow: 0 0 0 2px rgba(196, 155, 118, 0.3);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.radio-group {
    margin-top: 0.5rem;
}

.radio-option {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.radio-option input[type="radio"] {
    margin-right: 0.5rem;
}

.checkbox-option {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.8rem;
}

.checkbox-option input[type="checkbox"] {
    margin-right: 0.5rem;
    margin-top: 0.3rem;
}

.preference-list {
    display: flex;
    flex-wrap: wrap;
}

.preference-item {
    width: 50%;
    padding: 0.3rem 0;
}

.required-notice {
    color: #d44950;
    margin-left: 0.3rem;
}

.submit-row {
    margin-top: 2rem;
    text-align: center;
}

.submit-btn {
    background-color: var(--btn-color);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: var(--dark-primary);
}

.form-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

.color-preference {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.color-option {
    width: calc(25% - 1rem);
    min-width: 150px;
    text-align: center;
    margin-bottom: 1rem;
}

.color-box {
    width: 60%;
    border-radius: 5px;
    margin-bottom: 0.5rem;

}

.color-box img {
    width: 100%;
}


@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
    
    .form-col {
        min-width: auto;
    }
    
    .color-option {
        width: calc(50% - 1rem);
    }
}