/* assets/css/style.css */
:root {
    --pastel-pembe: #FFD1DC;
    --pastel-mavi: #A7D8DE;
    --pastel-nane: #C1E1C1;
    --pastel-sari: #FFF2CC;
    --yazi-ana: #2C3E50;
    --yazi-acik: #5D6D7E;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Open Sans', sans-serif;
    background: linear-gradient(135deg, #fdfbfb 0%, #f8f9fa 100%);
    color: var(--yazi-ana);
    line-height: 1.6;
}

header {
    background: linear-gradient(135deg, var(--pastel-pembe) 0%, var(--pastel-mavi) 100%);
    padding: 2rem;
    text-align: center;
    border-radius: 0 0 50px 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.search-box {
    max-width: 500px;
    margin: 0 auto;
}

.search-box input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.search-box input:focus {
    outline: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transform: scale(1.02);
}

.kategoriler {
    margin-top: 2rem;
}

.kategoriler a {
    color: white;
    text-decoration: none;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: rgba(255,255,255,0.2);
    transition: all 0.3s;
}

.kategoriler a:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.isim-listesi {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.isim-karti {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.isim-karti:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.isim-karti a {
    text-decoration: none;
    color: inherit;
}

.isim-karti h2 {
    font-size: 1.8rem;
    color: var(--yazi-ana);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.koken {
    display: inline-block;
    background: var(--pastel-nane);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    color: var(--yazi-ana);
}

.kuran-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #F4D03F;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    color: var(--yazi-ana);
}

.isim-detay {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.bilgi-karti {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eef2f6;
}

.bilgi-karti h3 {
    font-size: 1.2rem;
    color: var(--pastel-mavi);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.buyuk-isim {
    font-size: 3rem;
    font-weight: bold;
    color: var(--yazi-ana);
    text-align: center;
    font-family: 'Brush Script MT', cursive;
}

.anlam {
    font-size: 1.2rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--yazi-acik);
}

.benzer-isimler {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px dashed var(--pastel-mavi);
}

.benzer-listesi {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.benzer-item {
    background: var(--pastel-sari);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    color: var(--yazi-ana);
    transition: all 0.3s;
}

.benzer-item:hover {
    background: var(--pastel-pembe);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    
    .isim-listesi {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .buyuk-isim {
        font-size: 2rem;
    }
}

.numeroloji {
    background: linear-gradient(135deg, #f6f9fc 0%, #e6f0fa 100%);
    text-align: center;
}
.numeroloji h3 {
    color: #667eea;
}

.paylasim-butonlari {
    margin: 20px 0;
    text-align: center;
}
.paylasim-butonlari a {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}
.paylasim-butonlari a:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}