/* ======================================================
   BURÇ UYUMU SAYFASI — CSS
   faldunyam.com mistik tema
   Google Font: Cinzel + Raleway
   <link href="https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Raleway:wght@300;400;500&display=swap" rel="stylesheet">
   Bu dosyayı burcuyumu.php içinde şöyle bağla:
   <link rel="stylesheet" href="burcuyumu.css">
====================================================== */

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

body {
    background: #0a0a1a;
    color: #e8dcc8;
    font-family: 'Raleway', sans-serif;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Yıldızlı arka plan — mor/lacivert ışıma */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(80, 30, 120, 0.35) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 80%, rgba(30, 10, 80, 0.4) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 0%,  rgba(180, 130, 40, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Küçük yıldız noktaları */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 10% 15%, rgba(255,255,200,0.7) 0%, transparent 100%),
        radial-gradient(1px 1px at 25% 40%, rgba(255,255,200,0.5) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 40% 8%,  rgba(255,255,200,0.8) 0%, transparent 100%),
        radial-gradient(1px 1px at 55% 30%, rgba(255,255,200,0.4) 0%, transparent 100%),
        radial-gradient(1px 1px at 70% 12%, rgba(255,255,200,0.6) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 85% 25%, rgba(255,255,200,0.7) 0%, transparent 100%),
        radial-gradient(1px 1px at 92% 60%, rgba(255,255,200,0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 15% 70%, rgba(255,255,200,0.4) 0%, transparent 100%),
        radial-gradient(1px 1px at 60% 75%, rgba(255,255,200,0.5) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 35% 88%, rgba(255,255,200,0.6) 0%, transparent 100%),
        radial-gradient(1px 1px at 78% 90%, rgba(255,255,200,0.4) 0%, transparent 100%),
        radial-gradient(1px 1px at 5%  50%, rgba(255,255,200,0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 48% 55%, rgba(255,255,200,0.3) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 95% 40%, rgba(255,255,200,0.6) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

/* Tüm içerik z-index üstünde */
nav, main, footer, .page-wrap { position: relative; z-index: 1; }

/* ======================================================
   CSS DEĞİŞKENLERİ
====================================================== */
:root {
    --altin:       #c9a84c;
    --altin-acik:  #f0d080;
    --altin-koyu:  #7a5c1e;
    --mor:         #6b3fa0;
    --mor-acik:    #9b6fd0;
    --kart-bg:     rgba(255,255,255,0.04);
    --kart-border: rgba(201,168,76,0.2);
    --yazi:        #e8dcc8;
}

/* ======================================================
   NAVBAR
====================================================== */
.fald-nav {
    background: rgba(5, 4, 20, 0.92);
    border-bottom: 1px solid rgba(201,168,76,0.25);
    backdrop-filter: blur(8px);
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    position: sticky;
    top: 0;
    z-index: 999;
}
.fald-nav .logo img { height: 44px; }
.fald-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
}
.fald-nav ul li { position: relative; }
.fald-nav ul li a {
    color: #c9c0a8;
    text-decoration: none;
    font-size: 0.9em;
    padding: 6px 10px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}
.fald-nav ul li a:hover { color: var(--altin); background: rgba(201,168,76,0.1); }
.fald-nav .sep { color: rgba(201,168,76,0.35); padding: 0 2px; }

/* Dropdown */
.fald-nav .dd { position: relative; }
.fald-nav .dd-menu {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    background: rgba(8,6,28,0.97);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 8px;
    min-width: 170px;
    padding: 6px 0;
    z-index: 1000;
    backdrop-filter: blur(6px);
}
.fald-nav .dd:hover .dd-menu { display: block; }
.fald-nav .dd-menu li a {
    display: block;
    padding: 7px 14px;
    border-radius: 0;
    font-size: 0.88em;
}
.fald-nav .dd-menu li a:hover { background: rgba(201,168,76,0.12); }
.fald-nav .dd > a::after { content: " ▾"; font-size: 0.75em; opacity: 0.6; }

/* ======================================================
   HERO
====================================================== */
.hero {
    text-align: center;
    padding: 56px 20px 30px;
}
.hero-icon {
    font-size: 3.2em;
    display: block;
    margin-bottom: 14px;
    filter: drop-shadow(0 0 18px rgba(201,168,76,0.6));
    animation: floatIcon 4s ease-in-out infinite;
}
@keyframes floatIcon {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}
.hero h1 {
    font-family: 'Cinzel', serif;
    font-size: 2.2em;
    font-weight: 700;
    color: var(--altin-acik);
    text-shadow: 0 0 30px rgba(201,168,76,0.4);
    margin-bottom: 12px;
    letter-spacing: 2px;
}
.hero p {
    font-size: 1em;
    color: #b8aa90;
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.7;
    font-weight: 300;
}

/* Dekoratif çizgi */
.divider {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 400px;
    margin: 0 auto 36px;
}
.divider::before, .divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--altin-koyu), transparent);
}
.divider span { color: var(--altin); font-size: 1.1em; }

/* ======================================================
   SEÇİCİ PANEL
====================================================== */
.secici-panel {
    max-width: 680px;
    margin: 0 auto 36px;
    background: rgba(10, 6, 40, 0.7);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 16px;
    padding: 28px 24px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 40px rgba(107,63,160,0.2), inset 0 0 30px rgba(0,0,0,0.2);
}
.secici-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: center;
    gap: 16px;
}
.secici-group { display: flex; flex-direction: column; gap: 7px; }
.secici-group label {
    font-family: 'Cinzel', serif;
    font-size: 0.82em;
    color: var(--altin);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.secici-group select {
    background: rgba(5, 3, 20, 0.85);
    border: 1px solid rgba(201,168,76,0.35);
    color: #e8dcc8;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.95em;
    font-family: 'Raleway', sans-serif;
    cursor: pointer;
    min-width: 160px;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M0 0l6 8 6-8z' fill='%23c9a84c'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}
.secici-group select:focus {
    outline: none;
    border-color: var(--altin);
    box-shadow: 0 0 12px rgba(201,168,76,0.25);
}
.secici-group select option { background: #0d0a22; }

.vs-badge {
    font-family: 'Cinzel', serif;
    font-size: 1.3em;
    color: var(--mor-acik);
    text-shadow: 0 0 12px rgba(155,111,208,0.6);
    padding-bottom: 8px;
    align-self: flex-end;
}

.hesapla-btn {
    background: linear-gradient(135deg, #7a3fa0, #4a1a70);
    border: 1px solid rgba(201,168,76,0.4);
    color: var(--altin-acik);
    font-family: 'Cinzel', serif;
    font-size: 0.95em;
    letter-spacing: 1px;
    padding: 12px 28px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: 0 4px 20px rgba(107,63,160,0.4);
    white-space: nowrap;
}
.hesapla-btn:hover {
    background: linear-gradient(135deg, #9b5fd0, #6b2fa0);
    box-shadow: 0 6px 28px rgba(107,63,160,0.6);
    transform: translateY(-2px);
}
.hesapla-btn:active { transform: translateY(0); }

/* ======================================================
   SONUÇ KUTUSU
====================================================== */
#sonucKutu {
    display: none;
    max-width: 680px;
    margin: 0 auto 48px;
    background: rgba(10, 5, 35, 0.85);
    border: 1px solid rgba(201,168,76,0.35);
    border-radius: 16px;
    padding: 30px 26px;
    backdrop-filter: blur(12px);
    box-shadow: 0 0 50px rgba(107,63,160,0.25), inset 0 0 40px rgba(0,0,0,0.3);
    text-align: center;
    animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: none; }
}
#sonucKutu h2 {
    font-family: 'Cinzel', serif;
    color: var(--altin-acik);
    font-size: 1.5em;
    margin-bottom: 6px;
    text-shadow: 0 0 20px rgba(201,168,76,0.35);
}
#sonucKutu .element-text {
    font-size: 0.85em;
    color: var(--mor-acik);
    margin-bottom: 22px;
    letter-spacing: 1px;
}

/* Uyum çubuğu */
.bar-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 22px;
}
.bar-label {
    font-family: 'Cinzel', serif;
    color: var(--altin);
    font-size: 0.85em;
    letter-spacing: 1px;
}
.bar-bg {
    width: 220px;
    height: 12px;
    background: rgba(255,255,255,0.08);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(201,168,76,0.15);
}
.bar-fill {
    height: 100%;
    border-radius: 6px;
    transition: width 1.2s cubic-bezier(.4,0,.2,1);
    width: 0;
}
.bar-pct {
    font-family: 'Cinzel', serif;
    color: var(--altin-acik);
    font-size: 1.1em;
    min-width: 46px;
    text-align: left;
}

/* Kategori kutucukları */
.kat-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}
.kat-kart {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.18);
    border-radius: 10px;
    padding: 12px 18px;
    min-width: 150px;
    text-align: center;
}
.kat-kart .kat-baslik {
    font-family: 'Cinzel', serif;
    font-size: 0.75em;
    color: var(--altin);
    letter-spacing: 1px;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.kat-kart .kat-yildiz { font-size: 1em; color: #f0d080; }
.kat-kart .kat-pct    { font-size: 0.82em; color: #a09070; margin-top: 3px; }

/* Açıklama metni */
#sonucAciklama {
    font-size: 0.95em;
    line-height: 1.8;
    color: #c8baa0;
    font-weight: 300;
    border-top: 1px solid rgba(201,168,76,0.12);
    padding-top: 16px;
}

/* ======================================================
   BURÇ KARTLARI
====================================================== */
.bolum {
    max-width: 1080px;
    margin: 0 auto 60px;
    padding: 0 16px;
}
.bolum-baslik {
    text-align: center;
    font-family: 'Cinzel', serif;
    font-size: 1.5em;
    color: var(--altin-acik);
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(201,168,76,0.3);
}
.bolum-alt {
    text-align: center;
    font-size: 0.88em;
    color: #8a7a60;
    margin-bottom: 28px;
    font-weight: 300;
}

.burc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 18px;
}
.burc-kart {
    background: rgba(8, 5, 28, 0.75);
    border: 1px solid rgba(201,168,76,0.18);
    border-radius: 14px;
    padding: 20px;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
    cursor: default;
    backdrop-filter: blur(6px);
}
.burc-kart:hover {
    transform: translateY(-5px);
    border-color: rgba(201,168,76,0.45);
    box-shadow: 0 8px 32px rgba(107,63,160,0.3);
}

.kart-baslik {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(201,168,76,0.12);
}
.kart-emoji {
    font-size: 2em;
    filter: drop-shadow(0 0 6px rgba(201,168,76,0.4));
}
.kart-baslik h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.05em;
    color: var(--altin-acik);
    margin-bottom: 2px;
}
.kart-baslik .kart-meta { font-size: 0.78em; color: var(--mor-acik); }

.uyum-etiket-grup { margin: 8px 0; }
.uyum-etiket-baslik {
    font-size: 0.75em;
    color: #6a5a40;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}
.etiket-row { display: flex; flex-wrap: wrap; gap: 5px; }
.etiket {
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.78em;
    font-weight: 500;
    white-space: nowrap;
}
.et-yesil   { background: rgba(60,160,90,0.18);  color: #7de0a0; border: 1px solid rgba(60,160,90,0.3); }
.et-mavi    { background: rgba(70,130,200,0.15); color: #88c0f8; border: 1px solid rgba(70,130,200,0.25); }
.et-kirmizi { background: rgba(180,60,60,0.15);  color: #f08080; border: 1px solid rgba(180,60,60,0.25); }

.kart-aciklama {
    font-size: 0.85em;
    line-height: 1.65;
    color: #a09070;
    font-weight: 300;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* ======================================================
   FOOTER
====================================================== */
.site-footer {
    text-align: center;
    padding: 28px 16px;
    border-top: 1px solid rgba(201,168,76,0.12);
    color: #5a5040;
    font-size: 0.83em;
    font-weight: 300;
    line-height: 1.8;
}
.site-footer strong { color: #7a6a50; }

/* ======================================================
   RESPONSIVE
====================================================== */
@media (max-width: 600px) {
    .hero h1            { font-size: 1.5em; }
    .secici-row         { flex-direction: column; align-items: center; }
    .secici-group select{ min-width: 220px; }
    .bar-bg             { width: 140px; }
    .burc-grid          { grid-template-columns: 1fr; }
    .fald-nav ul        { gap: 2px; }
}