/*
Theme Name: l00t
Theme URI: https://example.com/l00t
Author: l00t
Author URI: https://example.com
Description: l00t — cyberpunk temalı WordPress blok teması.
Requires at least: 6.0
Requires PHP: 7.4
Version: 1.1.8
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: l00t
Tags: block-theme, full-site-editing, custom-colors, custom-menu, translation-ready
*/

/* =========================================
   l00t — Global Reset & Base
   ========================================= */

:root {
    --l00t-header-height: 72px;
}

@media (max-width: 768px) {
    :root { --l00t-header-height: 60px; }
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    max-width: 100%;
    overflow-x: clip;
}

body {
    background-color: #050505;
    color: #ffffff;
    font-family: 'Rajdhani', system-ui, sans-serif;
    min-height: 100vh;
}

/* Sticky header'ın çalışması için sarmalayıcılarda overflow olmamalı */
.wp-site-blocks,
.wp-site-blocks > .wp-block-template-part,
.wp-site-blocks > header,
.wp-site-blocks > .wp-block-group {
    overflow: visible;
}

/* WordPress varsayılan içerik stilleri */
.wp-block-post-content a {
    color: #c8d2ff;
    text-decoration: none;
    border-bottom: 1px solid rgba(200, 210, 255, 0.3);
    transition: border-color 0.3s ease, color 0.3s ease;
}
.wp-block-post-content a:hover {
    color: #fff;
    border-bottom-color: #fff;
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb {
    background: rgba(200, 210, 255, 0.15);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(200, 210, 255, 0.3); }
/* =========================================
   l00t — Page Hero (listing sayfa başlıkları)
   ========================================= */

.l00t-page-hero {
    max-width: 1200px;
    margin: 4rem auto 1rem;
    padding: 0 2rem;
    text-align: center;
}

.l00t-page-title {
    font-family: 'Orbitron', 'Rajdhani', system-ui, sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 600;
    text-transform: lowercase;
    letter-spacing: 2px;
    line-height: 1.1;
    margin: 0 0 0.75rem;

    background: linear-gradient(180deg, #ffffff 0%, #c0c0d0 50%, #505060 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    filter:
        drop-shadow(0 0 20px rgba(200, 210, 255, 0.3))
        drop-shadow(0 0 40px rgba(120, 80, 200, 0.2));
}

.l00t-page-sub {
    font-family: 'Rajdhani', system-ui, sans-serif;
    font-size: 1rem;
    color: rgba(200, 200, 210, 0.7);
    letter-spacing: 0.5px;
    margin: 0;
}