/*
Theme Name: XTurkey Click
Theme URI: https://xturkey.click
Author: XTurkey
Author URI: https://xturkey.click
Description: xturkey.click icin ozel olarak tasarlanmis WordPress temasi. Basit, hizli ve mobil uyumlu yonlendirme sayfasi.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: xturkey-click
Tags: one-column, custom-menu, featured-images, translation-ready
*/

/* ========================
   RESET & BASE
   ======================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
    font-size: 18px;
    color: #000000;
    text-align: center;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 1.6;
}

/* ========================
   HEADER
   ======================== */
.site-header {
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-branding {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.site-title a {
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: color 0.3s ease;
}

.site-title a:hover {
    color: #28a745;
}

.site-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-top: 5px;
}

/* ========================
   NAVIGATION
   ======================== */
.main-navigation {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px 0;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.main-navigation li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.main-navigation li a:hover,
.main-navigation li.current-menu-item a {
    color: #28a745;
    border-bottom-color: #28a745;
}

/* ========================
   MAIN CONTENT AREA
   ======================== */
.site-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.landing-container {
    max-width: 700px;
    width: 100%;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================
   HEADINGS
   ======================== */
.landing-heading {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.landing-heading a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.landing-heading a:hover {
    color: #28a745;
}

/* ========================
   CTA BUTTON
   ======================== */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
    padding: 20px 60px;
    text-decoration: none;
    text-shadow: none;
    border-radius: 50px;
    border: none;
    box-shadow: 0 8px 30px rgba(40, 167, 69, 0.4);
    transition: all 0.35s ease;
    cursor: pointer;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(40, 167, 69, 0.6);
    background: linear-gradient(135deg, #2dbd4e 0%, #25d9a5 100%);
    color: #ffffff;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

/* ========================
   SEO LINKS (orijinal HTML'den)
   ======================== */
.seo-links {
    width: 6200px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    height: 0;
    opacity: 0;
}

/* ========================
   CONTENT AREA (posts/pages)
   ======================== */
.content-area {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.entry-content,
.page-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
}

.entry-title {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 20px;
}

.entry-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.entry-title a:hover {
    color: #28a745;
}

.entry-meta {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin-bottom: 20px;
}

.entry-content p {
    margin-bottom: 16px;
    line-height: 1.8;
    width: auto;
    text-align: left;
}

.entry-content a {
    color: #28a745;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.entry-content a:hover {
    color: #20c997;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* ========================
   PAGINATION
   ======================== */
.pagination {
    margin-top: 40px;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: #28a745;
    color: #ffffff;
}

/* ========================
   FOOTER
   ======================== */
.site-footer {
    padding: 30px 20px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-links {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #28a745;
}

.footer-copy {
    margin-top: 10px;
}

/* ========================
   404 PAGE
   ======================== */
.error-404 {
    text-align: center;
}

.error-404 .error-code {
    font-size: 120px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
    margin-bottom: 20px;
}

.error-404 .error-message {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 30px;
}

.error-404 .back-home {
    display: inline-block;
    padding: 12px 30px;
    background: #28a745;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.error-404 .back-home:hover {
    background: #2dbd4e;
    transform: translateY(-2px);
}

/* ========================
   WIDGETS / SIDEBAR
   ======================== */
.widget-area {
    max-width: 800px;
    margin: 30px auto;
    padding: 0 20px;
}

.widget {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
    text-align: left;
}

.widget-title {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.widget ul {
    list-style: none;
}

.widget ul li {
    padding: 6px 0;
}

.widget ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.widget ul li a:hover {
    color: #28a745;
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 768px) {
    .landing-heading {
        font-size: 30px;
    }

    .cta-button {
        font-size: 18px;
        padding: 16px 40px;
    }

    .entry-content,
    .page-content {
        padding: 25px;
    }

    .entry-title {
        font-size: 24px;
    }

    .main-navigation ul {
        gap: 15px;
    }

    .site-title {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .landing-heading {
        font-size: 24px;
    }

    .cta-button {
        font-size: 16px;
        padding: 14px 30px;
    }

    .entry-content,
    .page-content {
        padding: 20px;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
    }
}
