/* === contact-style.css === */

:root {
    --primary-color: #A0B2A6; /* Soft Sage Green */
    --secondary-color: #F5F5F5; /* Cream/Off-White */
    --accent-color: #D4AF37; /* Brighter Gold */
    --text-color: #333333;
    --light-text-color: #f0f0f0;
    --brandname-brown-color: #A98D67;
    --hero-cta-green: #88B04B;

    --heading-font: 'Playfair Display', serif;
    --body-font: 'Montserrat', sans-serif;
    --border-radius: 8px;
    --button-border-radius: 50px;
    --box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    --transition-speed: 0.3s;
}

body.contact-page-body {
    background-color: var(--secondary-color);
    font-family: var(--body-font);
    color: var(--text-color);
    line-height: 1.7;
}

/* --- Contact Page Hero --- */
.contact-hero {
    padding: 100px 0 70px; /* Adjusted padding slightly */
    background: linear-gradient(135deg, rgba(148, 165, 155, 0.85), rgba(121, 154, 72, 0.75)), url('../images/contact-hero-bg.jpg') no-repeat center center/cover;
    /* IMPORTANT: Replace '../images/contact-hero-bg.jpg' with an actual background image path */
    /* Fallback if no image */
    /* background-color: var(--primary-color); */
    color: #fff;
    text-align: center;
    position: relative;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* background-image: url('../images/subtle-pattern.png'); */
    /* opacity: 0.08; */
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: calc(2.5rem + 1.5vw);
    font-family: var(--heading-font);
    color: #fff;
    margin-bottom: 0.75rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.25);
}

.contact-hero p {
    font-size: calc(0.95rem + 0.2vw);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Contact Main Section --- */
.contact-main-section {
    padding: 60px 0;
}

.contact-layout-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 992px) {
    .contact-layout-grid {
        grid-template-columns: 1fr 1.2fr; /* Info | Form */
        gap: 50px;
    }
    .contact-info-column {
        order: 1; /* Info on the left */
    }
    .contact-form-column {
        order: 2; /* Form on the right */
    }
}

.contact-section-title {
    font-family: var(--heading-font);
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}
.contact-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
}

/* --- Contact Info Column --- */
.contact-info-block {
    background-color: #fff;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 25px;
}
.contact-info-block:last-child {
    margin-bottom: 0;
}

.contact-info-block h3 {
    font-family: var(--body-font);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--brandname-brown-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.contact-info-block h3 i {
    margin-right: 10px;
    font-size: 1.3rem;
    color: var(--hero-cta-green);
    width: 22px;
    text-align: center;
}

.contact-info-block.preferred-contact {
    background-color: #fefcf5; /* Lighter, warm off-white */
    border-left: 4px solid var(--accent-color);
    padding-top: 30px;
    padding-bottom: 30px;
}

.contact-info-block.preferred-contact h3 {
    color: var(--accent-color);
    font-size: 1.35rem;
}
.contact-info-block.preferred-contact h3 i.fa-instagram {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.contact-preference-note {
    font-size: 0.9rem;
    color: #4c4c4c;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.cta-button.ig-dm-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); /* Instagram gradient */
    color: white;
    padding: 10px 20px;
    border-radius: var(--button-border-radius);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: opacity 0.3s ease, transform var(--transition-speed);
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.cta-button.ig-dm-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}
.cta-button.ig-dm-button i {
    margin-right: 8px;
    font-size: 1.1em;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-list li {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-info-list li i {
    font-size: 1rem;
    color: var(--primary-color);
    margin-right: 10px;
    width: 18px;
    text-align: center;
}

.contact-info-list li a {
    color: #555;
    text-decoration: none;
    transition: color var(--transition-speed);
    word-break: break-word;
}
.contact-info-list li a:hover {
    color: var(--accent-color);
}

.contact-social-links-block {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}
.contact-social-links-block h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
}
.contact-page-socials {
    display: flex;
    gap: 12px;
}
.contact-page-socials a {
    color: var(--text-color);
    font-size: 1.2rem;
    transition: color var(--transition-speed), transform var(--transition-speed);
}
.contact-page-socials a:hover {
    color: var(--hero-cta-green);
    transform: scale(1.1);
}

/* --- Contact Form Column --- */
.contact-form-container {
    background-color: #fff;
    padding: 30px 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 7px;
    color: var(--text-color);
    font-size: 0.85rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: var(--body-font);
    font-size: 0.9rem;
    color: #333;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #fdfdfd;
}
.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    border-color: var(--hero-cta-green);
    outline: none;
    box-shadow: 0 0 0 2px rgba(136, 176, 75, 0.1);
    background-color: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-submit-btn {
    display: inline-block;
    background-color: var(--hero-cta-green);
    color: #fff;
    padding: 10px 25px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none;
    border-radius: var(--button-border-radius);
    cursor: pointer;
    transition: background-color var(--transition-speed), transform var(--transition-speed), box-shadow var(--transition-speed);
    box-shadow: 0 2px 8px rgba(136, 176, 75, 0.15);
}
.contact-submit-btn:hover {
    background-color: hsl(from var(--hero-cta-green) h s calc(l - 8%));
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(136, 176, 75, 0.25);
}

#form-status-message {
    margin-top: 1rem;
    padding: 0.7rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.85rem;
    text-align: center;
}
#form-status-message.success { background-color: #e6f7e9; color: #28a745; border: 1px solid #badbcc; }
#form-status-message.error { background-color: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
#form-status-message.info { background-color: #e2e3e5; color: #383d41; border: 1px solid #d6d8db; }

.contact-map-column {
   display: none;
}

/* Responsive Adjustments for Contact Page */
@media (max-width: 991px) {
    .contact-layout-grid {
        grid-template-columns: 1fr;
    }
    .contact-info-column { order: 1; }
    .contact-form-column { order: 2; margin-top: 30px; /* Add space if form comes after info on mobile */ }
}

@media (max-width: 767px) {
    .contact-hero {
        padding: 80px 0 50px;
    }
    .contact-hero h1 {
        font-size: calc(1.8rem + 2vw);
    }
    .contact-hero p {
        font-size: calc(0.9rem + 0.2vw);
    }
    .contact-form-container, .contact-info-block {
        padding: 20px;
    }
     .contact-section-title {
        font-size: 1.8rem;
    }
    .cta-button.ig-dm-button {
        width: 100%;
        font-size: 0.9rem;
        padding: 12px 18px;
    }
    .contact-submit-btn {
        width: 100%;
    }
}
/* NEW STYLES FOR VINZERES CREDIT */
#main-footer .vinzeres-credit {
    font-size: 0.8rem; /* Slightly smaller than copyright */
    color: rgba(240, 240, 240, 0.6); /* Slightly dimmer text */
    margin-top: -0.5rem; /* Reduce space above if copyright has 1rem bottom margin */
    margin-bottom: 1.5rem; /* Space before social links */
}

#main-footer .vinzeres-credit a {
    color: rgba(240, 240, 240, 0.7); /* Slightly brighter for the link */
    text-decoration: underline;
    text-decoration-color: rgba(240, 240, 240, 0.4); /* Subtle underline */
    transition: color var(--transition-speed) ease, text-decoration-color var(--transition-speed) ease;
}

#main-footer .vinzeres-credit a:hover {
    color: var(--accent-color); /* Use your site's accent color on hover */
    text-decoration-color: var(--accent-color);
}
/* END OF NEW STYLES FOR VINZERES CREDIT */
/* Add this to your css/contact.css file */
.form-status {
    margin-top: 15px;
    padding: 10px 15px;
    border-radius: 5px;
    text-align: center;
    font-size: 0.9em;
    border: 1px solid transparent;
    display: none; /* Crucial: JS will manage displaying it */
    transition: opacity 0.3s ease;
}
.form-status.success {
    background-color: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}
.form-status.error {
    background-color: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}
.form-status.info {
    background-color: #e7f3fe;
    color: #0c5460;
    border-color: #b8daff;
}
.contact-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}