﻿#menuHeader{
    color:white;
}

.hero__logo {
    display: inline-block;
    margin-bottom: 1rem;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,.45));
}

.hero__title {
    font-weight: 800;
    letter-spacing: .2px;
    text-shadow: 0 2px 30px rgba(0,0,0,.45);
}

/* Koyu/aydınlık moda göre overlay yoğunluğu */
@media (prefers-color-scheme: light) {
    :root {
        --hero-overlay-from: rgba(0,0,0,.45);
        --hero-overlay-to: rgba(0,0,0,.25);
    }
}

/* Küçük ekran optimizasyonu */
@media (max-width: 576px) {
    .hero {
        min-height: 85vh;
    }

    .hero__logo {
        width: 96px;
        height: 96px;
    }
}
.location-section h2 {
    font-weight: 700;
}

.map-container iframe {
    box-shadow: 0 10px 24px rgba(0,0,0,.15);
}

#calendar-wrapper {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
}

@media (max-width: 576px) {
    .fc-timegrid-slot {
        min-height: 48px !important;
    }

    .fc-event {
        font-size: 0.8rem !important;
        padding: 4px 6px !important;
        margin: 1px 2px;
    }

    .fc-daygrid-event {
        padding: 2px 4px;
        font-size: 0.75rem;
    }
}

* {
    -webkit-tap-highlight-color: transparent;
}