/* ============================================================
   contact.css  —  styles for contact.aspx
   ============================================================ */

/* ── Two-column wrapper ───────────────────────────────────── */
#contactWrap {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    width: 100%;
    max-width: 1100px;
    margin: 50px auto;
    padding: 0 20px;
    box-sizing: border-box;
    font-family: 'Georgia', serif;
    color: #f5e6c8;
}

/* ── Left: form panel ─────────────────────────────────────── */
#contactForm {
    flex: 1 1 480px;
    background-color: #1a0000;
    border: 1px solid #6a2a00;
    padding: 40px;
    box-sizing: border-box;
}

#contactForm h2 {
    margin: 0 0 28px 0;
    font-size: 1.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #d4a843;
    border-bottom: 1px solid #6a2a00;
    padding-bottom: 12px;
}

/* ── Field groups ─────────────────────────────────────────── */
.field-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.field-group label {
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #d4a843;
    margin-bottom: 6px;
}

.ct-input {
    background-color: #0d0000;
    border: 1px solid #6a2a00;
    color: #f5e6c8;
    font-family: 'Georgia', serif;
    font-size: 0.95rem;
    padding: 10px 12px;
    box-sizing: border-box;
    width: 100%;
    outline: none;
    transition: border-color 0.2s ease;
}

.ct-input:focus {
    border-color: #d4a843;
}

.ct-input::placeholder {
    color: #7a5a3a;
}

.ct-textarea {
    resize: vertical;
    min-height: 160px;
}

/* ── Validation messages ──────────────────────────────────── */
.val-msg {
    color: #c05050;
    font-size: 0.82rem;
    margin-top: 4px;
    font-family: 'Roboto', sans-serif;
}

/* ── Send button ──────────────────────────────────────────── */
.ct-btn {
    background-color: #7a0000;
    color: #f5e6c8;
    border: 1px solid #d4a843;
    font-family: 'Georgia', serif;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 12px 36px;
    cursor: pointer;
    transition: background-color 0.2s ease, text-shadow 0.2s ease;
    margin-top: 8px;
}

.ct-btn:hover {
    background-color: #9a0000;
    text-shadow: 0 0 8px rgba(255, 200, 0, 0.8);
}

/* ── Thank-you panel ──────────────────────────────────────── */
.ct-thanks {
    padding: 30px 0;
    font-size: 1.1rem;
    color: #d4a843;
    line-height: 1.8;
}

/* ── Right: info panel ────────────────────────────────────── */
#contactInfo {
    flex: 1 1 280px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ct-img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #6a2a00;
}

.ct-details {
    background-color: #1a0000;
    border: 1px solid #6a2a00;
    padding: 30px;
    box-sizing: border-box;
}

.ct-details h3 {
    margin: 0 0 12px 0;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #d4a843;
}

.ct-details p {
    font-size: 0.92rem;
    color: #c8b090;
    line-height: 1.7;
    margin: 0 0 10px 0;
}

.ct-details a {
    color: #d4a843;
    text-decoration: none;
}

.ct-details a:hover {
    text-decoration: underline;
}

.ct-rule {
    border: none;
    border-top: 1px solid #6a2a00;
    margin: 14px 0;
}

.ct-hours strong {
    color: #f5e6c8;
}

.closed {
    color: #a05050;
}

.ct-note {
    font-size: 0.85rem !important;
    color: #9a7a5a !important;
    font-style: italic;
}
