@charset "UTF-8";
/* CSS Document */

 body {
            background: #f8f9fa;
        }

        /* Sticky Header */
        .navbar {
            position: sticky;
            top: 0;
            z-index: 999;
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        /* --- ⭐️ MENÜ ŞIKLIK VE HOVER ÖZELLEŞTİRMELERİ --- */
        .navbar-nav .nav-item {
            padding: 0 5px; 
        }
        
        .navbar-nav .nav-link {
            font-weight: 600; 
            color: #343a40 !important; 
            transition: color 0.3s ease, background-color 0.3s ease;
            padding: 10px 15px;
            border-radius: 5px;
            display: flex;
            align-items: center;
        }

        /* Nav Link Hover Etkisi */
        .navbar-nav .nav-link:hover {
            color: #1e5c85 !important; 
            background-color: #f0f0f0; 
        }
        
        /* Dropdown İkonu Stilini Geri Getirme */
        .navbar .dropdown-toggle::after {
            display: inline-block;
            margin-left: 0.255em;
            vertical-align: 0.255em;
            content: "";
            border-top: 0.3em solid;
            border-right: 0.3em solid transparent;
            border-bottom: 0;
            border-left: 0.3em solid transparent;
            transition: transform 0.3s ease;
        }

        /* Menü açıkken ikonun yukarı dönmesi (CSS tabanlı hover) */
        @media all and (min-width: 992px) {
            .navbar .nav-item:hover .dropdown-toggle::after {
                transform: rotate(-180deg);
            }
        }
        
        /* Dropdown Menü Stili */
        .dropdown-menu {
            border: none;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15); 
            border-top: 3px solid #ffc107; 
            padding: 10px 0;
            margin-top: 0; 
            min-width: 200px; 
            transition: all 0.3s ease-in-out;
        }

        .dropdown-item {
            padding: 8px 20px;
            font-weight: 500;
        }

        .dropdown-item:hover {
            background-color: #ffc107; 
            color: #000;
        }
        
        /* HOVER İLE AÇILAN DROPDOWN İÇİN CSS */
        @media all and (min-width: 992px) {
            .navbar .nav-item .dropdown-menu {
                display: block; 
                opacity: 0;
                visibility: hidden;
                transform: translateY(10px);
                transition: all 0.3s ease-in-out;
            }

            .navbar .nav-item:hover .dropdown-menu,
            .navbar .nav-item .dropdown-menu.show {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
                pointer-events: auto;
            }
        }
        /* --- ⭐️ MENÜ SONU --- */

        /* --- 💡 KATEGORİ IKON STİLLERİ --- */
        .category-icon-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            text-decoration: none;
            color: #343a40;
            transition: transform 0.2s, color 0.2s;
        }

        .category-icon-item:hover {
            color: #1e5c85;
            transform: translateY(-5px);
        }

        .category-circle {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 28px;
            margin-bottom: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }
        /* --- İKON RENKLERİ --- */
        .color-1 { background-color: #ffe6e6; color: #ff6b6b; } 
        .color-2 { background-color: #e6f7ff; color: #1e5c85; } 
        .color-3 { background-color: #fff9e6; color: #ffc107; } 
        .color-4 { background-color: #e6fff4; color: #20c997; } 
        .color-5 { background-color: #f7e6ff; color: #9c27b0; } 
        .color-6 { background-color: #f0f0f0; color: #6c757d; } 
        /* --- IKON RENK SONU --- */

        /* --- Header Top Mobil Uyumu ve Şıklık (2. ve 4. Madde) --- */
        .header-top {
            font-size: 13px; 
        }
        
        /* Mini menü stilleri */
        .header-top .mini-menu a {
            color: #fff;
            text-decoration: none;
            opacity: 0.85;
            transition: opacity 0.2s;
            white-space: nowrap; /* Menü öğelerinin tek satırda kalmasını sağlar */
        }
        .header-top .mini-menu a:hover {
            opacity: 1;
            color: #ffc107; /* Highlight on hover */
        }
        /* Separator for the mini-menu */
        .header-top .mini-menu .separator {
            color: rgba(255, 255, 255, 0.4);
            margin: 0 5px;
        }

        /* Navbar Mobil Düzenlemeleri */
@media (max-width: 991px) {
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-brand img {
        width: 120px !important;
    }
    
    /* Hamburger menü butonu stil */
    .navbar-toggler {
        border: none;
        padding: 0.5rem;
        background: transparent;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
    
    .navbar-toggler-icon {
        width: 1.5em;
        height: 1.5em;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
}
        
        /* Desktop: Ensure alignment in 3 columns */
        @media (min-width: 992px) {
            .header-top .row {
                align-items: center;
            }
        }
        
        /* --- 1. Hero Slider Özelleştirmesi --- */
        .hero-section {
            position: relative;
            height: 70vh;
            margin-top: 0; 
        }

        .hero-section .carousel-item { 
            height: 70vh;
            min-height: 350px;
            background: no-repeat center center scroll;
            -webkit-background-size: cover;
            -moz-background-size: cover;
            -o-background-size: cover;
            background-size: cover;
            position: relative;
        }

        .hero-section .carousel-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1));
        }

        .hero-section .carousel-caption {
            bottom: 20%;
            left: 10%;
            text-align: left;
            transform: none;
            right: auto;
            width: 90%;
            max-width: 600px;
        }

        .hero-section .carousel-caption h1, .hero-section .carousel-caption p {
            color: #fff;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .custom-btn-hero {
            border-radius: 5px;
            font-weight: 700;
        }

        /* Hero Gösterge Noktaları */
        .hero-section .carousel-indicators {
            left: 10%;
            right: auto;
            bottom: 15%;
            justify-content: start;
            margin-left: 0;
            margin-right: 0;
            position: absolute; 
        }

        .hero-section .carousel-indicators button {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            border: none;
            margin: 0 4px;
            opacity: 1;
        }

        .hero-section .carousel-indicators .active {
            background-color: #ffc107;
            width: 25px;
            border-radius: 5px;
        }

        /* --- 2. Testimonial Carousel Özelleştirmesi --- */
        .testimonial-indicators {
            position: static; 
            margin-top: 30px;
            justify-content: center;
            display: flex;
            list-style: none;
            padding: 0;
            margin-left: auto;
            margin-right: auto;
        }

        .testimonial-indicators button {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: #ccc;
            border: none;
            margin: 0 4px;
            opacity: 1;
            transition: all 0.3s ease;
        }

        .testimonial-indicators .active {
            background-color: #ffc107 !important;
            width: 25px !important;
            border-radius: 5px !important;
        }


        /* --- 3. Genel Kart Stilleri --- */
        .tour-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            border-radius: 12px;
        }

        .tour-card {
            border-radius: 12px;
            background: white;
            padding: 15px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        /* Kategori İkon Mobil Boyutlandırma */
		@media (max-width: 991px) {
            .category-circle {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
        }
        
        /* Blog Kartları için Stiller (tour-card'ı kullanıyoruz) */
        .blog-card .badge {
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.4em 0.8em;
            border-radius: 50px;
        }
        
        /* Şık Ayırıcı Stili (1. Madde) */
        .custom-separator {
            position: relative;
            text-align: center;
            margin: 40px 0;
        }
        .custom-separator::before,
        .custom-separator::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 45%; 
            height: 1px;
            background-color: #ffc107;
            opacity: 0.5;
            transform: translateY(-50%);
        }
        .custom-separator::before {
            left: 0;
        }
        .custom-separator::after {
            right: 0;
        }
        .custom-separator .icon {
            color: #ffc107;
            font-size: 20px;
            background: #f8f9fa; /* body background color */
            padding: 0 10px;
            position: relative;
            z-index: 2;
        }
/* ============================================= */
/* YENİ: ŞIK MOBİL MENÜ STİLLERİ */
/* ============================================= */

/* Offcanvas Menü Genel Stiller */
.mobile-menu-canvas {
    width: 320px !important;
    background: #fff;
    border-left: none;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
}

.mobile-menu-canvas .offcanvas-header {
    padding: 1rem 1.25rem;
    background: #f8f9fa;
}

.mobile-menu-canvas .offcanvas-title img {
    transition: transform 0.3s ease;
}

.mobile-menu-canvas .offcanvas-title img:hover {
    transform: scale(1.05);
}

.mobile-menu-canvas .btn-close {
    background-size: 1em;
    opacity: 0.7;
    transition: all 0.2s;
}

.mobile-menu-canvas .btn-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

/* Kullanıcı Bölümü */
.mobile-user-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.mobile-user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mobile-user-avatar i {
    font-size: 30px;
}

/* Mobil Menü Linkleri */
.mobile-menu-links {
    padding: 0.5rem 0;
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    padding: 0.875rem 1.5rem;
    color: #343a40;
    text-decoration: none;
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
}

.mobile-menu-item i {
    font-size: 1.25rem;
    color: #ffc107;
    width: 24px;
    transition: transform 0.2s;
}

.mobile-menu-item:hover,
.mobile-menu-item:active {
    background: rgba(255, 193, 7, 0.08);
    border-left-color: #ffc107;
    color: #000;
}

.mobile-menu-item:hover i {
    transform: scale(1.1);
}

/* Mobil Dropdown (Kategoriler) */
.mobile-dropdown {
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    margin: 0.25rem 0;
}

.mobile-dropdown-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 0.875rem 1.5rem;
    text-align: left;
    font-weight: 500;
    color: #343a40;
    display: flex;
    align-items: center;
    transition: background 0.2s;
}

.mobile-dropdown-btn:hover,
.mobile-dropdown-btn:focus {
    background: rgba(255, 193, 7, 0.08);
}

.mobile-dropdown-btn i:first-child {
    color: #ffc107;
    font-size: 1.25rem;
    width: 24px;
}

.mobile-dropdown-btn .bi-chevron-down {
    transition: transform 0.3s ease;
    color: #6c757d;
}

.mobile-dropdown-btn .bi-chevron-down.rotate-180 {
    transform: rotate(180deg);
}

/* Alt Menü (Kategoriler açıldığında) */
.mobile-submenu {
    background: #f8f9fa;
    padding: 0.5rem 0 1rem 0;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.mobile-category-item {
    padding: 0.75rem 1.5rem 0.75rem 3.5rem;
    border-bottom: 1px dashed rgba(0,0,0,0.05);
}

.mobile-category-item:last-child {
    border-bottom: none;
}

.mobile-category-link {
    color: #1e5c85;
    text-decoration: none;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 0.5rem;
}

.mobile-category-link:hover {
    color: #ffc107;
}

.mobile-subcategory-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-subcategory-link {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.85rem;
    padding-left: 0.5rem;
    border-left: 2px solid transparent;
    transition: all 0.2s;
}

.mobile-subcategory-link:hover {
    color: #000;
    border-left-color: #ffc107;
    padding-left: 1rem;
}

.mobile-view-all {
    color: #ffc107;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
    display: inline-block;
}

.mobile-view-all:hover {
    text-decoration: underline;
}

/* Mobil İşlemler Bölümü */
.mobile-actions {
    background: #f8f9fa;
    margin-top: auto;
}

/* Mobil Para Birimi Butonları */
.mobile-currency-btn {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    background: white;
    border: 1px solid #dee2e6;
    color: #495057;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s;
}

.mobile-currency-btn:hover,
.mobile-currency-btn.active {
    background: #ffc107;
    border-color: #ffc107;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 193, 7, 0.3);
}

/* Mobil Menü Açılırken Animasyon */
.offcanvas.offcanvas-end {
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.offcanvas.offcanvas-end.show {
    transform: translateX(0);
}

/* Mobil Menü Arka Plan Overlay */
.offcanvas-backdrop {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.offcanvas-backdrop.show {
    opacity: 0.7;
}

/* Küçük Telefonlar için Ek Düzenlemeler */
@media (max-width: 576px) {
    .mobile-menu-canvas {
        width: 85% !important;
    }
    
    .mobile-category-item {
        padding-left: 2.5rem;
    }
    
    .mobile-currency-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
}
/* ============================================= */
/* YENİ: MOBİL HEADER ŞIKLIK STİLLERİ */
/* ============================================= */

/* Header Top Mobil Tasarım */
.header-top {
    position: relative;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hover efektleri */
.hover-warning {
    transition: all 0.2s ease;
}

.hover-warning:hover {
    color: #ffc107 !important;
    transform: translateY(-2px);
}

/* Mobil Header Top Stilleri */
@media (max-width: 991px) {
    .header-top {
        font-size: 0.75rem;
        padding: 0.25rem 0;
        background: linear-gradient(135deg, #000 0%, #1a1a1a 100%) !important;
    }
    
    .header-top .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    /* İletişim ikonları */
    .header-top a {
        transition: all 0.2s ease;
    }
    
    .header-top a:hover {
        color: #ffc107 !important;
    }
    
    .header-top a:hover i {
        transform: scale(1.1);
    }
    
    .header-top i {
        transition: transform 0.2s ease;
    }
    
    /* d-xs-inline class'ı - çok küçük ekranlarda gizle */
    @media (max-width: 380px) {
        .d-xs-inline {
            display: none !important;
        }
    }
}

/* Navbar Mobil Tasarım */
@media (max-width: 991px) {
    .navbar {
        padding: 0.5rem 0;
        background: white;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }
    
    .navbar .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    /* Logo boyutu */
    .navbar-brand img {
        width: 140px !important;
        transition: all 0.3s ease;
    }
    
    /* Mobil butonlar */
    .navbar .btn {
        border-width: 1.5px;
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .navbar .btn-outline-warning {
        border-color: #ffc107;
        color: #ffc107;
    }
    
    .navbar .btn-outline-warning:hover {
        background: #ffc107;
        color: #000;
    }
    
    .navbar .btn-outline-dark {
        border-color: #dee2e6;
        color: #343a40;
    }
    
    .navbar .btn-outline-dark:hover {
        background: #ffc107;
        border-color: #ffc107;
        color: #000;
    }
    
    /* Sepet badge */
    .navbar .badge {
        font-size: 0.6rem;
        padding: 0.25rem 0.4rem;
        min-width: 18px;
        border-radius: 10px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    
    /* Hamburger menü butonu */
    .navbar-toggler {
        border: 1.5px solid #dee2e6;
        border-radius: 8px;
        padding: 0;
        transition: all 0.2s ease;
    }
    
    .navbar-toggler:hover {
        border-color: #ffc107;
        background: rgba(255, 193, 7, 0.1);
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
        border-color: #ffc107;
    }
    
    .navbar-toggler-icon {
        width: 1.2em;
        height: 1.2em;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        transition: all 0.2s ease;
    }
    
    .navbar-toggler:hover .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffc107' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    
    /* Tooltip benzeri etiket (opsiyonel) */
    .navbar [data-tooltip] {
        position: relative;
    }
    
    .navbar [data-tooltip]:before {
        content: attr(data-tooltip);
        position: absolute;
        bottom: -25px;
        left: 50%;
        transform: translateX(-50%);
        background: #333;
        color: white;
        font-size: 0.6rem;
        padding: 2px 6px;
        border-radius: 4px;
        white-space: nowrap;
        opacity: 0;
        visibility: hidden;
        transition: all 0.2s ease;
        z-index: 1000;
    }
    
    .navbar [data-tooltip]:hover:before {
        opacity: 1;
        visibility: visible;
        bottom: -20px;
    }
}

/* Küçük telefonlar için ek düzenlemeler (iPhone SE vb.) */
@media (max-width: 375px) {
    .navbar-brand img {
        width: 100px !important;
    }
    
    .navbar .btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .navbar .btn i {
        font-size: 0.9rem;
    }
}

/* Header scroll efekti (isteğe bağlı) */
.navbar.scrolled {
    padding: 0.3rem 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Animasyonlar */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header-top {
    animation: slideDown 0.3s ease-out;
}