.hero-wrapper {
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* Desktop (default) */
.overlay-content {
    padding: 2.5rem;
}

.overlay-icon {
    font-size: 3rem;
    color: #ef4444;
    margin-bottom: 1rem;
}

.overlay-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0.75rem;
}

.overlay-text {
    color: #e5e7eb;
    margin: 1.25rem 0 0.5rem;
}

.overlay-hours {
    font-weight: 600;
    color: #f97316;
}

.overlay-note {
    color: #e5e7eb;
    font-style: italic;
    margin-top: 1rem;
}

/* Mobil düzenlemeler */
@media (max-width: 640px) {
    .hero-image {
        min-height: 280px; /* biraz daha uzatıldı */
        object-fit: cover;
    }

    .overlay-content {
        padding: 1rem;
    }

    .overlay-icon {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .overlay-title {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }

    .overlay-text {
        font-size: 0.875rem;
        margin-top: 0.5rem;
    }

    .overlay-hours {
        font-size: 0.9rem;
    }

    .overlay-note {
        font-size: 0.8rem;
        margin-top: 0.5rem;
    }
}
