﻿/* Contact page only */
.contact-page .contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-page .contact-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 20px;
    color: #ccc;
}

/* Prefer ONE form selector approach */
.contact-page .contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

    /* Dark theme version (matches your site look) */
    .contact-page .contact-form input,
    .contact-page .contact-form textarea {
        background: #111;
        color: var(--color-text);
        border: 1px solid #444;
        padding: 10px;
        border-radius: 6px;
        font-size: 16px;
    }

    .contact-page .contact-form textarea {
        min-height: 120px;
        resize: vertical;
    }

    .contact-page .contact-form button {
        background: #333;
        color: var(--color-text);
        padding: 12px;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        font-size: 18px;
    }

        .contact-page .contact-form button:hover {
            background: #555;
        }

.contact-page .g-recaptcha {
    margin: 15px auto;
    display: flex;
    justify-content: center;
}

.contact-page .contact-facebook {
    display: inline-block;
    background: var(--color-facebook);
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

    .contact-page .contact-facebook:hover {
        background: var(--color-facebook-hover);
    }

.contact-page .contact-email {
    display: inline-block;
    background: #444;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

    .contact-page .contact-email:hover {
        background: #666;
        transform: translateY(-2px)
    }


