/* =========================================
   FİKİR MEYDANI - ORTAK STİL DOSYASI (site.css)
   ========================================= */

/* --- 1. ASP.NET CORE STANDART AYARLARI --- */
html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

/* Buton ve Form Odaklanma (Focus) Efektleri - Mavi yerine Turuncu yapıldı */
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #f39c12;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

/* --- 2. SAYFA YAPISI (ESNEK FOOTER) --- */
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

main, .container {
    flex: 1 0 auto;
}

footer {
    flex-shrink: 0;
}

/* --- 3. PREMIUM MENÜ (NAVBAR) - TURUNCU EFEKT --- */
.navbar-nav .nav-link {
    font-size: 0.95rem;
    font-weight: 600 !important;
    letter-spacing: 0.3px !important;
    color: #1a2538 !important; /* Koyu Lacivert/Siyah Metin */
    transition: color 0.3s ease-in-out, transform 0.3s ease;
    padding: 0.5rem 1rem !important;
    text-decoration: none !important; /* Alt çizgiyi tamamen iptal eder */
    border-bottom: none !important;
}

    /* Üzerine gelince veya aktifken Turuncu (#f39c12) olsun, alt çizgi OLMASIN */
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus,
    .navbar-nav .nav-link.active {
        color: #f39c12 !important;
        transform: translateY(-1px); /* Çok hafif yukarı kalkma hissi */
        text-decoration: none !important;
    }



/* --- 5. FOOTER LİNK PARLAMA EFEKTLERİ --- */
.hover-opacity {
    transition: opacity 0.2s, color 0.2s;
}

    .hover-opacity:hover {
        opacity: 1 !important;
        color: #f39c12 !important; /* Footer linkleri de üzerine gelince turuncu parlar */
    }

/* --- 6. YAPIM AŞAMASINDA OLAN KARTLAR (INACTIVE) --- */
.card-inactive {
    opacity: 0.65;
    pointer-events: none;
    cursor: not-allowed !important;
    filter: grayscale(30%);
    transition: all 0.3s ease;
}

.badge-coming-soon {
    font-size: 0.65rem;
    font-weight: 600;
    color: #6c757d;
    background-color: #f8f9fa;
    border: 1px dashed #adb5bd;
    padding: 4px 10px;
    margin-top: 10px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    display: inline-block;
}

/* --- 7. PREMIUM TASARIM SİSTEMİ (ARKA PLANLAR) --- */
.bg-premium-header {
    background: linear-gradient(90deg, #0d6efd 0%, #1a2538 50%, #0d6efd 100%) !important;
    border-bottom: 3px solid #f39c12 !important; /* Lacivert menüyü alttan turuncu ile kapatır */
}

.bg-premium-box {
    background: linear-gradient(135deg, #1a2538 0%, #0d6efd 100%) !important;
}

.text-premium-white {
    color: #ffffff !important;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

    .text-premium-white:hover {
        opacity: 1;
    }

/* ========================================================================== */
/* FİKİR MEYDANI GLOBAL ARAYÜZ (UI) STANDARTLARI                              */
/* Tüm araçlardaki inputların, butonların ve ışıkların ortak stili            */
/* ========================================================================== */

/* Tüm girdi kutucuklarının (Input) Standart Görünümü */
.fm-input-kutu input,
.fm-search-input,
.form-control {
    border: 2px solid #e2e8f0 !important;
    border-radius: 12px !important; /* Hafif oval, tam kararında kurumsal köşeler */
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02) !important;
}

    /* Kutucuğa Tıklandığında (Focus) Yanan Canlı Mavi Işık Efekti */
    .fm-input-kutu input:focus,
    .fm-search-input:focus,
    .form-control:focus {
        outline: none !important;
        border-color: #0d6efd !important; /* Sitenizin ana canlı mavisi */
        box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.15) !important; /* Arama kutusundaki o yumuşak hale (ışık) efekti */
        background: #ffffff !important;
    }

        /* Kredi ve diğer araçların içindeki İKONLARIN da focus olunca maviye dönmesi */
        .fm-input-kutu input:focus + .fm-input-icon {
            color: #0d6efd !important;
        }


/* --- ORTAK GERİ DÖN BUTONU TASARIMI --- */
.fm-btn-geri {
    background: #ffffff;
    color: #4a5568;
    border: 1px solid #cbd5e0;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

    .fm-btn-geri:hover {
        background: #f8fafc;
        color: #1a202c;
        border-color: #a0aec0;
        box-shadow: 0 4px 8px rgba(0,0,0,0.06);
        transform: translateY(-2px);
    }
/* =========================================
   FİKİR MEYDANI - ORTAK STİL DOSYASI (site.css)
   ========================================= */

/* --- 1. ASP.NET CORE STANDART AYARLARI --- */
html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

/* Buton ve Form Odaklanma (Focus) Efektleri - Mavi yerine Turuncu yapıldı */
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #f39c12;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

/* --- 2. SAYFA YAPISI (ESNEK FOOTER) --- */
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

main, .container {
    flex: 1 0 auto;
}

footer {
    flex-shrink: 0;
}

/* --- 3. PREMIUM MENÜ (NAVBAR) - TURUNCU EFEKT --- */
.navbar-nav .nav-link {
    font-size: 0.95rem;
    font-weight: 600 !important;
    letter-spacing: 0.3px !important;
    color: #1a2538 !important; /* Koyu Lacivert/Siyah Metin */
    transition: color 0.3s ease-in-out, transform 0.3s ease;
    padding: 0.5rem 1rem !important;
    text-decoration: none !important; /* Alt çizgiyi tamamen iptal eder */
    border-bottom: none !important;
}

    /* Üzerine gelince veya aktifken Turuncu (#f39c12) olsun, alt çizgi OLMASIN */
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus,
    .navbar-nav .nav-link.active {
        color: #f39c12 !important;
        transform: translateY(-1px); /* Çok hafif yukarı kalkma hissi */
        text-decoration: none !important;
    }



/* --- 5. FOOTER LİNK PARLAMA EFEKTLERİ --- */
.hover-opacity {
    transition: opacity 0.2s, color 0.2s;
}

    .hover-opacity:hover {
        opacity: 1 !important;
        color: #f39c12 !important; /* Footer linkleri de üzerine gelince turuncu parlar */
    }

/* --- 6. YAPIM AŞAMASINDA OLAN KARTLAR (INACTIVE) --- */
.card-inactive {
    opacity: 0.65;
    pointer-events: none;
    cursor: not-allowed !important;
    filter: grayscale(30%);
    transition: all 0.3s ease;
}

.badge-coming-soon {
    font-size: 0.65rem;
    font-weight: 600;
    color: #6c757d;
    background-color: #f8f9fa;
    border: 1px dashed #adb5bd;
    padding: 4px 10px;
    margin-top: 10px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    display: inline-block;
}

/* --- 7. PREMIUM TASARIM SİSTEMİ (ARKA PLANLAR) --- */
.bg-premium-header {
    background: linear-gradient(90deg, #0d6efd 0%, #1a2538 50%, #0d6efd 100%) !important;
    border-bottom: 3px solid #f39c12 !important; /* Lacivert menüyü alttan turuncu ile kapatır */
}

.bg-premium-box {
    background: linear-gradient(135deg, #1a2538 0%, #0d6efd 100%) !important;
}

.text-premium-white {
    color: #ffffff !important;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

    .text-premium-white:hover {
        opacity: 1;
    }

/* ========================================================================== */
/* FİKİR MEYDANI GLOBAL ARAYÜZ (UI) STANDARTLARI                              */
/* Tüm araçlardaki inputların, butonların ve ışıkların ortak stili            */
/* ========================================================================== */

/* Tüm girdi kutucuklarının (Input) Standart Görünümü */
.fm-input-kutu input,
.fm-search-input,
.form-control {
    border: 2px solid #e2e8f0 !important;
    border-radius: 12px !important; /* Hafif oval, tam kararında kurumsal köşeler */
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02) !important;
}

    /* Kutucuğa Tıklandığında (Focus) Yanan Canlı Mavi Işık Efekti */
    .fm-input-kutu input:focus,
    .fm-search-input:focus,
    .form-control:focus {
        outline: none !important;
        border-color: #0d6efd !important; /* Sitenizin ana canlı mavisi */
        box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.15) !important; /* Arama kutusundaki o yumuşak hale (ışık) efekti */
        background: #ffffff !important;
    }

        /* Kredi ve diğer araçların içindeki İKONLARIN da focus olunca maviye dönmesi */
        .fm-input-kutu input:focus + .fm-input-icon {
            color: #0d6efd !important;
        }


/* --- ORTAK GERİ DÖN BUTONU TASARIMI --- */
.fm-btn-geri {
    background: #ffffff;
    color: #4a5568;
    border: 1px solid #cbd5e0;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

    .fm-btn-geri:hover {
        background: #f8fafc;
        color: #1a202c;
        border-color: #a0aec0;
        box-shadow: 0 4px 8px rgba(0,0,0,0.06);
        transform: translateY(-2px);
    }
