/*
Theme Name: Gurbetyeri Premium
Theme URI: https://gurbetyeri.net/
Author: fLayer
Author URI: https://ofs.net.tr/
Description: Özel SEO altyapılı, otomatik makale ve iç linkleme sistemine sahip, ultra hızlı premium sohbet ve blog teması. Yoast veya AIOSEO gerektirmez!
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gurbetyeri
*/

        :root {
            --bg-dark: #0a1329;
            --bg-nav: #070d1d;
            --primary: #1e58d4;
            --primary-hover: #1545ad;
            --primary-light: #2b6bf5;
            --text-light: #f0f4f8;
            --text-muted: #94a3b8;
            --card-bg-dark: #121d3a;
            --border-dark: #1e293b;
            --bg-light: #f4f7fb;
            --accent-purple: #7a3bad;
            --accent-orange: #ff6b00;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background-color: #ffffff;
            color: #333;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* --- NAVBAR --- */
        .navbar {
            background-color: var(--bg-nav);
            color: white;
            padding: 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 24px;
            font-weight: 700;
            color: white;
            text-decoration: none;
            letter-spacing: 1px;
        }

        .logo i {
            color: var(--primary-light);
            font-size: 32px;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            height: 100%;
        }

        .nav-links a {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-muted);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            height: 100%;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
        }

        .nav-links a:hover, .nav-links a.active {
            color: white;
            border-bottom-color: var(--primary-light);
        }

        /* --- HERO SECTION --- */
        .hero {
            background: radial-gradient(circle at 80% 20%, #11224f 0%, var(--bg-dark) 100%);
            padding: 60px 0 120px 0;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background-image: 
                radial-gradient(circle at 15% 50%, rgba(255,255,255,0.08) 1px, transparent 1px),
                radial-gradient(circle at 85% 30%, rgba(255,255,255,0.06) 2px, transparent 2px),
                radial-gradient(circle at 90% 80%, rgba(255,255,255,0.05) 1.5px, transparent 1.5px);
            background-size: 200px 200px;
            pointer-events: none;
        }

        .hero .container {
            display: flex;
            gap: 50px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        /* LOGIN BOX */
        .login-wrapper {
            flex: 0 0 380px;
        }

        .login-box {
            background-color: var(--card-bg-dark);
            border-radius: 12px;
            padding: 35px 30px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
            border: 1px solid rgba(255,255,255,0.05);
        }

        .login-box h3 {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 25px;
            color: white;
        }

        .input-group {
            margin-bottom: 20px;
        }

        .input-group label {
            display: block;
            font-size: 13px;
            color: var(--text-light);
            margin-bottom: 8px;
            font-weight: 500;
        }

        .input-wrapper {
            position: relative;
        }

        .input-wrapper i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            font-size: 14px;
        }

        .input-wrapper input {
            width: 100%;
            background-color: rgba(0,0,0,0.2);
            border: 1px solid var(--border-dark);
            color: white;
            padding: 14px 15px 14px 45px;
            border-radius: 8px;
            font-size: 14px;
            transition: all 0.3s;
        }

        .input-wrapper input:focus {
            outline: none;
            border-color: var(--primary);
            background-color: rgba(0,0,0,0.4);
        }

        .btn-primary {
            width: 100%;
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 14px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            transition: background-color 0.3s;
            margin-top: 10px;
        }

        .btn-primary:hover {
            background-color: var(--primary-hover);
        }

        .divider {
            display: flex;
            align-items: center;
            text-align: center;
            margin: 20px 0;
            color: var(--text-muted);
            font-size: 12px;
        }
        .divider::before, .divider::after {
            content: '';
            flex: 1;
            border-bottom: 1px solid var(--border-dark);
        }
        .divider:not(:empty)::before { margin-right: .5em; }
        .divider:not(:empty)::after { margin-left: .5em; }

        .btn-outline {
            width: 100%;
            background-color: transparent;
            color: var(--text-light);
            border: 1px solid var(--border-dark);
            padding: 14px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            transition: all 0.3s;
        }

        .btn-outline:hover {
            background-color: rgba(255,255,255,0.05);
            border-color: var(--text-muted);
        }

        /* HERO TEXT AREA */
        .hero-text {
            flex: 1;
            padding-left: 20px;
        }

        .badge {
            background-color: rgba(30, 88, 212, 0.2);
            color: var(--primary-light);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 20px;
            border: 1px solid rgba(30, 88, 212, 0.3);
        }

        .hero-text h1 {
            font-size: 52px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .hero-text h1 span {
            color: var(--primary-light);
        }

        .hero-text p {
            font-size: 16px;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 40px;
            max-width: 500px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .feature-item { text-align: left; }
        .feature-icon {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            margin-bottom: 12px;
        }

        .icon-blue { background: rgba(30,144,255,0.15); color: #1e90ff; }
        .icon-green { background: rgba(46,204,113,0.15); color: #2ecc71; }
        .icon-purple { background: rgba(155,89,182,0.15); color: #9b59b6; }
        .icon-yellow { background: rgba(241,196,15,0.15); color: #f1c40f; }

        .feature-item h4 { font-size: 14px; font-weight: 600; margin-bottom: 5px; color: white; }
        .feature-item p { font-size: 12px; color: var(--text-muted); margin: 0; line-height: 1.4; }

        /* --- STATS BAR --- */
        .stats-wrapper {
            margin-top: -50px;
            position: relative;
            z-index: 10;
        }

        .stats-bar {
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            display: flex;
            justify-content: space-between;
            padding: 30px 40px;
        }

        .stat-item { display: flex; align-items: center; gap: 15px; }
        .stat-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            background: #f0f4f8;
        }
        
        .stat-item:nth-child(1) .stat-icon { color: #3498db; }
        .stat-item:nth-child(2) .stat-icon { color: #e74c3c; }
        .stat-item:nth-child(3) .stat-icon { color: #f39c12; }
        .stat-item:nth-child(4) .stat-icon { color: #2ecc71; }

        .stat-info h2 { font-size: 24px; font-weight: 700; color: #1e293b; line-height: 1; margin-bottom: 5px; }
        .stat-info p { font-size: 13px; color: #64748b; margin: 0; }

        /* --- YENİ BÖLÜM 1: 3 YUVARLAK İKON --- */
        .features-circles {
            background-color: var(--bg-light);
            padding: 80px 0 60px;
            margin-top: -40px; /* Stats bar'ın altına girmesi için */
            padding-top: 100px;
        }
        
        .circles-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            text-align: center;
            gap: 40px;
        }

        .circle-item {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .circle-icon-box {
            width: 100px;
            height: 100px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
            margin-bottom: 20px;
        }

        .circle-icon-box i {
            font-size: 40px;
            background: -webkit-linear-gradient(45deg, #a020f0, #00d2ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .circle-item h3 {
            font-size: 22px;
            color: var(--accent-purple);
            margin-bottom: 15px;
            font-weight: 700;
        }

        .circle-item p {
            font-size: 14px;
            color: #64748b;
            line-height: 1.6;
            padding: 0 20px;
        }

        /* --- YENİ BÖLÜM 2: SEO YAZILARI & MOBİL KART --- */
        .seo-section {
            padding: 60px 0;
            background: white;
        }

        .seo-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 50px;
        }

        .seo-text {
            color: #475569;
        }

        .seo-text h2 {
            font-size: 20px;
            color: var(--accent-purple);
            margin-bottom: 20px;
            font-weight: 600;
            position: relative;
            display: inline-block;
        }
        .seo-text h2::after {
            content: '';
            position: absolute;
            left: 0; bottom: -8px;
            width: 100%;
            height: 3px;
            background: #ff6b00; /* Orange line */
            border-radius: 2px;
        }

        .seo-text p {
            font-size: 13px;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        /* Mobil Kartı */
        .mobile-promo-card {
            background: #eef2f6;
            border-radius: 16px;
            padding: 40px 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .mobile-promo-card h3 {
            font-size: 26px;
            color: var(--accent-purple);
            margin-bottom: 20px;
            font-weight: 700;
        }

        .mobile-promo-card p {
            font-size: 14px;
            color: #475569;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        /* Sahte Telefon Çizimi */
        .phone-mockup {
            width: 160px;
            height: 320px;
            background: #2a1147;
            border-radius: 20px;
            margin: 30px auto -80px;
            border: 8px solid #1a1a2e;
            position: relative;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .phone-mockup::before {
            content: '';
            position: absolute;
            top: 0; left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 15px;
            background: #1a1a2e;
            border-bottom-left-radius: 10px;
            border-bottom-right-radius: 10px;
        }

        .phone-mockup .brand {
            color: #00d2ff;
            font-weight: 800;
            font-size: 18px;
            text-align: center;
        }
        .phone-mockup .brand span {
            display: inline-block;
            background: #00d2ff;
            color: #2a1147;
            padding: 2px 6px;
            border-radius: 4px;
            font-size: 14px;
            margin-top: 5px;
        }

        /* --- SON MAKALELER --- */
        .articles-section {
            padding: 60px 0 120px;
            background: white;
        }

        .article-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 30px;
            border-bottom: 2px solid #e2e8f0;
            padding-bottom: 15px;
        }

        .article-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .article-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.03);
            border: 1px solid #e2e8f0;
            transition: 0.3s;
            cursor: pointer;
        }

        .article-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        }

        /* --- YENİ BÖLÜM 3: WAVY FOOTER --- */
        .site-footer {
            position: relative;
            background: white;
            text-align: center;
            padding-top: 50px;
        }

        .footer-title {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-bottom: 30px;
            position: relative;
            z-index: 10;
        }

        .footer-title i {
            font-size: 50px;
            background: -webkit-linear-gradient(45deg, #00d2ff, #3a7bd5);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .footer-title h2 {
            font-size: 36px;
            color: #2a1147;
            font-weight: 700;
        }

        .footer-title h2 span {
            color: #ff6b00;
        }

        /* Dalga Şekli (SVG) ve Alt Kısım */
        .footer-bottom {
            background-color: #3b2063; /* Koyu mor */
            position: relative;
            padding: 80px 0 40px;
            color: white;
            text-align: left;
        }

        .footer-wave {
            position: absolute;
            top: -100px;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
        }

        .footer-wave svg {
            display: block;
            width: calc(130% + 1.3px);
            height: 120px;
        }

        .footer-wave .shape-fill-orange { fill: #ff6b00; }
        .footer-wave .shape-fill-purple { fill: #3b2063; }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .footer-brand {
            font-size: 28px;
            font-weight: 800;
            color: #00d2ff;
            margin-bottom: 15px;
        }
        .footer-brand span {
            background: #00d2ff;
            color: #3b2063;
            padding: 2px 8px;
            border-radius: 6px;
        }

        .footer-links {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            font-size: 13px;
            font-weight: 500;
        }

        .footer-links a:hover { color: #00d2ff; }

        .footer-copy {
            font-size: 12px;
            color: rgba(255,255,255,0.5);
            line-height: 1.8;
        }

        .footer-social {
            display: flex;
            gap: 15px;
        }
        .footer-social a {
            color: white;
            font-size: 24px;
            transition: 0.3s;
        }
        .footer-social a:hover {
            color: #2a1147;
        }

        /* --- RESPONSIVE MEDIA QUERIES --- */
        @media (max-width: 992px) {
            .hero .container { flex-direction: column; text-align: center; }
            .login-wrapper { flex: 0 0 auto; width: 100%; max-width: 400px; margin: 0 auto; order: 2; }
            .hero-text { padding-left: 0; order: 1; margin-bottom: 30px; }
            .features-grid { grid-template-columns: repeat(2, 1fr); text-align: left; }
            
            .stats-bar { flex-wrap: wrap; gap: 20px; }
            .stat-item { width: calc(50% - 10px); }
            
            .circles-grid { grid-template-columns: 1fr; }
            
            .seo-grid { grid-template-columns: 1fr; }
            .seo-tabs { flex-direction: column; gap: 10px; border-bottom: none !important; }
            .seo-tab { border-bottom: none !important; padding-left: 10px; border-left: 3px solid transparent; }
            
            .article-grid { grid-template-columns: 1fr; }
            .footer-content { flex-direction: column; text-align: center; gap: 30px; }
            .footer-links { justify-content: center; flex-wrap: wrap; }
        }
        
        @media (max-width: 768px) {
            .nav-links { display: none; } /* Hamburger menü gerekecek ama şimdilik gizli */
            .hero h1 { font-size: 36px; }
        }

/* WP MENU FIXES */
.nav-links { list-style: none; display: flex; gap: 25px; align-items: center; margin: 0; padding: 0; }
.nav-links li { list-style: none; }
.nav-links li a { color: #334155; text-decoration: none; font-weight: 500; font-size: 15px; transition: 0.3s; display: flex; align-items: center; gap: 8px; }
.nav-links li a:hover { color: var(--primary); }

.footer-links ul { list-style: none; display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; padding: 0; margin: 0; }
.footer-links li a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 15px; transition: 0.3s; }
.footer-links li a:hover { color: white; }
