/*
Theme Name: AlmancaFast V9
Theme URI: https://almancatest.com
Author: AI Developer
Description: Arama çubuğu kaldırıldı, sade tasarım.
Version: 9.0
*/
:root { --primary: #FFCE00; --primary-dark: #E6B800; --secondary: #000000; --accent: #DD0000; --bg-color: #f8fafc; --card-bg: #ffffff; --text-main: #334155; --border-color: #e2e8f0; }
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; background-color: var(--bg-color); color: var(--text-main); line-height: 1.6; }

/* Header & Nav */
.site-header { background: #fff; border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 1000; }
.header-inner { max-w: 1200px; margin: 0 auto; padding: 1rem; display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 900; text-decoration: none; color: #000; }
.main-navigation ul { list-style: none; display: flex; gap: 20px; }
.main-navigation a { text-decoration: none; color: #555; font-weight: 600; }
.menu-toggle { display: none; background:none; border:none; font-size:1.5rem; }

/* Hero */
.hero-section { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: #000; padding: 100px 20px 100px; text-align: center; border-radius: 0 0 50px 50px; margin-bottom: 60px; box-shadow: 0 10px 30px rgba(255, 206, 0, 0.3); }
.hero-title { font-size: 3.5rem; font-weight: 800; margin-bottom: 20px; line-height: 1.1; color: #000; }
.hero-desc { font-size: 1.3rem; max-w: 700px; margin: 0 auto 30px auto; opacity: 0.85; font-weight: 500; }
.hero-btn { display: inline-block; background: #000; color: #fff; padding: 15px 40px; border-radius: 30px; text-decoration: none; font-weight: bold; transition: transform 0.2s; }
.hero-btn:hover { transform: scale(1.05); }

/* Grid & Cards */
.container { max-w: 1200px; margin: 0 auto; padding: 0 20px 50px; }
.section-title { font-size: 2rem; font-weight: 700; color: #000; margin-bottom: 40px; text-align: center; }
.test-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; }

.test-card { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 20px rgba(0,0,0,0.05); text-decoration: none; color: inherit; transition: transform 0.3s ease, box-shadow 0.3s ease; border: 1px solid #eee; display: flex; flex-direction: column; padding: 30px; text-align: center; align-items: center; }
.test-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

.card-icon-area { width: 80px; height: 80px; border-radius: 50%; background: #f0f0f0; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 2.5rem; font-weight: 900; color: #333; transition: 0.3s; }
.test-card:hover .card-icon-area { background: var(--primary); color: #000; }

.card-title { font-size: 1.5rem; font-weight: 800; margin-bottom: 10px; line-height: 1.3; }
.card-desc { font-size: 1rem; color: #666; margin-bottom: 20px; line-height: 1.5; }

/* Buton Revizesi */
.btn-card { 
    margin-top: auto; 
    background: var(--secondary); 
    color: #fff !important; 
    padding: 12px 30px; 
    border-radius: 30px; 
    font-size: 0.95rem; 
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none; 
    transition: 0.3s; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.test-card:hover .btn-card { background: var(--accent); transform: scale(1.05); box-shadow: 0 6px 15px rgba(221, 0, 0, 0.4); }

.color-blue .letter-icon { color: #2563eb; } .color-red .letter-icon { color: #ef4444; } .color-green .letter-icon { color: #16a34a; }

/* Quiz & Post Styles */
.quiz-wrapper { max-w: 800px; margin: 2rem auto; background: white; padding: 3rem; border-radius: 24px; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.1); border: 1px solid var(--border-color); }
.option-btn { width: 100%; text-align: left; padding: 1.25rem; margin: 0.75rem 0; border: 2px solid var(--border-color); border-radius: 12px; background: white; cursor: pointer; transition: 0.2s; font-size: 1.05rem; font-weight: 500; }
.option-btn:hover { border-color: var(--primary); background: #f8fafc; }
.option-btn.correct { background: #dcfce7; border-color: #22c55e; color: #14532d; }
.option-btn.wrong { background: #fee2e2; border-color: #ef4444; color: #7f1d1d; opacity: 0.8; }

@media (max-width: 768px) { .menu-toggle { display: block; } .main-navigation { display: none; width: 100%; position: absolute; top: 100%; left:0; background:#fff; padding:20px; box-shadow:0 10px 20px rgba(0,0,0,0.1); } .main-navigation.is-active { display: block; } .hero-title { font-size: 2.5rem; } .hero-section { padding: 80px 20px 100px; border-radius: 0 0 30px 30px; } .quiz-wrapper { padding: 1.5rem; } }
