/*
Theme Name: luique-child
Theme URI: https://bslthemes.com/
Description: luique Child Theme
Author: beshleyua
Author URI: https://themeforest.net/user/beshleyua
Template: luique
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: luique-child
*/

/* ==========================================================================
   Portfolio Link Styles
   ========================================================================== */

/* Desc link - See project linki için */
a.desc-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

a.desc-link:hover {
    text-decoration: none;
}


/* ==========================================================================
   Iframe Modal Styles
   ========================================================================== */

/* Modal overlay - tam ekran */
.luique-iframe-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    background-color: #000000;
}

.luique-iframe-modal.active {
    opacity: 1;
    visibility: visible;
}

/* Modal içerik container - 20px beyaz border ile */
.luique-iframe-modal-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 10px;
}

/* Bordür Renk Paletleri - Dalgalı Gradient Efektler */

/* Default - Beyaz */
.luique-iframe-modal-content.palette-default {
    background: #ffffff;
}

/* Google Palette - Mavi, Kırmızı, Sarı, Yeşil */
.luique-iframe-modal-content.palette-google {
    background: linear-gradient(45deg,
            #4285F4 0%,
            #EA4335 25%,
            #FBBC05 50%,
            #34A853 75%,
            #4285F4 100%);
    background-size: 400% 400%;
    animation: gradientWave 8s ease infinite;
}

/* Monochrome - Kırmızı, Siyah, Gri */
.luique-iframe-modal-content.palette-monochrome {
    background: linear-gradient(45deg,
            #DC143C 0%,
            #000000 33%,
            #808080 66%,
            #DC143C 100%);
    background-size: 400% 400%;
    animation: gradientWave 10s ease infinite;
}

/* Sunset - Turuncu, Pembe, Mor */
.luique-iframe-modal-content.palette-sunset {
    background: linear-gradient(45deg,
            #FF6B35 0%,
            #FF1493 33%,
            #9B59B6 66%,
            #FF6B35 100%);
    background-size: 400% 400%;
    animation: gradientWave 7s ease infinite;
}

/* Ocean - Mavi Tonları */
.luique-iframe-modal-content.palette-ocean {
    background: linear-gradient(45deg,
            #006994 0%,
            #1E90FF 25%,
            #00CED1 50%,
            #4682B4 75%,
            #006994 100%);
    background-size: 400% 400%;
    animation: gradientWave 9s ease infinite;
}

/* Forest - Yeşil Tonları */
.luique-iframe-modal-content.palette-forest {
    background: linear-gradient(45deg,
            #228B22 0%,
            #32CD32 25%,
            #00FF7F 50%,
            #2E8B57 75%,
            #228B22 100%);
    background-size: 400% 400%;
    animation: gradientWave 8s ease infinite;
}

/* Fire - Kırmızı, Turuncu */
.luique-iframe-modal-content.palette-fire {
    background: linear-gradient(45deg,
            #FF4500 0%,
            #FF6347 25%,
            #FF8C00 50%,
            #DC143C 75%,
            #FF4500 100%);
    background-size: 400% 400%;
    animation: gradientWave 6s ease infinite;
}

/* Dalgalı Gradient Animasyonu */
@keyframes gradientWave {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Kapatma butonu - üst ortada, yuvarlak, büyük */
.luique-iframe-modal-close {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #333333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    padding: 0;
}

.luique-iframe-modal-close:hover {
    background: #333333;
    border-color: #ffffff;
    color: #ffffff;
    transform: translateX(-50%) rotate(90deg);
}

.luique-iframe-modal-close svg {
    width: 18px;
    height: 18px;
    color: #333333;
    transition: color 0.3s ease;
}

.luique-iframe-modal-close:hover svg {
    color: #ffffff;
}

/* Iframe wrapper - responsive */
.luique-iframe-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000000;
}

.luique-iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Body scroll kilidi */
body.luique-iframe-modal-open {
    overflow: hidden;
}

/* Responsive ayarlar */
@media (max-width: 768px) {
    .luique-iframe-modal-content {
        padding: 15px;
        border-radius: 8px;
    }

    .luique-iframe-modal-close {
        width: 36px;
        height: 36px;
    }

    .luique-iframe-modal-close svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .luique-iframe-modal-content {
        padding: 12px;
        border-radius: 6px;
    }

    .luique-iframe-modal-close {
        width: 32px;
        height: 32px;
    }

    .luique-iframe-modal-close svg {
        width: 14px;
        height: 14px;
    }
}

/* ==========================================================================
   Luxe Bottom Navigation - App Interface
   ========================================================================== */

/* Alt Katman: Sayfa dibine yapışık düz renk bant - inline style ile renk/opacity ayarlanıyor */
.app-nav-base-layer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 90;
    pointer-events: none;
    border-radius: 30px 30px 0 0;
}

/* Üst Katman: Menü Container - inline style ile genişlik ayarlanıyor */
.app-nav-container {
    position: fixed;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

/* Menü Barı */
.luxe-bottom-nav {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}

/* Scroll Wrapper - yatay kaydırma */
.luxe-nav-scroll-wrapper {
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
}

.luxe-nav-scroll-wrapper::-webkit-scrollbar {
    height: 4px;
}

.luxe-nav-scroll-wrapper::-webkit-scrollbar-track {
    background: transparent;
}

.luxe-nav-scroll-wrapper::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 2px;
}

/* Nav List - gölge yok! */
.luxe-bottom-nav .luxe-nav-list {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 12px;
    border-radius: 50px;
    list-style: none;
    margin: 0;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    gap: 4px;
    /* box-shadow kaldırıldı */
}

/* Scroll Ok İşaretleri */
.scroll-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    font-size: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    z-index: 10;
}

.scroll-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
}

.scroll-arrow-left {
    margin-right: 8px;
}

.scroll-arrow-right {
    margin-left: 8px;
}

/* Nav Item */
.luxe-bottom-nav .nav-item {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}

/* Nav Link - Ana Stil */
.luxe-bottom-nav .nav-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0;
    text-decoration: none;
    color: #6b7280;
    padding: 10px 16px;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: transparent;
    position: relative;
    white-space: nowrap;
}

/* İkon */
.luxe-bottom-nav .nav-link i {
    font-size: 18px;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

/* Yazı (Etiket) - Varsayılan olarak gizli */
.luxe-bottom-nav .nav-link .nav-label {
    font-size: 13px;
    font-weight: 600;
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    margin-left: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap;
}

/* Hover durumu */
.luxe-bottom-nav .nav-link:hover {
    color: #374151;
}

.luxe-bottom-nav .nav-link:hover i {
    transform: scale(1.1);
}

/* AKTIF DURUM - Yazı sağa doğru açılır, renk değişir */
.luxe-bottom-nav .nav-link.active {
    background-color: var(--active-bg, #e0e7ff);
    color: var(--active-text, #4f46e5);
}

.luxe-bottom-nav .nav-link.active i {
    transform: scale(1.15);
    color: var(--active-text, #4f46e5);
}

.luxe-bottom-nav .nav-link.active .nav-label {
    max-width: 80px;
    opacity: 1;
    margin-left: 8px;
}

/* Dark Mode Desteği */
@media (prefers-color-scheme: dark) {
    .luxe-bottom-nav .luxe-nav-list {
        background: rgba(24, 24, 27, 0.9);
        border-color: rgba(255, 255, 255, 0.1);
    }

    .luxe-bottom-nav .nav-link {
        color: #9ca3af;
    }

    .luxe-bottom-nav .nav-link:hover {
        color: #e5e7eb;
    }
}

/* Responsive */
@media (max-width: 480px) {
    .app-nav-container {
        width: 95%;
        bottom: 15px;
    }

    .luxe-bottom-nav .luxe-nav-list {
        padding: 6px 8px;
    }

    .luxe-bottom-nav .nav-link {
        padding: 8px 12px;
    }

    .luxe-bottom-nav .nav-link i {
        font-size: 16px;
    }

    .luxe-bottom-nav .nav-link .nav-label {
        font-size: 11px;
    }
}