.contact-page {
    padding-top:80px; /* matches the height of your fixed top bar */
    display: flex;
    flex-direction: column;
}

.contact-main {
    display: flex;
    flex-wrap: wrap;
    min-height: 80vh;
}

.contact-left,
.contact-right {
    flex: 1;
    padding: 60px 40px;
}

.contact-left {
    background-color: #171717;
    color: #ffffff;
}

.contact-left h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.contact-left p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 8px 0;
}

.contact-right {
    background-color: #1f1f1f;
    color: #fff;
}

.contact-right h3 {
    margin-bottom: 20px;
}

.contact-right form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row input {
    flex: 1;
}

input,
textarea {
    background-color: transparent;
    border: 1px solid #888;
    color: #fff;
    padding: 10px;
    border-radius: 4px;
    width: 100%;
}

textarea {
    min-height: 100px;
}

button {
    background-color: #f6c8de;
    color: #000000;
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

button:hover {
    background-color: #9b496f; /* darker pink */
    color: #ffffff; /* text becomes white */
}

.contact-footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: #1f1f1f;
    color: #ccc;
    padding: 30px 40px;
    font-size: 0.9rem;
}

.contact-footer p {
    margin: 6px 0;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }

    .contact-footer {
        flex-direction: column;
        gap: 20px;
    }

    .contact-left,
    .contact-right {
        padding: 40px 20px;
    }
}

