/* ========================================================
   ANADOLUNOVA KLİMA - DAIKIN YETKİLİ BAYİ & SERVİS
   Kurumsal & Gerçekçi Tasarım Sistemi
======================================================== */

:root {
    --daikin-cyan: #0097E6;
    --daikin-navy: #002F6C;
    --daikin-dark: #001f48;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #1e293b;
    line-height: 1.5;
}

h1, h2, h3, h4, h5, .font-heading {
    font-family: 'Outfit', 'Inter', sans-serif;
    letter-spacing: -0.02em;
}

/* Header & Navigation */
#mainHeader {
    transition: all 0.2s ease-in-out;
}

/* Filter Buttons */
.filter-btn {
    background-color: #ffffff;
    color: #475569;
    border: 1px solid #cbd5e1;
    cursor: pointer;
}

.filter-btn:hover {
    background-color: #f1f5f9;
    color: #0f172a;
    border-color: #94a3b8;
}

.filter-btn.active {
    background-color: #002F6C;
    color: #ffffff;
    border-color: #002F6C;
    box-shadow: 0 1px 3px 0 rgba(0, 47, 108, 0.2);
}

/* Gallery Cards */
.gallery-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px -4px rgba(0, 0, 0, 0.08);
}

/* Inputs & Form Elements */
input, select, textarea {
    font-size: 14px;
    color: #1e293b;
}

input:focus, select:focus, textarea:focus {
    border-color: #0097E6 !important;
    box-shadow: 0 0 0 1px #0097E6;
}

/* Lightbox Animation */
#lightboxModal.flex {
    animation: simpleFadeIn 0.2s ease-out;
}

@keyframes simpleFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 7px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #94a3b8;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #64748b;
}
