/* ======================== */
/* CONTACT PAGE STYLES      */
/* ======================== */

/* Page Header - Added specific styles since menu.css is not shared */
.contact-header {
    height: 40vh;
    background: url('../images/hero.png') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-bottom: 4rem;
}

.contact-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.contact-header h1 {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Main Content */
.contact {
    padding: 5rem 0;
    background-color: var(--bg-cream);
}

.contact-intro {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-gray);
    font-size: 1.1rem;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

/* Form Section */
.contact-form {
    flex: 1.5;
    min-width: 300px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background-color: #fafafa;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(139, 94, 60, 0.1);
}

.btn-submit {
    background-color: var(--primary-color);
    color: #fff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
    width: 100%;
    /* Full width button styles better */
}

.btn-submit:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 5px 15px rgba(139, 94, 60, 0.3);
}

/* Info Section */
.contact-info {
    flex: 1;
    min-width: 250px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-left: 2rem;
}

.info-item {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 15px;
    transition: var(--transition);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-item:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateX(10px);
}

.info-icon {
    font-size: 1.5rem;
    background: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.info-content h3 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 0.3rem;
    margin-top: 0;
}

.info-item p {
    color: var(--text-gray);
}

@media (max-width: 850px) {
    .contact-content {
        flex-direction: column-reverse;
        /* Info on top on mobile? Or stick to form first */
        gap: 2rem;
        padding: 2rem;
    }

    .contact-info {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #eee;
        padding-top: 2rem;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .info-item {
        flex: 1 1 45%;
    }
}

@media (max-width: 600px) {
    .contact-info {
        flex-direction: column;
    }
}