@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&family=Playfair+Display:wght@400;700&display=swap');
:root{
    --white: #f5f0f0;
    --off-white: #e9e9e9;
    --onyx: #101010;
    --rich-mahogany: #260101;
    --dark-garnet: #591202;
    --rust-brown: #A62F03;
    --autumn-leaf:#F26716;
}


body{
    background-color: var(--dark-garnet) !important;
    color: var(--onyx);
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}

h1, h2, h3, h4, h5, h6{
    font-family: 'Playfair Display', serif;
    margin: 0;
}

.header-color{
    position: sticky;
    top: 0;
    z-index: 1;
    height: 110px;
    background-color: var(--onyx);
    margin-top: -100px;
}
/* Contact Page Layout */
.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 16px 32px 16px;
    background-color: var(--dark-garnet);
}
.contact-flex {
    display: flex;
    gap: 48px;
    align-items: stretch;
    justify-content: center;
}
.contact-form-col {
    flex: 1 1 340px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(51,51,51,0.08), 0 1.5px 6px rgba(213,39,31,0.08);
    padding: 36px 32px 32px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 320px;
    max-width: 480px;
    border: 0.5px solid var(--autumn-leaf);
}
.contact-form-col h1 {
    color: var(--rich-mahogany);
    font-size: 38px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 12px;
}
.contact-desc {
    color: var(--onyx);
    font-size: 16px;
    margin-bottom: 24px;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-group label {
    font-weight: 600;
    color: var(--rich-mahogany);
    font-size: 15px;
    margin-bottom: 2px;
}
.form-group input,
.form-group textarea {
    padding: 10px 12px;
    border: 1.5px solid var(--autumn-leaf);
    border-radius: 6px;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    color: var(--onyx);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--rust-brown);
    outline: none;
    box-shadow: 0 2px 8px rgba(224,79,29,0.10);
}
.contact-btn {
    margin-top: 8px;
    padding: 12px 0;
    background: var(--rust-brown);
    color: var(--white);
    border: none;
    font-weight: 700;
    font-size: 17px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(213,39,31,0.10);
    cursor: pointer;
    transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
    letter-spacing: 0.5px;
}
.contact-btn:hover {
    background: var(--autumn-leaf);
    color: var(--off-white);
    box-shadow: 0 4px 16px rgba(240,156,15,0.18);
    transform: scale(1.04);
}
.contact-img-col {
    flex: 1 1 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 320px;
    max-width: 480px;
}
.contact-img {
    width: 100%;
    max-width: 420px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(51,51,51,0.10);
    object-fit: cover;
}
@media (max-width: 900px) {
    .contact-flex {
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }
    .contact-form-col, .contact-img-col {
        max-width: 100%;
        min-width: 0;
    }
    .contact-img {
        max-width: 100%;
    }
}