.contact-hero {
    background: url('/img/banner2.jpg') no-repeat center/cover;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.contact-hero h1 {
    font-family: 'PlayfairDisplay', serif;
    font-size: 42px;
    margin-bottom: 10px;
}

.contact-details {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.contact-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.contact-info-block,
.contact-map {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.contact-info-block:hover,
.contact-map:hover {
    transform: translateY(-4px);
}

.contact-info-block h2 {
    font-family: 'PlayfairDisplay', serif;
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.contact-info-block p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 14px;
    color: #444;
}

.contact-info-block a {
    color: #a67852;
    text-decoration: none;
    font-weight: 500;
}

.contact-info-block a:hover {
    text-decoration: underline;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border: none;
    border-radius: 10px;
}

.contact-map {
    padding: 0;
    box-shadow: none;
}

@media (max-width: 800px) {
    .contact-grid {
        flex-direction: column;
        gap: 40px;
    }

    .contact-info-block,
    .contact-map {
        padding: 25px;
    }
}

@media (max-width: 600px) {
    .gallery-hero {
        padding: 40px 20px; /* kisebb mint 80px */
    }
}
