/* Elite Estate — Özel stiller (Stitch tasarımından birebir + responsive eklentiler) */

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Kart gölgesi — yumuşak, yüksek dağılımlı */
.property-card-shadow {
    box-shadow: 0 10px 30px rgba(10, 31, 68, 0.05);
}
.property-card-shadow:hover {
    box-shadow: 0 20px 40px rgba(10, 31, 68, 0.1);
}

/* Altın alt çizgi animasyonu (menü vurgusu) */
.gold-border-accent {
    position: relative;
}
.gold-border-accent::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #e9c176;
    transition: width 0.3s ease;
}
.gold-border-accent:hover::after {
    width: 100%;
}

/* Hero kararması */
.hero-gradient {
    background: linear-gradient(to bottom, rgba(0, 8, 30, 0.6), rgba(0, 8, 30, 0.3));
}

/* Fade-in animasyonu */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

/* ---------------------------------------------------------------------------
   MOBİL MENÜ (hamburger) — kayar panel
--------------------------------------------------------------------------- */
.mobil-menu {
    position: fixed;
    inset: 0 0 0 auto;
    width: 80%;
    max-width: 320px;
    background: #00081e;
    color: #fff;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 80;
    padding: 96px 24px 24px;
}
.mobil-menu.acik {
    transform: translateX(0);
}
.mobil-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 8, 30, 0.5);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 70;
}
.mobil-overlay.acik {
    opacity: 1;
    visibility: visible;
}

/* ---------------------------------------------------------------------------
   MOBİL FİLTRE PANELİ — alttan/yandan açılır
--------------------------------------------------------------------------- */
.filtre-panel {
    transition: transform 0.35s ease;
}
@media (max-width: 1023px) {
    .filtre-panel {
        position: fixed;
        inset: 0 0 0 auto;
        width: 90%;
        max-width: 360px;
        height: 100%;
        overflow-y: auto;
        transform: translateX(100%);
        z-index: 80;
        border-radius: 0;
    }
    .filtre-panel.acik {
        transform: translateX(0);
    }
}

/* Erişilebilirlik: klavye odağı görünür kalsın */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: 2px solid #e9c176;
    outline-offset: 2px;
}

/* Hareket azaltma tercihi */
@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
}
