/* ================================
   CONTACT PAGE
================================ */

.contact-page {
    margin-left: 250px;
    width: calc(100% - 250px);
    background: #ffffff;
}

/* HERO */

.contact-hero {
    height: 340px;
    background-image:
        linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
        url('https://www.ceyapt.com/wp-content/uploads/2026/05/backgroundcey.png');

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
}

.contact-hero-content {
    max-width: 760px;
    padding: 20px;
}

.contact-hero-content h1 {
    font-family: 'CinzelCustom', serif;
    font-size: 56px;
    color: #ffffff;
    margin-bottom: 20px;
}

.contact-hero-content p {
    color: rgba(255,255,255,0.92);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* FORM SECTION */

.contact-form-section {
    padding: 70px 20px;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
}

/* SUCCESS */

.contact-success {
    background: #f4f4f4;
    border-left: 4px solid #B09E80;
    padding: 18px;
    margin-bottom: 30px;
    color: #555;
}

/* FORM */

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #ddd;
    background: #fafafa;

    font-family: 'AvenirLight', sans-serif;
    font-size: 1rem;

    border-radius: 6px;
    box-sizing: border-box;

    transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #B09E80;
}

/* BUTTON */

.contact-form button {
    background: #B09E80;
    color: #fff;

    border: none;
    padding: 16px 26px;

    font-family: 'CinzelCustom', serif;
    font-size: 1rem;

    border-radius: 6px;
    cursor: pointer;

    transition: opacity 0.2s ease;
}

.contact-form button:hover {
    opacity: 0.9;
}

/* RESPONSIVE */

@media (max-width: 768px) {

    .contact-page {
        margin-left: 0;
        width: 100%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero-content h1 {
        font-size: 42px;
    }

}