
/* style.css - Weblixar PRO Tasarım */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;500;700&family=Montserrat:wght@300;400;600&display=swap');

:root {
    --primary: #00f2ff; /* Neon Mavi */
    --secondary: #bc13fe; /* Neon Mor */
    --bg-dark: #050505;
    --card-bg: #111;
    --text: #fff;
    --text-gray: #b0b0b0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: 'Montserrat', sans-serif; 
    background-color: var(--bg-dark); 
    color: var(--text); 
    padding-top: 80px; /* Header için boşluk */
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* HEADER */
header {
    position: fixed; top: 0; width: 100%; padding: 20px 50px;
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(5,5,5,0.9); backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05); z-index: 1000;
}
.logo { 
    font-family: 'Rajdhani'; font-size: 2rem; font-weight: 700; 
    letter-spacing: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
nav ul { display: flex; gap: 25px; }
nav a { font-size: 0.95rem; font-weight: 500; text-transform: uppercase; }
nav a:hover { color: var(--primary); }
.btn-admin { 
    border: 1px solid var(--primary); color: var(--primary); 
    padding: 8px 20px; border-radius: 5px; font-weight: 600;
}
.btn-admin:hover { background: var(--primary); color: #000; box-shadow: 0 0 15px var(--primary); }

/* HERO SECTION (HAVALI GİRİŞ) */
.hero {
    height: 85vh; display: flex; align-items: center; justify-content: center;
    text-align: center; position: relative; overflow: hidden;
    margin-top: -80px; /* Header boşluğunu nötrlemek için */
}

/* O İSTEDİĞİN ARKA PLAN EFEKTLERİ */
.hero::before {
    content: ''; position: absolute; width: 400px; height: 400px;
    background: var(--secondary); filter: blur(180px); opacity: 0.3;
    top: 10%; left: 20%; animation: float 6s infinite alternate;
    z-index: -1;
}
.hero::after {
    content: ''; position: absolute; width: 300px; height: 300px;
    background: var(--primary); filter: blur(150px); opacity: 0.3;
    bottom: 10%; right: 20%; animation: float2 7s infinite alternate;
    z-index: -1;
}
@keyframes float { from {transform: translateY(0);} to {transform: translateY(20px);} }
@keyframes float2 { from {transform: translateY(0);} to {transform: translateY(-20px);} }

.hero-content { z-index: 1; padding: 20px; }
.hero h1 { font-family: 'Rajdhani'; font-size: 4rem; margin-bottom: 20px; line-height: 1.1; }
.hero span { color: var(--primary); }
.hero p { color: var(--text-gray); font-size: 1.2rem; margin-bottom: 40px; max-width: 700px; margin-left: auto; margin-right: auto; }

.cta-btn {
    padding: 15px 45px; background: var(--primary); color: #000;
    font-weight: bold; font-size: 1.1rem; border-radius: 30px;
    box-shadow: 0 0 20px rgba(0,242,255,0.4); display: inline-block;
}
.cta-btn:hover { background: #fff; box-shadow: 0 0 30px rgba(255,255,255,0.6); transform: scale(1.05); }

/* CONTAINER & SECTIONS */
.container { max-width: 1200px; margin: 0 auto; padding: 60px 20px; }
.section-title { text-align: center; font-family: 'Rajdhani'; font-size: 2.5rem; margin-bottom: 50px; }
.section-title span { border-bottom: 3px solid var(--primary); padding-bottom: 10px; }

/* GRID SYSTEMS */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.card { 
    background: var(--card-bg); padding: 40px; border: 1px solid #222; 
    border-radius: 15px; transition: 0.4s; position: relative;
}
.card:hover { border-color: var(--primary); transform: translateY(-10px); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.card i { font-size: 2.5rem; color: var(--secondary); margin-bottom: 20px; }
.card h3 { margin-bottom: 15px; color: #fff; font-size: 1.4rem; }
.card p { color: var(--text-gray); }

/* BLOG & ADMIN CSS */
.admin-panel { background: #111; padding: 40px; border: 1px solid #333; border-radius: 10px; max-width: 600px; margin: 40px auto; }
input, textarea { width: 100%; background: #222; border: 1px solid #333; color: #fff; padding: 15px; margin-bottom: 20px; border-radius: 5px; outline: none; }
input:focus, textarea:focus { border-color: var(--primary); }
button { width: 100%; padding: 15px; background: var(--primary); border: none; font-weight: bold; cursor: pointer; border-radius: 5px; font-size: 1rem; }
.blog-post { background: var(--card-bg); border: 1px solid #222; padding: 30px; margin-bottom: 30px; border-radius: 10px; }
.blog-date { color: var(--primary); font-size: 0.9rem; font-weight: 600; }
.blog-post h2 { font-family: 'Rajdhani'; font-size: 1.8rem; margin: 10px 0; }
.delete-btn { background: #d90429; color: white; padding: 8px 15px; border-radius: 5px; display: inline-block; margin-top: 10px; font-size: 0.8rem; }