﻿@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Source+Sans+Pro:wght@300;400;600;700&display=swap');
/* SIFIRLAMA & GENEL STİLLER */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Source Sans Pro", Arial, sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

/* NAVİGASYON ÇUBUĞU STİLLERİ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 26px 48px;
    background: transparent;
    transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
}

    .header.scrolled {
        background: #fff;
        padding: 12px 48px;
        box-shadow: 0 6px 18px rgba(0,0,0,0.07);
    }

        .header.scrolled .underline-effect a:hover {
            color: #dfb887;
        }

        .header.scrolled .navbar-lang-link {
            color: black;
            border-radius: 4px;
            align-items: center;
            padding: 0.4rem 0.75rem;
        }

            .header.scrolled .navbar-lang-link:hover,
            .header.scrolled .navbar-lang-link.active {
                background-color: #e0e0e0;
            }

.nav-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 34px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s ease;
}

    .logo:hover {
        color: #dfb887;
    }

.header.scrolled .logo {
    color: #1F3363;
    transition: color 0.3s ease;
    font-size: 34px;
}

    .header.scrolled .logo:hover {
        color: #dfb887;
    }

.menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.underline-effect {
    display: flex;
    gap: 22px;
}

    .underline-effect a {
        color: #fff;
        text-decoration: none;
        font-weight: 600;
        font-size: 17px;
        position: relative;
        padding-bottom: 4px;
        transition: .25s ease;
    }

        .underline-effect a:hover {
            color: #dfb887;
        }

        .underline-effect a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 2px;
            background-color: #dfb887;
            transition: width 0.3s ease-in-out;
        }

        .underline-effect a:hover::after {
            width: 100%;
        }

.header.scrolled .menu a {
    color: #111;
}

.right-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
    font-size: 14px;
}

.header.scrolled .right-actions {
    color: #111;
}

.language-Selection {
    display: flex;
    gap: 8px;
}

.navbar-lang-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0.2rem;
    font-size: 11px;
    color: white;
    background: transparent;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.flag-icon {
    width: 20px;
    height: auto;
}

.navbar-lang-link:hover,
.navbar-lang-link.active {
    color: #dfb887;
}

.search-trigger {
    cursor: pointer;
    font-size: 14px;
    color: white;
    background-color: transparent;
    border: none;
    transition: color 0.3s ease;
}

    .search-trigger:hover {
        color: #dfb887;
    }

.header.scrolled .search-trigger {
    color: black;
}

    .header.scrolled .search-trigger:hover {
        color: #dfb887;
    }

/* MASAÜSTÜ ARAMA ÇUBUĞU */
.desktop-search-bar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
}

    .desktop-search-bar.active {
        max-height: 80px;
        opacity: 1;
        background-color: transparent;
    }

.search-bar-inner {
    width: 100%;
    margin: 0 auto;
    padding: 20px 48px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-input {
    flex: 1;
    border: 1px solid #e0e0e0;
    padding: 12px 20px;
    font-size: 15px;
    font-family: "Source Sans Pro", Arial, sans-serif;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s ease;
}

    .search-input:focus {
        border-color: #dfb887;
    }

.search-close-btn {
    background: #f0f0f0;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #111;
    transition: all 0.3s ease;
}

    .search-close-btn:hover {
        background: #dfb887;
        color: #fff;
        transform: rotate(90deg);
    }

/* MOBİL ARAMA */
.mobile-search-trigger {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
    margin-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
    cursor: pointer;
    font-size: 18px;
    color: #111;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .mobile-search-trigger:hover {
        color: #dfb887;
        padding-left: 10px;
    }

    .mobile-search-trigger i {
        font-size: 18px;
    }

.mobile-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

    .mobile-search-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.mobile-search-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

    .mobile-search-close:hover {
        background: #dfb887;
        transform: rotate(90deg);
    }

.mobile-search-content {
    width: 90%;
    max-width: 500px;
    padding: 20px;
}

.mobile-search-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 18px 24px;
    font-size: 18px;
    font-family: "Source Sans Pro", Arial, sans-serif;
    color: #fff;
    border-radius: 8px;
    outline: none;
    transition: all 0.3s ease;
}

    .mobile-search-input::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }

    .mobile-search-input:focus {
        border-color: #dfb887;
        background: rgba(255, 255, 255, 0.15);
    }

/* MOBİL MENÜ */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    position: relative;
}

    .mobile-menu-btn span {
        width: 25px;
        height: 3px;
        background: #fff;
        transition: all 0.3s ease;
    }

.header.scrolled .mobile-menu-btn span {
    background: #111;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

#mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: #fff;
    box-shadow: -4px 0px 24px rgba(0,0,0,0.2);
    padding: 80px 40px 40px;
    transition: right 0.4s ease;
    z-index: 1000;
    overflow-y: auto;
}

    #mobile-menu.open {
        right: 0;
    }

.mobile-menu-btn.active {
    display: none;
}

.mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #111;
    background: #f0f0f0;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1001;
}

    .mobile-menu-close:hover {
        color: #dfb887;
        transform: rotate(90deg);
    }

#mobile-menu a {
    display: block;
    font-size: 18px;
    color: #111;
    text-decoration: none;
    font-weight: 600;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

    #mobile-menu a:hover {
        color: #dfb887;
        padding-left: 10px;
    }

.mobile-menu-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.mobile-lang-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

    .mobile-lang-links a {
        border: none;
        background: #f0f0f0;
        border-radius: 4px;
        font-size: 14px;
        width: 70px;
        gap: 6px;
        transition: all 0.3s ease;
    }

        .mobile-lang-links a:hover {
            color: #dfb887;
        }

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 999;
}

    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }

/* ALT BİLGİ STİLLERİ */
.footer {
    background-color: #f0f0f0;
    padding: 4rem 0 0;
    color: #0e0f11;
}

.footer-container {
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-logo {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 700;
    font-size: 40px;
    color: #1F3363;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #d0d0d0;
}

.footer-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0e0f11;
}

.footer-description {
    font-size: 0.95rem;
    color: #68676a;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background-color: #165aee;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .footer-cta-button:hover {
        background-color: #0d47c9;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(22, 90, 238, 0.3);
    }

.footer-column-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #0e0f11;
    margin-left: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style-type: none;
}

    .footer-links a {
        font-size: 0.9rem;
        color: #68676a;
        transition: all 0.3s ease;
        text-decoration: none;
    }

        .footer-links a:hover {
            color: #165aee;
            padding-left: 0.5rem;
        }

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border-radius: 4px;
    color: #0e0f11;
    transition: all 0.3s ease;
}

    .social-link:hover {
        background-color: #165aee;
        color: #ffffff;
        transform: translateY(-2px);
    }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
    font-size: 0.875rem;
    color: #68676a;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer-language {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: black;
}

.footer-lang-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.75rem;
    color: #68676a;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .footer-lang-link:hover,
    .footer-lang-link.active {
        background-color: #e0e0e0;
        color: #0e0f11;
    }

.footer-legal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .footer-legal a {
        color: #68676a;
        transition: color 0.3s ease;
        text-decoration: none;
    }

        .footer-legal a:hover {
            color: #165aee;
        }

.separator {
    color: #d0d0d0;
}

.footer-copyright {
    color: #68676a;
}

/* KATEGORİ RENKLERİ */

.content-tag-button {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    font-size: 0.80rem;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
    text-align: center;
    border-radius: 5px;
    cursor: default;
    border: 1px solid;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-right: 5px;
    margin-bottom: 5px;
    max-width: 8rem;
}

    .content-tag-button:hover {
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        opacity: 0.9;
    }



/* MODERN AÇILIR LİSTE */

.modern-dropdown-toggle {
    background-color: #ffffff;
    color: #333;
    border: 1px solid #d9d9d9;
    padding: 12px 16px;
    font-size: 15px;
    border-radius: 8px;
    transition: all 0.25s ease;
    text-align: left;
}

    .modern-dropdown-toggle:hover,
    .modern-dropdown-toggle:focus {
        background-color: #f7f7f7;
        border-color: #c5c5c5;
        box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    }

.modern-dropdown-menu {
    border-radius: 8px;
    padding: 8px 0;
    border: 1px solid #e3e3e3;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    max-height: 280px;
    overflow-y: auto;
    animation: dropdownFade 0.2s ease;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modern-dropdown-item {
    padding: 10px 16px;
    font-size: 15px;
    color: #333;
    transition: background-color 0.2s ease, padding-left 0.2s ease;
    border-radius: 6px;
}

    .modern-dropdown-item:hover {
        background-color: #f0f0f0;
        padding-left: 22px;
    }

/* RESPONSIVE - NAVİGASYON & ALT BİLGİ */

@media (max-width: 1200px) {
    .header {
        padding: 20px 32px;
    }

        .header.scrolled {
            padding: 12px 32px;
        }

    .logo {
        font-size: 28px;
    }

    .underline-effect {
        gap: 16px;
    }

        .underline-effect a {
            font-size: 14px;
        }

    .search-bar-inner {
        padding: 20px 32px;
    }

    .footer-top {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 960px) {
    .menu, .language-Selection, .search-trigger {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header {
        padding: 18px 24px;
    }

        .header.scrolled {
            padding: 12px 24px;
        }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }

    .footer-column-title[data-target] {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        padding-bottom: 10px;
        margin-bottom: 10px;
        border-bottom: 1px solid #ddd;
        position: relative;
        user-select: none;
        margin-left: 0;
    }

    .footer-column-title:not([data-target]) {
        margin-left: 0;
        cursor: default;
    }

    .mobile-toggle-icon {
        position: relative;
        width: 12px;
        height: 12px;
        display: block;
        flex-shrink: 0;
    }

        .mobile-toggle-icon::before,
        .mobile-toggle-icon::after {
            content: '';
            position: absolute;
            background-color: #68676a;
            transition: transform 0.3s ease;
        }

        .mobile-toggle-icon::before {
            top: 5px;
            left: 0;
            width: 12px;
            height: 2px;
        }

        .mobile-toggle-icon::after {
            top: 0;
            left: 5px;
            width: 2px;
            height: 12px;
        }

    .footer-column-title.active .mobile-toggle-icon::after {
        transform: rotate(90deg);
    }

    .footer-column-title.active .mobile-toggle-icon {
        transform: rotate(180deg);
    }

    .footer-links {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.4s ease, opacity 0.4s ease, margin 0.4s ease;
        margin-bottom: 0;
    }

        .footer-links.open {
            max-height: 500px;
            opacity: 1;
            margin-bottom: 1.5rem;
        }

    .footer-social {
        padding-top: 10px;
        max-height: none !important;
        opacity: 1 !important;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-bottom-left {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 991px) {
    .custom-tabs {
        flex-direction: row;
        overflow-x: auto;
        gap: 10px;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

        .custom-tabs .nav-item {
            flex-shrink: 0;
            width: auto;
        }

        .custom-tabs .nav-link {
            white-space: nowrap;
        }
}

@media (max-width: 600px) {
    .header {
        padding: 16px 20px;
    }

        .header.scrolled {
            padding: 12px 20px;
        }

    .logo {
        font-size: 24px;
    }

    .footer {
        padding: 3rem 0 0;
    }

    .footer-container {
        padding: 0 1.5rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        padding-bottom: 2rem;
    }

    .footer-brand {
        grid-column: 1;
    }

    .footer-title {
        font-size: 1.25rem;
    }

    .footer-cta-button {
        font-size: 0.8rem;
        padding: 0.75rem 1.5rem;
    }

    .footer-column-title {
        margin-left: 0;
    }

    #mobile-menu {
        padding: 80px 30px 30px;
    }

        #mobile-menu a {
            font-size: 16px;
            padding: 12px 0;
        }

    .mobile-search-close {
        top: 20px;
        right: 20px;
    }
}

.modern-dropdown-toggle {
    font-size: 14px;
}

.modern-dropdown-item {
    font-size: 14px;
}

@media (max-width: 400px) {
    .header {
        padding: 14px 16px;
    }

    .logo {
        font-size: 20px;
    }

    .footer-container {
        padding: 0 1rem;
    }

    .footer-cta-button {
        width: 100%;
        justify-content: center;
    }
}

/* =========================================================
    CUSTOM TABS  STİLLERİ 
========================================================= */
.custom-tabs {
    border-bottom: 1px solid #ddd;
    margin-bottom: 40px;
}

    .custom-tabs .nav-link {
        color: #666;
        border: none;
        padding: 8px 15px;
        margin-bottom: -1px;
        font-size: 1rem;
        transition: color 0.3s;
    }

        .custom-tabs .nav-link:hover {
            color: #999;
            border-bottom: 2px solid #999;
        }

        .custom-tabs .nav-link.active {
            color: #dfb887;
            border-bottom: 2px solid #1F3363;
            font-weight: 600;
            background-color: transparent;
        }

/* =========================================================
    Sayfa Bulunamadı 
========================================================= */

.notfound-container {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.notfound-content {
    text-align: center;
    max-width: 600px;
    background: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.notfound-icon {
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

    .notfound-icon svg {
        color: #1F3363;
        filter: drop-shadow(0 4px 8px rgba(31, 51, 99, 0.2));
    }

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.notfound-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 6rem;
    font-weight: 700;
    color: #1F3363;
    margin: 0;
    line-height: 1;
    letter-spacing: -2px;
}

.notfound-subtitle {
    font-size: 1.75rem;
    font-weight: 600;
    color: #333;
    margin: 1rem 0 0.5rem;
}

.notfound-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.notfound-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: #1F3363;
    color: white;
}

    .btn-primary:hover {
        background-color: #152647;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(31, 51, 99, 0.3);
    }

.btn-secondary {
    background-color: #f0f0f0;
    color: #333;
}

    .btn-secondary:hover {
        background-color: #e0e0e0;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

.notfound-suggestions {
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.suggestions-title {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1rem;
    font-weight: 500;
}

.suggestions-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

    .suggestions-links a {
        color: #1F3363;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        position: relative;
    }

        .suggestions-links a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -4px;
            width: 0;
            height: 2px;
            background-color: #dfb887;
            transition: width 0.3s ease;
        }

        .suggestions-links a:hover {
            color: #dfb887;
        }

            .suggestions-links a:hover::after {
                width: 100%;
            }

@media (max-width: 768px) {
    .notfound-content {
        padding: 2rem 1.5rem;
    }

    .notfound-title {
        font-size: 4rem;
    }

    .notfound-subtitle {
        font-size: 1.5rem;
    }

    .notfound-description {
        font-size: 1rem;
    }

    .notfound-icon svg {
        width: 150px;
        height: 150px;
    }

    .notfound-actions {
        flex-direction: column;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .suggestions-links {
        flex-direction: column;
        gap: 0.75rem;
    }
}
