/* ==========================================================================
   Contact Page Specific Styles
   ========================================================================== */

/* Hero section for contact page */
.contact-hero-subpage {
    background-image: url('../images/backgrounds/contact-hero-bg.jpg');
    background-position: center;
}

/* Contact Details Section */
.contact-details {
    padding: 80px 0;
    background-color: #f8f9fa; /* Light grey background */
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: flex-start;
}

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr 1.5fr; /* Info on left, form on right */
    }
}

.contact-info {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-info h2 {
    color: #333;
    font-size: 28px;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
    text-align: center;
}

.info-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.info-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.info-header h3 {
    margin: 0;
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 600;
}

.contact-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    color: var(--primary-color);
}

.info-item p {
    margin: 0;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    padding-left: 39px; /* Aligns text with the icon */
}

.contact-link {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-color-dark);
}

.hours {
    display: block;
    font-style: italic;
    font-size: 14px;
    color: #777;
    margin-top: 5px;
}

/* Contact Form */
.contact-form-container {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-form-container h2 {
    color: #333;
    font-size: 28px;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
    text-align: center;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.2);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    font-weight: 700;
}

/* Map Section */
.map-section {
    padding-bottom: 80px;
    background-color: #f8f9fa;
}

.map-section .section-title {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
    border: none;
}