/* ============================================================
   ArcanaAnima - Main Style File (index.php ve genel stiller)
   Navbar stilleri: assets/css/nav.css dosyasinda
   ============================================================ */

/* ── RESET ── */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background: #0a0a14;
    color: #e8dcc8;
    font-family: Georgia, serif;
}

/* ── DIL SECICI (sayfa ici - eski versiyon) ──
   Bazi sayfalarda navbar disinda ayri dil switcher var.
   lang-switcher class'i bu elemanlar icin. */
.lang-switcher {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.lang-switcher a {
    color: #c9a96e;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 5px 14px;
    border: 1px solid transparent;
    border-radius: 20px;
    transition: all 0.3s;
}

.lang-switcher a:hover {
    border-color: #c9a96e;
    color: #fff;
}

.lang-switcher a.active {
    border-color: #c9a96e;
    background: rgba(201, 169, 110, 0.15);
    color: #fff;
}

/* ── HERO (index.php ana sayfa giris bolumu) ──
   Tam ekran, radial gradient arka plan, ortalanmis icerik. */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 60px;
    background: radial-gradient(ellipse at center, #1a1a3e 0%, #0a0a14 100%);
}

.hero-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: rgba(201,169,110,0.85);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    color: gold;
    font-family: Georgia, serif;
    margin-bottom: 16px;
    text-shadow: 0 0 30px rgba(201,169,110,0.4);
}

.hero-subtitle {
    font-size: 0.95rem;
    color: rgba(201,169,110,0.7);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-desc {
    color: #b8a090;
    font-family: Georgia, serif;
    line-height: 1.8;
    max-width: 580px;
    margin: 0 auto 36px;
    font-size: 1rem;
}

/* ── BUTONLAR ──
   btn-primary-aa : gold dolu buton (ana aksiyon)
   btn-secondary-aa: seffaf kenarlıklı buton (ikincil aksiyon)
   btn-mystical    : gradient buton (tarot sayfasi icin) */

.btn-primary-aa {
    background: gold;
    color: #0a0a14;
    border: none;
    padding: 13px 36px;
    border-radius: 30px;
    font-family: Georgia, serif;
    font-size: 0.95rem;
    font-weight: bold;
    text-decoration: none;
    margin-right: 12px;
    transition: opacity 0.2s;
    display: inline-block;
}

.btn-primary-aa:hover { opacity: 0.85; color: #0a0a14; }

.btn-secondary-aa {
    background: transparent;
    color: rgba(201,169,110,0.8);
    border: 1px solid rgba(201,169,110,0.5);
    padding: 13px 36px;
    border-radius: 30px;
    font-family: Georgia, serif;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.2s, color 0.2s;
}

.btn-secondary-aa:hover { border-color: gold; color: gold; }

.btn-mystical {
    background: linear-gradient(135deg, #c9a96e, #8b6914);
    border: none;
    color: #0d0d1a;
    padding: 12px 40px;
    font-size: 1.1rem;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-mystical:hover {
    background: linear-gradient(135deg, #e8c88a, #c9a96e);
    color: #0d0d1a;
}

/* ── ONE CIKAN MAKALE BLOGU (index.php) ──
   Son makaleyi gosteren ozel blok. */
.featured-block {
    background: rgba(201,169,110,0.06);
    border: 1px solid rgba(201,169,110,0.25);
    border-radius: 14px;
    padding: 32px 40px;
    max-width: 720px;
    margin: 0 auto;
}

.featured-label {
    font-size: 0.72rem;
    color: rgba(201,169,110,0.85);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.featured-block h3 {
    color: gold;
    font-family: Georgia, serif;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.featured-block p {
    color: #b8a090;
    font-family: Georgia, serif;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.featured-block a.read-link {
    color: rgba(201,169,110,0.7);
    text-decoration: none;
    font-size: 0.88rem;
}

.featured-block a.read-link:hover { color: gold; }

/* ── KATEGORI GRID (index.php) ──
   3 kolonlu kategori kartlari.
   Mobilde 2 kolona, 480px altinda 1 kolona dusuyor. */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}

.cat-card {
    background: rgba(201,169,110,0.04);
    border: 1px solid rgba(201,169,110,0.18);
    border-radius: 14px;
    padding: 28px 24px;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: border-color 0.2s, background 0.2s;
}

.cat-card:hover {
    border-color: gold;
    background: rgba(201,169,110,0.08);
}

.cat-card .icon { font-size: 2rem; margin-bottom: 12px; }

.cat-card h3 {
    color: gold;
    font-size: 0.95rem;
    font-family: Georgia, serif;
    margin-bottom: 8px;
}

.cat-card p {
    color: #b8a090;
    font-size: 0.83rem;
    line-height: 1.6;
    font-family: Georgia, serif;
}

/* ── MONETIZASYON KARTLARI (index.php) ──
   Tarot, Premium, Kisisel Rapor kartlari. */
.monetize-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.monetize-card {
    background: rgba(201,169,110,0.06);
    border: 1px solid rgba(201,169,110,0.25);
    border-radius: 14px;
    padding: 28px 32px;
    text-align: center;
    min-width: 200px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s;
}

.monetize-card:hover { border-color: gold; }

.monetize-card h4 {
    color: gold;
    font-family: Georgia, serif;
    font-size: 1rem;
    margin-bottom: 8px;
}

.monetize-card p {
    color: #b8a090;
    font-size: 0.82rem;
    font-family: Georgia, serif;
}

/* "Yakinda" etiketi - monetize karti icin */
.badge-soon {
    font-size: 0.7rem;
    background: rgba(201,169,110,0.15);
    color: rgba(201,169,110,1);
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 6px;
}

/* ── MOBIL UYUMLULUK (index.php ozeli) ──
   Navbar mobil stilleri nav.css dosyasinda.
   Burada sadece index.php sayfa icerigi icin mobil ayarlar. */
@media (max-width: 768px) {
    .cat-grid { grid-template-columns: 1fr 1fr; }
    .hero h1 { font-size: 2.4rem; }
}

@media (max-width: 480px) {
    .cat-grid { grid-template-columns: 1fr; }
}
