/* Contact Page Specific Styles */

/* Contact Hero Section */
.contact-hero {
    height: 60vh;
    min-height: 400px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding-top: 80px;
}

.contact-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.62));
}

.contact-hero .container {
    position: relative;
    z-index: 1;
}

.contact-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 58%;
}

.contact-hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 300;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.5);
}

/* Contact Info Section */
.contact-info-section {
    padding: var(--spacing-xl) 0;
    background-color: #fff;
}

.contact-intro {
    max-width: 800px;
    text-align: center;
    margin: 0 auto 3rem;
    color: var(--secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-intro p {
    margin-bottom: 1rem;
}

.order-online-text {
    font-weight: 700;
    color: var(--dark);
}

.order-online-link {
    color: var(--secondary);
    text-decoration: underline;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.contact-map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    min-height: 400px;
    background-color: #eaeaea;
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-block h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--dark);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 0.5rem;
}

.detail-block p {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.5;
}

.detail-block strong {
    color: var(--dark);
}

.order-btn-wrapper {
    text-align: center;
    margin-top: 2rem;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-map-wrapper {
        min-height: 300px;
    }
}
