/* css/contact.css */

/* --- CONTACT PAGE GENERALS --- */
.contact-page-main {
    /* padding-top is handled by body padding-top in styles.css if header is fixed */
}

/* --- CONTACT HERO SECTION --- */
#contact-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: var(--primary-deep-charcoal);
    overflow: hidden;
}

/* Optional: Specific tweaks for the Contact Hero text if needed */
#contact-hero .contact-hero-title {
    font-size: 4.5rem; /* Matches main hero from styles.css if .hero-title is used */
    /* Or your specific size, e.g., 4rem */
}
#contact-hero .contact-hero-subtitle {
    font-size: 1.3rem; /* Matches main hero from styles.css if .hero-subtitle is used */
    max-width: 700px;
}


/* --- CONTACT FORM & DETAILS SECTION --- */
#contact-form-details-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: var(--surface-light, #F9F9F7);
}

.contact-section-intro {
    text-align: center;
    margin-bottom: 60px;
}
.contact-section-intro .section-title {
    color: var(--text-dark);
}
.contact-section-intro .section-intro-p {
    font-size: 1.1rem;
    color: var(--text-dark-muted);
    max-width: 700px;
    margin: 15px auto 0 auto;
    line-height: 1.7;
}

/* Revised Grid Layout for Contact Form and Info */
.contact-grid-layout-revised {
    display: grid;
    /* Make the form take up more space, and info less, or center them */
    grid-template-columns: 1.5fr 1fr; /* Example: Form takes 1.5 parts, info takes 1 part */
    gap: 50px;
    align-items: flex-start;
    max-width: 1100px; /* Optional: constrain overall width of this grid */
    margin: 0 auto; /* Center the grid if max-width is applied */
}

/* If you want the form and info to be stacked and centered when address/map removed: */
/*
.contact-grid-layout-revised {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.contact-form-wrapper,
.contact-info-map-wrapper {
    width: 100%;
    max-width: 700px; /* Max width for centered items */
/* }
*/


.contact-form-wrapper {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    border: 1px solid var(--border-light, #EAEAEA);
}

.contact-form-title,
.contact-info-title { /* Map title removed */
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}
.contact-form-title::after,
.contact-info-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent-antique-gold);
}

.form-group { margin-bottom: 25px; }
.form-group label { display: block; font-family: 'Outfit', sans-serif; font-size: 0.9rem; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; letter-spacing: 0.5px; }
.form-input, .form-textarea { width: 100%; padding: 14px 18px; border: 1px solid var(--border-medium, #D0D0D0); border-radius: 8px; font-family: 'Outfit', sans-serif; font-size: 1rem; color: var(--text-dark-muted); transition: border-color 0.3s ease, box-shadow 0.3s ease; background-color: var(--surface-ultralight, #FDFDFD); }
.form-input::placeholder, .form-textarea::placeholder { color: #AAAAAA; opacity: 1; }
.form-input:focus, .form-textarea:focus { outline: none; border-color: var(--accent-antique-gold); box-shadow: 0 0 0 3px rgba(190, 154, 106, 0.2); background-color: #FFFFFF; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit-group { margin-top: 30px; }
.form-status { margin-top: 20px; padding: 15px; border-radius: 6px; text-align: center; font-family: 'Outfit', sans-serif; }
.form-status.success { background-color: #E6F4EA; color: #3C763D; border: 1px solid #C9E7D2; }
.form-status.error { background-color: #F8D7DA; color: #721C24; border: 1px solid #F5C6CB; }

.contact-info-block { /* Map block styles removed */
    background-color: #FFFFFF;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    border: 1px solid var(--border-light, #EAEAEA);
    /* margin-bottom: 30px; -- No longer needed if it's the only item in its column part */
}

.info-item { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 25px; padding-bottom: 20px; border-bottom: 1px dashed var(--border-light, #EDEDED); }
.info-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.info-icon { font-size: 1.5rem; color: var(--accent-antique-gold); margin-top: 5px; width: 30px; text-align: center; }
.info-content h4 { font-family: 'Outfit', sans-serif; font-size: 1.1rem; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.info-content p { font-family: 'Outfit', sans-serif; font-size: 1rem; color: var(--text-dark-muted); line-height: 1.6; }
.info-content p a { color: var(--accent-antique-gold); text-decoration: none; font-weight: 500; transition: color 0.3s ease; }
.info-content p a:hover { color: var(--accent-antique-gold-darker, #a8875f); text-decoration: underline; }

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 1024px) {
    #contact-hero .contact-hero-title { font-size: 3.8rem; }
    #contact-hero .contact-hero-subtitle { font-size: 1.2rem; }
    .contact-grid-layout-revised {
        grid-template-columns: 1fr; /* Stack form and info on tablets */
        gap: 40px;
    }
    .contact-form-wrapper,
    .contact-info-block {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    #contact-hero { min-height: 60vh; }
    #contact-hero .contact-hero-title { font-size: 3rem; }
    #contact-hero .contact-hero-subtitle { font-size: 1.1rem; }
    #contact-form-details-section { padding-top: 60px; padding-bottom: 60px; }
    .contact-section-intro { margin-bottom: 40px; }
    .contact-form-title, .contact-info-title { font-size: 1.6rem; }
    .contact-form-wrapper, .contact-info-block { padding: 25px; }
    .info-icon { font-size: 1.3rem; }
    .info-content h4 { font-size: 1rem; }
    .info-content p { font-size: 0.95rem; }
}

@media (max-width: 480px) {
    #contact-hero .contact-hero-title { font-size: 2.6rem; }
    #contact-hero .contact-hero-subtitle { font-size: 1rem; }
    .form-input, .form-textarea { padding: 12px 15px; font-size: 0.95rem; }
}