/*
Theme Name: NevinaTheme
Theme URI: https://betturkeyv.com
Author: Nevi
Author URI: https://betturkeyv.com
Description: Ultra hızlı, SEO odaklı, modern ve kullanıcı dostu WordPress teması. Betturkey renk paletinden ilham alınmıştır.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nevinatheme
Tags: fast, seo, minimal, responsive
*/
/* ===================================
   RESET & BASE
   =================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}
html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth
}
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.7;
    color: #1a1a2e;
    background: #f5f5f0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}
img {
    max-width: 100%;
    height: auto;
    display: block
}
a {
    color: #c8a415;
    text-decoration: none;
    transition: color .2s ease
}
a:hover {
    color: #e6be1e
}
ul,
ol {
    list-style: none
}
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.3;
    font-weight: 700;
    color: #1a1a2e
}
/* ===================================
   CSS VARIABLES
   =================================== */
:root {
    --nv-dark: #2b2b2b;
    --nv-darker: #1e1e1e;
    --nv-gold: #d4a818;
    --nv-gold-bright: #e6c42a;
    --nv-gold-dim: #b08e12;
    --nv-light: #fafaf7;
    --nv-white: #ffffff;
    --nv-text: #1a1a2e;
    --nv-text-muted: #555566;
    --nv-border: #e2e0d8;
    --nv-border-dark: #3a3a3a;
    --nv-shadow: 0 2px 8px rgba(0, 0, 0, .06);
    --nv-shadow-lg: 0 8px 32px rgba(0, 0, 0, .1);
    --nv-radius: 6px;
    --nv-max-width: 1180px;
    --nv-sidebar-width: 320px;
    --nv-header-height: 60px;
    --nv-transition: all .25s ease;
}
/* ===================================
   LAYOUT CONTAINER
   =================================== */
.nv-container {
    max-width: var(--nv-max-width);
    margin: 0 auto;
    padding: 0 20px
}
/* ===================================
   HEADER
   =================================== */
.nv-header {
    background: var(--nv-dark);
    position: relative;
    z-index: 100
}
.nv-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nv-header-height);
    max-width: var(--nv-max-width);
    margin: 0 auto;
    padding: 0 20px
}
.nv-logo a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--nv-white);
    letter-spacing: -.02em
}
.nv-logo a:hover {
    color: var(--nv-gold-bright)
}
.nv-logo img,
.nv-logo amp-img {
    max-height: 38px;
    width: auto
}
/* ===================================
   GOLD ACCENT STRIP
   =================================== */
.nv-gold-strip {
    height: 3px;
    background: linear-gradient(90deg, var(--nv-gold-dim), var(--nv-gold-bright), var(--nv-gold-dim));
    flex-shrink: 0
}
/* ===================================
   MAIN NAVIGATION
   =================================== */
.nv-nav {
    background: var(--nv-darker);
    border-bottom: 1px solid var(--nv-border-dark);
    position: relative;
    z-index: 90
}
.nv-nav-inner {
    max-width: var(--nv-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: stretch
}
.nv-nav ul {
    display: flex;
    align-items: stretch;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0
}
.nv-nav ul li {
    position: relative
}
.nv-nav ul li a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 16px;
    height: 44px;
    font-size: .875rem;
    font-weight: 600;
    color: #d1d1d1;
    transition: var(--nv-transition);
    white-space: nowrap
}
.nv-nav ul li a:hover,
.nv-nav ul li.current-menu-item>a,
.nv-nav ul li.current-menu-ancestor>a {
    color: var(--nv-gold-bright);
    background: rgba(212, 168, 24, .08)
}
/* Arrow for parent items */
.nv-nav ul li.menu-item-has-children>a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    margin-left: 4px;
    transition: transform .25s ease
}
.nv-nav ul li.menu-item-has-children:hover>a::after {
    transform: rotate(180deg)
}
/* Dropdown */
.nv-nav ul li ul.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--nv-darker);
    min-width: 220px;
    border: 1px solid var(--nv-border-dark);
    border-top: 2px solid var(--nv-gold);
    box-shadow: var(--nv-shadow-lg);
    z-index: 100;
    flex-direction: column
}
.nv-nav ul li:hover>ul.sub-menu {
    display: flex
}
.nv-nav ul li ul.sub-menu li a {
    height: auto;
    padding: 10px 18px;
    font-size: .825rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, .05)
}
.nv-nav ul li ul.sub-menu li:last-child a {
    border-bottom: 0
}
/* 3rd level */
.nv-nav ul li ul.sub-menu li ul.sub-menu {
    top: 0;
    left: 100%;
    border-top-color: var(--nv-gold)
}
/* ===================================
   MOBILE MENU TOGGLE
   =================================== */
.nv-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--nv-white);
    font-size: 1.5rem;
    line-height: 1
}
.nv-menu-toggle .bar {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background: var(--nv-white);
    transition: var(--nv-transition);
    border-radius: 2px
}
/* Submenu toggle: masaüstünde gizle, sadece mobilde göster */
.nv-submenu-toggle {
    display: none
}
/* ===================================
   MOBILE NAV
   =================================== */
@media(max-width:768px) {
    .nv-menu-toggle {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center
    }
    .nv-nav-inner {
        flex-direction: column;
        align-items: stretch
    }
    .nv-nav .nv-nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        padding-bottom: 8px
    }
    .nv-nav .nv-nav-menu.active {
        display: flex
    }
    .nv-nav ul {
        flex-direction: column;
        gap: 0
    }
    .nv-nav ul li a {
        padding: 12px 18px;
        height: auto;
        border-bottom: 1px solid rgba(255, 255, 255, .06);
        font-size: .9rem
    }
    /* Mobile dropdown */
    .nv-nav ul li ul.sub-menu {
        position: static;
        display: none;
        border: none;
        box-shadow: none;
        min-width: 100%;
        border-top: 0;
        background: rgba(0, 0, 0, .15)
    }
    .nv-nav ul li ul.sub-menu li a {
        padding: 10px 18px 10px 32px;
        font-size: .84rem
    }
    .nv-nav ul li.menu-item-has-children>a::after {
        margin-left: auto
    }
    /* Mobile toggle arrow */
    .nv-submenu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: transparent;
        border: none;
        border-left: 1px solid rgba(255, 255, 255, .1);
        cursor: pointer;
        color: #d1d1d1;
        font-size: 1rem;
        transition: var(--nv-transition);
        flex-shrink: 0;
        position: absolute;
        right: 0;
        top: 0
    }
    .nv-submenu-toggle:hover {
        color: var(--nv-gold-bright)
    }
    .nv-submenu-toggle svg {
        width: 14px;
        height: 14px;
        fill: currentColor;
        transition: transform .25s ease
    }
    .nv-submenu-toggle.open svg {
        transform: rotate(180deg)
    }
    .nv-submenu-toggle.open~ul.sub-menu {
        display: flex !important
    }
    .nv-nav ul li.menu-item-has-children {
        display: flex;
        flex-wrap: wrap;
        position: relative
    }
    .nv-nav ul li.menu-item-has-children>a {
        flex: 1;
        padding-right: 50px
    }
    .nv-nav ul li.menu-item-has-children>a::after {
        display: none
    }
    .nv-nav ul li.menu-item-has-children>ul.sub-menu {
        flex-basis: 100%
    }
    /* 3rd level mobile */
    .nv-nav ul li ul.sub-menu li ul.sub-menu {
        position: static;
        left: 0
    }
    .nv-nav ul li ul.sub-menu li ul.sub-menu li a {
        padding-left: 48px
    }
    /* Hamburger animation */
    .nv-menu-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg)
    }
    .nv-menu-toggle.active .bar:nth-child(2) {
        opacity: 0
    }
    .nv-menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg)
    }
}
/* ===================================
   BREADCRUMBS (Yoast handles this)
   =================================== */
.nv-breadcrumbs {
    padding: 12px 0;
    font-size: .8rem;
    color: var(--nv-text-muted)
}
.nv-breadcrumbs a {
    color: var(--nv-gold-dim)
}
.nv-breadcrumbs a:hover {
    color: var(--nv-gold-bright)
}
/* ===================================
   CONTENT AREA
   =================================== */
.nv-content-wrap {
    display: flex;
    gap: 30px;
    padding: 24px 0 40px;
    align-items: flex-start
}
.nv-main {
    flex: 1;
    min-width: 0
}
.nv-sidebar {
    width: var(--nv-sidebar-width);
    flex-shrink: 0
}
/* ===================================
   ARTICLE / POST CARD
   =================================== */
.nv-article {
    background: var(--nv-white);
    border-radius: var(--nv-radius);
    box-shadow: var(--nv-shadow);
    padding: 28px 30px;
    margin-bottom: 24px;
    border: 1px solid var(--nv-border)
}
.nv-article h1 {
    font-size: 1.6rem;
    margin-bottom: 14px;
    color: var(--nv-text);
    line-height: 1.35
}
.nv-article h2 {
    font-size: 1.3rem;
    margin: 24px 0 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--nv-gold);
    color: var(--nv-text)
}
.nv-article h3 {
    font-size: 1.1rem;
    margin: 20px 0 8px;
    color: var(--nv-text)
}
.nv-article p {
    margin-bottom: 14px;
    font-size: .95rem;
    color: #333;
    line-height: 1.75
}
.nv-article ul,
.nv-article ol {
    margin: 10px 0 18px 22px;
    font-size: .95rem;
    color: #333
}
.nv-article ul {
    list-style: disc
}
.nv-article ol {
    list-style: decimal
}
.nv-article li {
    margin-bottom: 5px;
    line-height: 1.65
}
.nv-article a {
    color: var(--nv-gold-dim);
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: var(--nv-transition)
}
.nv-article a:hover {
    color: var(--nv-gold-bright);
    border-bottom-color: var(--nv-gold-bright)
}
.nv-article img,
.nv-article amp-img {
    border-radius: var(--nv-radius);
    margin: 16px 0
}
.nv-article table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0
}
.nv-article table th,
.nv-article table td {
    padding: 10px 14px;
    border: 1px solid var(--nv-border);
    font-size: .9rem;
    text-align: left
}
.nv-article table th {
    background: var(--nv-dark);
    color: var(--nv-white);
    font-weight: 600
}
.nv-article table tr:nth-child(even) td {
    background: #f8f8f5
}
.nv-article blockquote {
    margin: 16px 0;
    padding: 14px 20px;
    border-left: 4px solid var(--nv-gold);
    background: #fdfdf5;
    font-style: italic;
    color: var(--nv-text-muted);
    border-radius: 0 var(--nv-radius) var(--nv-radius) 0
}
/* ===================================
   POST LIST (Archive/Blog)
   =================================== */
.nv-post-list .nv-post-item {
    background: var(--nv-white);
    border-radius: var(--nv-radius);
    box-shadow: var(--nv-shadow);
    padding: 20px 24px;
    margin-bottom: 18px;
    border: 1px solid var(--nv-border);
    transition: var(--nv-transition)
}
.nv-post-list .nv-post-item:hover {
    box-shadow: var(--nv-shadow-lg);
    border-color: var(--nv-gold)
}
.nv-post-list .nv-post-item h2 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    border: none;
    padding-bottom: 0
}
.nv-post-list .nv-post-item h2 a {
    color: var(--nv-text);
    font-weight: 700;
    border: none
}
.nv-post-list .nv-post-item h2 a:hover {
    color: var(--nv-gold)
}
.nv-post-list .nv-post-item .nv-excerpt {
    font-size: .9rem;
    color: var(--nv-text-muted);
    line-height: 1.65;
    margin-bottom: 10px
}
.nv-post-list .nv-post-item .nv-read-more {
    display: inline-block;
    font-size: .82rem;
    font-weight: 700;
    color: var(--nv-gold);
    transition: var(--nv-transition)
}
.nv-post-list .nv-post-item .nv-read-more:hover {
    color: var(--nv-gold-bright)
}
/* Featured image in list */
.nv-post-thumb {
    border-radius: var(--nv-radius);
    overflow: hidden;
    margin-bottom: 12px
}
.nv-post-thumb img,
.nv-post-thumb amp-img {
    width: 100%;
    height: auto;
    display: block
}
/* ===================================
   PAGINATION
   =================================== */
.nv-pagination,
.navigation.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 20px 0;
    flex-wrap: wrap
}
.nv-pagination a,
.nv-pagination span,
.navigation.pagination .nav-links a,
.navigation.pagination .nav-links span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    font-size: .85rem;
    font-weight: 600;
    border-radius: var(--nv-radius);
    border: 1px solid var(--nv-border);
    color: var(--nv-text);
    background: var(--nv-white);
    transition: var(--nv-transition)
}
.nv-pagination a:hover,
.navigation.pagination .nav-links a:hover {
    background: var(--nv-gold);
    color: var(--nv-white);
    border-color: var(--nv-gold)
}
.nv-pagination .current,
.navigation.pagination .nav-links .current {
    background: var(--nv-dark);
    color: var(--nv-white);
    border-color: var(--nv-dark)
}
/* ===================================
   SIDEBAR
   =================================== */
.nv-sidebar .widget {
    background: var(--nv-white);
    border-radius: var(--nv-radius);
    box-shadow: var(--nv-shadow);
    padding: 20px 22px;
    margin-bottom: 20px;
    border: 1px solid var(--nv-border)
}
.nv-sidebar .widget h3,
.nv-sidebar .widget-title {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--nv-gold);
    color: var(--nv-text)
}
.nv-sidebar .widget ul {
    margin: 0;
    padding: 0;
    list-style: none
}
.nv-sidebar .widget ul li {
    padding: 7px 0;
    border-bottom: 1px solid var(--nv-border);
    font-size: .88rem
}
.nv-sidebar .widget ul li:last-child {
    border-bottom: 0
}
.nv-sidebar .widget ul li a {
    color: var(--nv-text-muted);
    transition: var(--nv-transition)
}
.nv-sidebar .widget ul li a:hover {
    color: var(--nv-gold)
}
.nv-sidebar .widget p {
    font-size: .88rem;
    color: var(--nv-text-muted);
    line-height: 1.6
}
/* ===================================
   FOOTER
   =================================== */
.nv-footer {
    background: var(--nv-darker);
    border-top: 3px solid var(--nv-gold);
    color: #c5c3ba;
    padding: 0
}
.nv-footer-inner {
    max-width: var(--nv-max-width);
    margin: 0 auto;
    padding: 32px 20px 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px
}
.nv-footer-col {
    flex: 1;
    min-width: 200px
}
.nv-footer-col h4 {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #e8e6df;
    position: relative;
    padding-bottom: 8px
}
.nv-footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--nv-gold)
}
.nv-footer-col p {
    font-size: .84rem;
    line-height: 1.65;
    color: #b0aea5
}
.nv-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0
}
.nv-footer-col ul li {
    padding: 5px 0
}
.nv-footer-col ul li a {
    color: #c5c3ba;
    font-size: .84rem;
    transition: var(--nv-transition);
    text-decoration: none
}
.nv-footer-col ul li a:hover {
    color: var(--nv-gold-bright)
}
.nv-footer-bottom {
    background: #171717;
    padding: 14px 20px;
    text-align: center;
    font-size: .78rem;
    color: #8a8880
}
.nv-footer-bottom a {
    color: #c5c3ba;
    font-weight: 600
}
.nv-footer-bottom a:hover {
    color: var(--nv-gold-bright)
}
/* ===================================
   SEARCH FORM
   =================================== */
.nv-search-form {
    display: flex;
    gap: 0
}
.nv-search-form input[type="search"] {
    flex: 1;
    padding: 9px 14px;
    border: 1px solid var(--nv-border);
    border-right: none;
    border-radius: var(--nv-radius) 0 0 var(--nv-radius);
    font-size: .88rem;
    background: var(--nv-white);
    color: var(--nv-text);
    outline: none
}
.nv-search-form input[type="search"]:focus {
    border-color: var(--nv-gold)
}
.nv-search-form button {
    padding: 9px 16px;
    background: var(--nv-dark);
    color: var(--nv-white);
    border: 1px solid var(--nv-dark);
    border-radius: 0 var(--nv-radius) var(--nv-radius) 0;
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--nv-transition)
}
.nv-search-form button:hover {
    background: var(--nv-gold);
    border-color: var(--nv-gold)
}
/* ===================================
   404 PAGE
   =================================== */
.nv-404 {
    text-align: center;
    padding: 60px 20px
}
.nv-404 h1 {
    font-size: 3.5rem;
    color: var(--nv-gold);
    margin-bottom: 12px
}
.nv-404 p {
    font-size: 1.05rem;
    color: var(--nv-text-muted);
    margin-bottom: 24px
}
/* ===================================
   RESPONSIVE
   =================================== */
@media(max-width:900px) {
    .nv-content-wrap {
        flex-direction: column
    }
    .nv-sidebar {
        width: 100%
    }
    .nv-article {
        padding: 22px 20px
    }
}
@media(max-width:768px) {
    :root {
        --nv-header-height: 54px
    }
    .nv-logo a {
        font-size: 1.15rem
    }
    .nv-article h1 {
        font-size: 1.35rem
    }
    .nv-article h2 {
        font-size: 1.15rem
    }
    .nv-footer-inner {
        flex-direction: column;
        gap: 20px
    }
    .nv-footer-col {
        min-width: 100%
    }
}
@media(max-width:480px) {
    .nv-container {
        padding: 0 14px
    }
    .nv-article {
        padding: 18px 16px;
        border-radius: 4px
    }
    .nv-post-list .nv-post-item {
        padding: 16px
    }
}
/* ===================================
   SCREENREADER
   =================================== */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}
.screen-reader-text:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
    background: var(--nv-gold);
    color: var(--nv-dark);
    padding: 8px 16px;
    font-size: .9rem;
    font-weight: 700;
    z-index: 100000
}
/* ===================================
   WORDPRESS ALIGNMENT
   =================================== */
.alignleft {
    float: left;
    margin: 0 20px 12px 0
}
.alignright {
    float: right;
    margin: 0 0 12px 20px
}
.aligncenter {
    display: block;
    margin: 12px auto
}
.wp-caption {
    max-width: 100%;
    margin-bottom: 14px
}
.wp-caption-text {
    font-size: .78rem;
    color: var(--nv-text-muted);
    text-align: center;
    padding: 6px 0
}
.gallery-caption {
    font-size: .78rem
}
.bypostauthor {}
.sticky {}