/*
 * Luminie shared header refinement.
 * Loaded last so the public header has one production override surface.
 */
:root {
  --site-header-height: 64px;
  --site-header-border: rgba(15, 23, 42, 0.08);
  --site-header-surface: rgba(255, 255, 255, 0.96);
  --site-header-text: #162033;
  --site-header-muted: #667085;
  --site-header-accent: #2563eb;
  --site-header-accent-soft: rgba(37, 99, 235, 0.1);
  --site-header-shadow: 0 18px 46px rgba(15, 23, 42, 0.12);
  --site-header-radius: 12px;
}

.modern-navbar {
  min-height: var(--site-header-height);
  background: var(--site-header-surface) !important;
  border-bottom: 1px solid var(--site-header-border);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
}

.modern-navbar .container,
.modern-navbar .container-fluid {
  min-width: 0;
}

.modern-navbar .navbar-brand {
  min-width: 0;
  padding: 0.25rem 0;
}

.modern-navbar .navbar-brand img {
  max-height: 42px;
  width: auto;
}

.modern-navbar .navbar-nav {
  align-items: center;
  gap: 0.15rem;
  min-width: 0;
}

.modern-navbar .nav-link {
  border-radius: 10px;
  color: var(--site-header-text) !important;
  font-weight: 600;
  line-height: 1.1;
  padding: 0.62rem 0.78rem !important;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
  white-space: nowrap;
}

.modern-navbar .nav-link:hover,
.modern-navbar .nav-link:focus-visible {
  background: var(--site-header-accent-soft);
  color: var(--site-header-accent) !important;
  transform: translateY(-1px);
}

.modern-navbar .nav-link.active,
.modern-navbar .navbar-nav .show > .nav-link {
  background: #eef5ff;
  color: var(--site-header-accent) !important;
}

.modern-navbar .btn,
.modern-navbar .auth-btn,
.modern-navbar .user-menu-btn,
.modern-navbar .search-btn {
  border-radius: 10px !important;
  min-height: 40px;
}

.modern-navbar .btn-primary,
.modern-navbar .auth-btn.primary,
.modern-navbar .register-btn {
  background: linear-gradient(135deg, #1d4ed8, #0ea5e9) !important;
  border-color: transparent !important;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.22);
}

.modern-navbar .user-dropdown,
.modern-navbar .dropdown-menu {
  border: 1px solid var(--site-header-border) !important;
  border-radius: var(--site-header-radius) !important;
  box-shadow: var(--site-header-shadow) !important;
}

.mobile-navbar-container {
  min-height: 60px;
  background: var(--site-header-surface);
  border-bottom: 1px solid var(--site-header-border);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  z-index: 12020;
}

.mobile-brand {
  min-width: 0;
}

.mobile-brand img {
  max-height: 36px;
  width: auto;
}

.mobile-brand span {
  color: var(--site-header-text);
  font-weight: 800;
  letter-spacing: 0;
}

.mobile-actions {
  gap: 0.36rem;
}

.mobile-action-btn {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 10px;
  color: var(--site-header-text);
  min-height: 40px;
  min-width: 40px;
}

.mobile-action-btn:focus-visible,
.mobile-menu-close:focus-visible,
.mobile-menu-item:focus-visible,
.mobile-profile-link:focus-visible,
.mobile-search-input:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.28);
  outline-offset: 2px;
}

.mobile-menu-overlay {
  z-index: 12030;
}

.mobile-menu-panel {
  background: #ffffff;
  border-left: 1px solid var(--site-header-border);
  box-shadow: -22px 0 54px rgba(15, 23, 42, 0.16);
  z-index: 12040;
}

.mobile-menu-header {
  background: linear-gradient(135deg, #f8fbff, #eef6ff);
  border-bottom: 1px solid var(--site-header-border);
}

.mobile-menu-section-title {
  color: var(--site-header-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mobile-menu-item {
  border-radius: 10px;
  color: var(--site-header-text);
  min-height: 44px;
}

.mobile-menu-item.active,
.mobile-menu-item:hover {
  background: var(--site-header-accent-soft);
  color: var(--site-header-accent);
}

.mobile-search-panel,
.mobile-notification-panel,
.mobile-profile-dropdown {
  border: 1px solid var(--site-header-border);
  border-radius: var(--site-header-radius);
  box-shadow: var(--site-header-shadow);
  z-index: 12050;
}

.mobile-search-panel,
.mobile-notification-panel {
  transition: transform 0.24s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.mobile-search-panel:not(.active),
.mobile-notification-panel:not(.active) {
  transform: translateY(-200%) !important;
}

.mobile-profile-backdrop {
  z-index: 12045;
}

.mobile-search-input {
  border: 1px solid var(--site-header-border);
  border-radius: 10px;
}

.mobile-menu-overlay[aria-hidden="true"],
.mobile-menu-panel[aria-hidden="true"],
.mobile-search-panel[aria-hidden="true"],
.mobile-notification-panel[aria-hidden="true"],
.mobile-profile-dropdown[aria-hidden="true"],
.mobile-profile-backdrop[aria-hidden="true"] {
  pointer-events: none;
}

body.header-menu-open {
  overflow: hidden;
}

@media (max-width: 1199px) and (min-width: 992px) {
  .modern-navbar .navbar-brand img {
    max-height: 36px;
  }

  .modern-navbar .nav-link {
    font-size: 0.9rem;
    padding-inline: 0.55rem !important;
  }

  .modern-navbar .btn,
  .modern-navbar .auth-btn,
  .modern-navbar .user-menu-btn,
  .modern-navbar .search-btn {
    min-height: 38px;
    padding-inline: 0.62rem !important;
  }
}

@media (max-width: 991px) {
  body {
    padding-top: 60px !important;
  }

  .modern-navbar {
    display: none !important;
  }

  .mobile-navbar-container {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 60px !important;
    min-height: 60px !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 1rem !important;
    z-index: 12020 !important;
  }
}

@media (max-width: 420px) {
  .mobile-navbar-container {
    padding-inline: 0.72rem;
  }

  .mobile-brand span {
    display: none;
  }

  .mobile-actions {
    gap: 0.28rem;
  }

  .mobile-action-btn {
    min-height: 38px;
    min-width: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .modern-navbar .nav-link,
  .mobile-menu-panel,
  .mobile-search-panel,
  .mobile-notification-panel,
  .mobile-profile-dropdown {
    transition: none !important;
  }
}
/**
 * Luminie - Ortak Mobil CSS StandartlarÄ±
 * Tüm sayfalarda tutarlı mobil deneyim için standart CSS kuralları
 * Güvenli şekilde mevcut stilleri bozmadan eklenir
 */

/* ==========================================================================
   MOBIL STANDART BREAKPOINT'LER
   ========================================================================== */

/* Ana mobil breakpoint - 768px ve altÄ± */
@media (max-width: 768px) {
    
    /* ==========================================================================
       GENEL CONTAINER VE LAYOUT
       ========================================================================== */
    
    .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    /* Sayfa baÅŸlÄ±klarÄ± */
    .page-header {
        padding: 2rem 0 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .page-header h1 {
        font-size: 1.75rem !important;
    }
    
    .page-header p {
        font-size: 1rem !important;
    }
    
    /* ==========================================================================
       KART SISTEMLERI - TÜM SAYFALARDA TUTARLI
       ========================================================================== */
    
    /* Modern kartlar (resources, categories vb.) */
    .modern-card {
        margin-bottom: 1rem !important;
        border-radius: 12px !important;
    }
    
    .modern-card .card-image {
        height: 180px !important;
    }
    
    .modern-card .card-content {
        padding: 1rem !important;
    }
    
    /* Kategori kartlarÄ± */
    .category-card,
    .modern-category-card {
        margin-bottom: 1rem !important;
        border-radius: 12px !important;
        min-height: 200px !important;
    }
    
    /* İçerik kartları */
    .content-card {
        margin-bottom: 1rem !important;
        padding: 1rem !important;
    }
    
    /* ==========================================================================
       FORM VE INPUT STANDARTLARI
       ========================================================================== */
    
    /* iOS zoom engellemek için 16px minimum font */
    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="search"],
    textarea,
    select {
        font-size: 16px !important;
        padding: 12px 16px !important;
        border-radius: 8px !important;
    }
    
    /* Arama inputlarÄ± */
    .search-input,
    .search-input-group input {
        font-size: 16px !important;
        padding: 12px 16px !important;
    }
    
    /* ==========================================================================
       BUTON STANDARTLARI
       ========================================================================== */
    
    /* Minimum dokunma alanÄ± 44px */
    .btn {
        min-height: 44px !important;
        min-width: 44px !important;
        padding: 12px 16px !important;
    }
    
    .btn-sm {
        min-height: 36px !important;
        padding: 8px 12px !important;
    }
    
    .btn-lg {
        min-height: 52px !important;
        padding: 16px 24px !important;
    }
    
    /* ==========================================================================
       FILTRE VE ARAMA BÖLÜMLERI
       ========================================================================== */
    
    .filters-section {
        padding: 1.5rem 1rem !important;
        margin-bottom: 1.5rem !important;
        border-radius: 16px !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    }

    .filters-section::before {
        height: 3px !important;
    }

    .filters-section .row {
        gap: 1rem;
    }

    .filters-section .col-md-4,
    .filters-section .col-md-3,
    .filters-section .col-md-6 {
        margin-bottom: 1rem;
    }

    .search-input-group {
        border-radius: 14px !important;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08) !important;
    }

    .search-input-group input {
        padding: 14px 16px !important;
        padding-right: 70px !important;
    }

    .search-input-group .search-btn {
        padding: 8px 12px !important;
        border-radius: 10px !important;
        right: 4px !important;
    }
    
    /* ==========================================================================
       SAYFALAMA (PAGINATION)
       ========================================================================== */
    
    .pagination-container {
        padding: 1rem !important;
        margin-top: 1rem !important;
        border-radius: 12px !important;
    }
    
    .pagination .page-link {
        min-height: 44px !important;
        min-width: 44px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* ==========================================================================
       GRID SISTEMLERI
       ========================================================================== */
    
    /* İçerik grid'leri */
    .content-grid,
    .resources-grid {
        gap: 1rem !important;
    }
    
    /* Kategori grid'leri */
    .categories-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        padding: 0 0.5rem !important;
    }
    
    /* ==========================================================================
       TOUCH OPTIMIZASYONLARI
       ========================================================================== */
    
    /* Tüm tıklanabilir elementler için */
    .btn,
    .card,
    .nav-link,
    .dropdown-item,
    .page-link,
    .modern-card,
    .category-card {
        -webkit-tap-highlight-color: rgba(59, 130, 246, 0.1) !important;
    }
    
    /* ==========================================================================
       FLOATING ELEMENTLER
       ========================================================================== */
    
    .floating-contact {
        bottom: 20px !important;
        right: 20px !important;
        gap: 12px !important;
    }
    
    .floating-btn {
        width: 55px !important;
        height: 55px !important;
        font-size: 1.4rem !important;
    }
    
    /* Tooltip'leri mobilde gizle */
    .floating-btn::after,
    .tooltip {
        display: none !important;
    }
}

/* ==========================================================================
   KÜÇÜK MOBIL CIHAZLAR - 576px ve altı
   ========================================================================== */

@media (max-width: 576px) {
    
    /* Container padding'i daha da azalt */
    .container {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }
    
    /* Sayfa başlıkları daha küçük */
    .page-header {
        padding: 1.5rem 0 1rem !important;
    }
    
    .page-header h1 {
        font-size: 1.5rem !important;
    }
    
    /* Kartlar daha kompakt */
    .modern-card,
    .category-card,
    .content-card {
        margin-bottom: 0.75rem !important;
        padding: 0.75rem !important;
    }
    
    .modern-card .card-image {
        height: 150px !important;
    }
    
    /* Filtre bölümü daha kompakt */
    .filters-section {
        padding: 0.75rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    /* Butonlar biraz daha küçük ama hala dokunma dostu */
    .btn {
        padding: 10px 14px !important;
        font-size: 0.9rem !important;
    }
    
    /* Grid gap'leri azalt */
    .content-grid,
    .resources-grid,
    .categories-grid {
        gap: 0.75rem !important;
    }
}

/* ==========================================================================
   FOOTER MOBIL OPTIMIZASYONLARI
   ========================================================================== */

@media (max-width: 768px) {
    /* Ana sayfa hariç tüm sayfalarda footer'ı gizle */
    body:not(.homepage) .modern-footer {
        display: none !important;
    }

    /* Ana sayfa footer'Ä±nÄ± mobilde kompakt yap */
    body.homepage .desktop-footer {
        display: none !important;
    }

    body.homepage .mobile-footer {
        display: block !important;
    }

    /* Footer gizli sayfalarda alt padding ekle */
    body:not(.homepage) {
        padding-bottom: 2rem;
    }
}

/* ==========================================================================
   DROPDOWN MOBIL OPTIMIZASYONLARI
   ========================================================================== */

@media (max-width: 768px) {
    /* Mobil dropdown'lar için tam ekran modal — yalnızca açıkken */
    .dropdown-menu.show {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        max-width: none !important;
        max-height: none !important;
        border: none !important;
        border-radius: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        transform: none !important;
        z-index: 9999 !important;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        animation: mobileDropdownSlide 0.3s ease-out;
        display: flex !important;
        flex-direction: column;
        overflow-y: auto;
    }

    .dropdown-menu:not(.show) {
        display: none !important;
    }

    @keyframes mobileDropdownSlide {
        from {
            opacity: 0;
            transform: translateY(100%);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Dropdown header */
    .dropdown-menu::before {
        content: '';
        position: sticky;
        top: 0;
        height: 60px;
        background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
        color: white;
        font-weight: 600;
        font-size: 18px;
        z-index: 10;
        flex-shrink: 0;
    }

    /* Notification dropdown header */
    .notification-menu::before {
        content: 'Bildirimler';
    }

    /* User dropdown header */
    .dropdown-menu[data-dropdown-type="profile"]::before,
    .user-menu::before {
        content: 'Profil Men?s?';
    }

    /* Close button */
    .mobile-close-btn {
        position: absolute;
        top: 15px;
        right: 20px;
        background: rgba(255, 255, 255, 0.2);
        border: none;
        color: white;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        cursor: pointer;
        z-index: 11;
        transition: all 0.2s ease;
        font-weight: bold;
    }

    .mobile-close-btn:hover,
    .mobile-close-btn:focus {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.1);
    }

    /* Notification menu content */
    .notification-menu {
        flex: 1;
        overflow-y: auto;
        padding: 0;
        margin-top: 0;
        background: transparent;
        border: none;
        box-shadow: none;
    }

    .notification-header {
        display: none; /* Hidden since we have modal header */
    }

    .notification-list {
        max-height: none;
        padding: 20px;
        background: white;
        margin: 0;
    }

    .notification-item {
        padding: 20px;
        border-radius: 12px;
        margin-bottom: 12px;
        background: #f8f9ff;
        border: 1px solid #e2e8f0;
        transition: all 0.3s ease;
    }

    .notification-item:hover {
        transform: none;
        background: #f1f5f9;
    }

    .notification-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        flex-shrink: 0;
    }

    .notification-title {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 4px;
    }

    .notification-text {
        font-size: 14px;
        color: #64748b;
        margin-bottom: 8px;
    }

    .notification-time {
        font-size: 12px;
        color: #94a3b8;
    }

    .notification-footer {
        padding: 20px;
        position: sticky;
        bottom: 0;
        background: white;
        border-top: 1px solid #e2e8f0;
        margin-top: auto;
        flex-shrink: 0;
    }

    /* User menu content */
    .user-menu {
        flex: 1;
        overflow-y: auto;
        padding: 20px;
        background: white;
        border: none;
        box-shadow: none;
    }

    .user-menu-header {
        display: none; /* Hidden since we have modal header */
    }

    .user-menu .dropdown-item {
        padding: 16px 20px;
        border-radius: 12px;
        margin-bottom: 8px;
        background: #f8f9ff;
        border: 1px solid #e2e8f0;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
        color: #1e293b;
        font-weight: 500;
    }

    .user-menu .dropdown-item:hover {
        background: #f1f5f9;
        transform: translateX(5px);
        color: #1e293b;
    }

    .user-menu .dropdown-item i {
        width: 20px;
        text-align: center;
        color: var(--primary-blue);
    }

    /* Touch optimizasyonlarÄ± */
    .notification-item,
    .user-menu .dropdown-item,
    .mobile-close-btn {
        -webkit-tap-highlight-color: rgba(59, 130, 246, 0.1);
        min-height: 44px;
    }

    /* Safe area for iOS */
    .dropdown-menu {
        padding-bottom: env(safe-area-inset-bottom);
    }
}

/* ==========================================================================
   WEBVIEW ÖZEL OPTIMIZASYONLAR
   ========================================================================== */

/* WebView algılama için */
@media (max-width: 768px) {

    /* WebView'da scroll performansı için */
    * {
        -webkit-overflow-scrolling: touch;
    }

    /* WebView'da animasyon performansÄ± */
    .modern-card,
    .category-card {
        will-change: transform;
        transform: translateZ(0);
    }

    /* WebView'da input focus sorunları için */
    input:focus,
    textarea:focus,
    select:focus {
        transform: translateZ(0);
        -webkit-appearance: none;
        appearance: none;
    }
}

/* ==========================================================================
   ACCESSIBILITY VE KULLANICILIK
   ========================================================================== */

@media (max-width: 768px) {
    
    /* Reduced motion desteÄŸi */
    @media (prefers-reduced-motion: reduce) {
        .modern-card,
        .category-card,
        .btn {
            transition: none !important;
            animation: none !important;
        }
    }
    
    /* Dark mode desteÄŸi */
    @media (prefers-color-scheme: dark) {
        .modern-card,
        .filters-section,
        .pagination-container {
            background-color: #1f2937 !important;
            border-color: #374151 !important;
            color: #f9fafb !important;
        }
    }
    
    /* High contrast desteÄŸi */
    @media (prefers-contrast: high) {
        .btn,
        .modern-card,
        .category-card {
            border: 2px solid currentColor !important;
        }
    }
}
/* ==========================================================================
   MOBILE-FIRST NAVBAR SYSTEM
   App-like navigation experience for mobile users
   ========================================================================== */

/* Mobile Navigation Variables */
:root {
  --mobile-nav-height: 60px;
  --mobile-nav-bg: rgba(255, 255, 255, 0.95);
  --mobile-nav-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  --mobile-touch-target: 44px;
  --mobile-animation-speed: 0.3s;
  --mobile-backdrop: rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   MOBILE NAVBAR CORE
   ========================================================================== */

/* ≤991px: Bootstrap lg kırılımı — özel mobil/tablet navbar */
@media (max-width: 991px) {

  /* Hide default Bootstrap navbar toggler */
  .navbar-toggler {
    display: none !important;
  }

  /* Mobile navbar container */
  .mobile-navbar-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--mobile-nav-height);
    background: var(--mobile-nav-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: var(--mobile-nav-shadow);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
  }

  /* Mobile brand */
  .mobile-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
    min-height: var(--mobile-touch-target);
    flex: 1 1 auto;
    min-width: 0;
  }

  .mobile-brand * {
    pointer-events: none;
  }

  .mobile-brand img {
    height: 32px;
    width: auto;
    margin-right: 0.5rem;
  }

  /* Mobile actions container */
  .mobile-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  /* Mobile action buttons */
  .mobile-action-btn {
    width: var(--mobile-touch-target);
    height: var(--mobile-touch-target);
    border: none;
    background: transparent;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.1rem;
    transition: all var(--mobile-animation-speed) ease;
    position: relative;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-action-btn:hover,
  .mobile-action-btn:focus {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-blue);
    transform: scale(1.05);
  }

  .mobile-profile-btn .mobile-profile-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    display: grid;
    place-items: center;
    pointer-events: none;
  }

  .mobile-profile-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.35);
    z-index: 1055;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }

  .mobile-profile-backdrop.active {
    opacity: 1;
    visibility: visible;
  }

  .mobile-profile-dropdown {
    position: fixed;
    top: calc(var(--mobile-nav-height) + 8px);
    right: 12px;
    left: 12px;
    max-width: 320px;
    margin-left: auto;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
    border: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 1060;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .mobile-profile-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-profile-dropdown-header {
    padding: 12px 16px 8px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .mobile-profile-dropdown-header strong {
    font-size: 0.95rem;
    color: var(--text-primary);
  }

  .mobile-profile-dropdown-header span {
    font-size: 0.75rem;
    color: var(--text-secondary);
  }

  .mobile-profile-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
  }

  .mobile-profile-link:hover,
  .mobile-profile-link:focus {
    background: rgba(59, 130, 246, 0.08);
    color: var(--primary-blue);
  }

  .mobile-profile-link.is-danger {
    color: var(--error-red);
    border-top: 1px solid var(--border-light);
    margin-top: 4px;
  }

  .mobile-action-btn:active {
    transform: scale(0.95);
  }

  /* Badge for notifications */
  .mobile-action-btn .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    min-width: 18px;
    height: 18px;
    font-size: 0.7rem;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--error-red);
    color: white;
    border: 2px solid white;
  }

  /* Mobile menu button - ENHANCED FOR VISIBILITY */
  .mobile-menu-btn {
    background: linear-gradient(135deg, #3B82F6, #8B5CF6) !important;
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4) !important;
    position: relative;
    overflow: hidden;
  }

  .mobile-menu-btn:hover,
  .mobile-menu-btn:focus {
    background: linear-gradient(135deg, #2563EB, #7C3AED) !important;
    color: white;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6) !important;
    transform: scale(1.1);
  }

  /* Glow effect on menu button */
  .mobile-menu-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
  }

  .mobile-menu-btn:hover::after {
    opacity: 1;
  }

  /* Pulse animation for first-time visitors */
  @keyframes menuPulse {

    0%,
    100% {
      transform: scale(1);
      box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
    }

    50% {
      transform: scale(1.15);
      box-shadow: 0 6px 24px rgba(59, 130, 246, 0.7);
    }
  }

  /* Apply pulse on first load - can be controlled via JS */
  .mobile-menu-btn.pulse-hint {
    animation: menuPulse 2s ease-in-out 3;
  }


  /* Body padding for fixed navbar */
  body {
    padding-top: var(--mobile-nav-height) !important;
  }

  /* Hide Bootstrap navbar (custom mobile/tablet navbar) */
  .modern-navbar {
    display: none !important;
  }
}

/* ==========================================================================
   MASAÜSTÜ (≥992px): Bootstrap navbar
   ========================================================================== */

@media (min-width: 992px) {

  .mobile-navbar-container,
  .mobile-menu-overlay,
  .mobile-menu-panel,
  .mobile-notification-panel,
  .mobile-search-panel {
    display: none !important;
  }

  .modern-navbar {
    display: block !important;
  }

  body {
    padding-top: 0 !important;
  }
}

/* ==========================================================================
   MOBILE SLIDE-OUT MENU
   ========================================================================== */

@media (max-width: 991px) {

  /* Mobile menu overlay */
  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--mobile-backdrop);
    z-index: 1060;
    opacity: 0;
    visibility: hidden;
    transition: all var(--mobile-animation-speed) ease;
  }

  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Mobile menu panel */
  .mobile-menu-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: white;
    z-index: 1070;
    transition: right var(--mobile-animation-speed) cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    /* Touch scroll optimizasyonlarÄ± */
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    /* iOS Safari için scroll fix */
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  .mobile-menu-panel.active {
    right: 0;
  }

  /* Mobile menu header */
  .mobile-menu-header {
    padding: 1.5rem 1rem 1rem;
    border-bottom: 1px solid var(--border-light);
    background: linear-gradient(135deg,
        var(--primary-blue),
        var(--primary-purple));
    color: white;
  }

  .mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.2s ease;
  }

  .mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
  }

  .mobile-menu-user {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
  }

  .mobile-menu-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
  }

  .mobile-menu-user-info h6 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
  }

  .mobile-menu-user-info p {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.9;
  }

  /* Mobile menu content */
  .mobile-menu-content {
    padding: 0;
    height: calc(100vh - 80px);
    /* Header alanını çıkar */
    overflow-y: auto;
    overflow-x: hidden;
    /* Touch scroll optimizasyonlarÄ± */
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    /* Momentum scrolling için */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  /* Mobile menu sections */
  .mobile-menu-section {
    border-bottom: 1px solid var(--border-light);
  }

  .mobile-menu-section:last-child {
    border-bottom: none;
  }

  .mobile-menu-section-title {
    padding: 1rem;
    margin: 0;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--bg-light);
  }

  /* Mobile menu items */
  .mobile-menu-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.2s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    min-height: var(--mobile-touch-target);
  }

  .mobile-menu-item:hover,
  .mobile-menu-item:focus {
    background: rgba(59, 130, 246, 0.05);
    color: var(--primary-blue);
    transform: translateX(4px);
  }

  .mobile-menu-item:active {
    background: rgba(59, 130, 246, 0.1);
  }

  .mobile-menu-item i,
  .mobile-menu-item span:not(.badge) {
    pointer-events: none;
  }

  .mobile-menu-item i {
    width: 24px;
    margin-right: 0.75rem;
    font-size: 1rem;
    text-align: center;
    flex-shrink: 0;
  }

  .mobile-action-btn * {
    pointer-events: none;
  }

  .mobile-quota-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: var(--mobile-touch-target);
    height: var(--mobile-touch-target);
    padding: 0 0.5rem;
    border-radius: 12px;
    font-size: 0.72rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    color: #047857;
    border: 1px solid #a7f3d0;
    flex-shrink: 0;
  }

  .mobile-menu-item .badge {
    margin-left: auto;
    background: var(--error-red);
    color: white;
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    min-width: 20px;
    text-align: center;
  }

  /* Active menu item */
  .mobile-menu-item.active {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-blue);
    font-weight: 600;
    position: relative;
  }

  .mobile-menu-item.active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-blue);
  }

  /* Smooth animations */
  .mobile-menu-panel,
  .mobile-notification-panel,
  .mobile-search-panel {
    will-change: transform;
  }

  /* iOS Safari fixes */
  .mobile-navbar-container,
  .mobile-menu-panel {
    -webkit-overflow-scrolling: touch;
  }

  /* Ek mobile scroll optimizasyonlarÄ± */
  .mobile-menu-panel {
    /* iOS Safari için viewport height fix */
    height: 100vh;
    height: -webkit-fill-available;
    /* Android Chrome için */
    min-height: 100vh;
    min-height: -webkit-fill-available;
  }

  /* Menu content scroll container */
  .mobile-menu-content {
    /* Touch scroll için optimizasyonlar */
    touch-action: pan-y;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
  }

  /* Menu item'lar için touch optimizasyonu */
  .mobile-menu-item {
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(59, 130, 246, 0.1);
  }

  /* Prevent text selection on buttons */
  .mobile-action-btn,
  .mobile-menu-close {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  /* Logout item */
  .mobile-menu-item.logout {
    color: var(--error-red);
    border-top: 1px solid var(--border-light);
    margin-top: 0.5rem;
  }

  .mobile-menu-item.logout:hover {
    background: rgba(239, 68, 68, 0.05);
    color: var(--error-red);
  }
}

/* ==========================================================================
   MOBILE DROPDOWN ALTERNATIVES
   ========================================================================== */

@media (max-width: 991px) {

  /* Hide desktop dropdowns (inline .show rules cannot override) */
  .modern-navbar .dropdown-menu,
  #mainUserMenu,
  #mainUserMenu.show,
  #mainUserMenu.is-fixed-open,
  .dropdown-menu.show {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
  }

  /* Mobil profil paneli yalnızca .active iken görünsün */
  .mobile-profile-dropdown:not(.active),
  .mobile-profile-backdrop:not(.active) {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  /* Mobile notification panel */
  .mobile-notification-panel {
    position: fixed;
    top: var(--mobile-nav-height);
    left: 0;
    right: 0;
    max-height: 60vh;
    background: white;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    transition: transform var(--mobile-animation-speed) ease;
    overflow-y: auto;
    z-index: 1040;
  }

  .mobile-notification-panel.active {
    transform: translateY(0);
  }

  .mobile-notification-item {
    padding: 1rem;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    transition: background 0.2s ease;
  }

  .mobile-notification-item:hover {
    background: var(--bg-light);
  }

  .mobile-notification-item:last-child {
    border-bottom: none;
  }

  .mobile-notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    flex-shrink: 0;
  }

  .mobile-notification-content h6 {
    margin: 0 0 0.25rem;
    font-size: 0.9rem;
    font-weight: 600;
  }

  .mobile-notification-content p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
  }

  .mobile-notification-time {
    font-size: 0.7rem;
    color: var(--text-tertiary);
    margin-top: 0.25rem;
  }
}

/* ==========================================================================
   MOBILE SEARCH INTEGRATION
   ========================================================================== */

@media (max-width: 991px) {
  .mobile-search-panel {
    position: fixed;
    top: var(--mobile-nav-height);
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    transform: translateY(-100%);
    transition: transform var(--mobile-animation-speed) ease;
    z-index: 1040;
  }

  .mobile-search-panel.active {
    transform: translateY(0);
  }

  .mobile-search-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-size: 16px;
    /* Prevents zoom on iOS */
    background: var(--bg-light);
    transition: all 0.2s ease;
  }

  .mobile-search-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: white;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  }

  .mobile-search-suggestions {
    margin-top: 0.5rem;
    max-height: 200px;
    overflow-y: auto;
  }

  .mobile-search-suggestion {
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 0.25rem;
    background: var(--bg-light);
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .mobile-search-suggestion:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateX(4px);
  }
}
/**
 * Mobile Scroll Fix
 * Mobil cihazlarda sidebar scroll sorunlarını çözen CSS
 */

/* Mobile scroll optimizasyonlarÄ± */
@media (max-width: 768px) {
    /* Body scroll kontrolü */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }
    
    /* Mobile menu panel scroll fix */
    .mobile-menu-panel {
        /* Scroll container optimizasyonlarÄ± */
        overflow-y: scroll !important;
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        overscroll-behavior: contain !important;
        
        /* iOS Safari için özel düzeltmeler */
        -webkit-transform: translate3d(0, 0, 0) !important;
        transform: translate3d(0, 0, 0) !important;
        
        /* Viewport height düzeltmeleri */
        height: 100vh !important;
        height: -webkit-fill-available !important;
        min-height: 100vh !important;
        min-height: -webkit-fill-available !important;
        
        /* Touch action */
        touch-action: pan-y !important;
    }
    
    /* Menu content için scroll container */
    .mobile-menu-content {
        /* Scroll optimizasyonlarÄ± */
        overflow-y: auto !important;
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        overscroll-behavior: contain !important;
        
        /* Height düzeltmeleri */
        max-height: calc(100vh - 80px) !important;
        min-height: calc(100vh - 80px) !important;
        
        /* Touch scroll için */
        touch-action: pan-y !important;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
        
        /* Momentum scrolling */
        -webkit-transform: translateZ(0) !important;
        transform: translateZ(0) !important;
        will-change: scroll-position;
    }
    
    /* Menu section'lar için */
    .mobile-menu-section {
        /* Touch optimizasyonu */
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Menu item'lar için */
    .mobile-menu-item {
        /* Touch feedback */
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: rgba(59, 130, 246, 0.1) !important;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
        
        /* Scroll sÄ±rasÄ±nda tÄ±klamayÄ± engelle */
        pointer-events: auto;
    }
    
    /* Scroll bar styling */
    .mobile-menu-content::-webkit-scrollbar {
        width: 4px;
    }
    
    .mobile-menu-content::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .mobile-menu-content::-webkit-scrollbar-thumb {
        background: rgba(59, 130, 246, 0.3);
        border-radius: 2px;
    }
    
    .mobile-menu-content::-webkit-scrollbar-thumb:hover {
        background: rgba(59, 130, 246, 0.5);
    }
    
    /* Android Chrome için özel düzeltmeler */
    @supports (-webkit-appearance: none) {
        .mobile-menu-panel {
            height: 100vh !important;
        }
        
        .mobile-menu-content {
            height: calc(100vh - 80px) !important;
        }
    }
    
    /* iOS Safari için özel düzeltmeler */
    @supports (-webkit-touch-callout: none) {
        .mobile-menu-panel {
            height: -webkit-fill-available !important;
        }
        
        .mobile-menu-content {
            height: calc(-webkit-fill-available - 80px) !important;
            -webkit-overflow-scrolling: touch !important;
        }
    }
    
    /* Samsung Internet için */
    @media screen and (-webkit-min-device-pixel-ratio: 0) {
        .mobile-menu-content {
            overflow-y: scroll !important;
        }
    }
}

/* Genel touch optimizasyonlarÄ± */
@media (pointer: coarse) {
    .mobile-menu-item {
        min-height: 48px;
        display: flex;
        align-items: center;
    }
}

/* High DPI ekranlar için */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .mobile-menu-content::-webkit-scrollbar-thumb {
        background: rgba(59, 130, 246, 0.4);
    }
}


/* Scroll alanını genişletmek için ek kurallar */
@media (max-width: 768px) {
  /* Menu container'a extra space */
  .mobile-menu-panel .mobile-menu-content {
    /* Alt kÄ±sma extra padding */
    padding-bottom: 80px !important;
  }

 

  /* Scroll indicator */
  .mobile-menu-panel::after {
    content: "";
    display: block;
    height: 100px;
    width: 100%;
    background: transparent;
  }
}
/* Mobile Optimizations for Luminie Project */

/* General Mobile Styles */
@media (max-width: 768px) {
    .container-fluid {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .btn {
        font-size: 14px;
        padding: 8px 12px;
    }
    
    .card {
        margin-bottom: 15px;
    }
    
    .card-body {
        padding: 15px;
    }
}

/* Text Editor Mobile Optimizations */
@media (max-width: 768px) {
    .editor-container {
        flex-direction: column;
    }
    
    .editor-sidebar {
        width: 100%;
        order: 2;
        margin-top: 15px;
    }
    
    .editor-canvas-container {
        width: 100%;
        order: 1;
    }
    
    .editor-toolbar {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .btn-save, .btn-save-as, .btn-download {
        flex: 1;
        min-width: 120px;
    }
    
    .tool-section {
        margin-bottom: 15px;
    }
    
    .form-control, .form-select {
        font-size: 16px; /* Prevent zoom on iOS */
    }
}

/* Profile Page Mobile Optimizations */
@media (max-width: 768px) {
    .profile-stats {
        flex-direction: column;
    }
    
    .stat-card {
        margin-bottom: 10px;
    }
    
    .folder-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .folder-actions {
        margin-top: 10px;
        width: 100%;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .content-card {
        margin-bottom: 15px;
    }
}

/* Modal Mobile Optimizations */
@media (max-width: 768px) {
    .modal-dialog {
        margin: 10px;
        max-width: calc(100% - 20px);
    }
    
    .modal-body {
        padding: 20px 15px;
    }
    
    .modal-footer {
        padding: 15px;
        flex-direction: column;
    }
    
    .modal-footer .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .modal-footer .btn:last-child {
        margin-bottom: 0;
    }
}

/* Toast Notifications Mobile */
@media (max-width: 768px) {
    .toast-container {
        position: fixed;
        top: 100px !important;
        left: 10px;
        right: 10px;
        z-index: 999999 !important;
    }
    
    .toast {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* Loading Spinner Mobile */
@media (max-width: 768px) {
    .loading-overlay {
        padding: 20px;
    }
    
    .loading-spinner {
        width: 40px;
        height: 40px;
    }
}

/* Form Elements Mobile */
@media (max-width: 768px) {
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-label {
        font-size: 14px;
        margin-bottom: 5px;
    }
    
    .form-control, .form-select {
        padding: 12px;
        font-size: 16px;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .input-group .btn {
        margin-top: 10px;
        border-radius: 0.375rem;
    }
}

/* Navigation Mobile */
@media (max-width: 768px) {
    .navbar-nav {
        text-align: center;
    }
    
    .nav-link {
        padding: 10px 15px;
    }
    
    .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        margin-top: 0;
        border: 0;
        box-shadow: none;
    }
}

/* Canvas Mobile Optimizations */
@media (max-width: 768px) {
    .canvas-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .upper-canvas {
        max-width: 100%;
        height: auto;
    }
    
    .canvas-container canvas {
        max-width: 100%;
        height: auto;
    }
}

/* Utility Classes for Mobile */
@media (max-width: 768px) {
    .mobile-hidden {
        display: none !important;
    }
    
    .mobile-full-width {
        width: 100% !important;
    }
    
    .mobile-text-center {
        text-align: center !important;
    }
    
    .mobile-margin-bottom {
        margin-bottom: 15px !important;
    }
}

/* Prevent horizontal scroll on mobile */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    .container, .container-fluid {
        overflow-x: hidden;
    }
    
    .row {
        margin-left: 0;
        margin-right: 0;
    }
    
    .col, [class*="col-"] {
        padding-left: 10px;
        padding-right: 10px;
    }
}
/* Shared right-click notice, moved out of common_header.php. */
.right-click-alert {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 20px;
  border-radius: 25px;
  background: #333;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  font-family: sans-serif;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

.luminie-brand-text {
  font-family: 'Crafty Girls', cursive;
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: opacity 0.3s ease;
}

.navbar-brand:hover .luminie-brand-text {
  opacity: 0.85;
}
