/* --- DEĞİŞKENLER VE GENEL AYARLAR --- */
:root {
    --primary-dark: #1a1a2e;
    --secondary-dark: #16213e;
    --accent-color: #c9b037; /* Altın Rengi */
    --text-light: #f5f5f5;
    --text-muted: #b0b0b0;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2 {
    font-family: var(--font-heading);
    color: var(--accent-color);
    margin-bottom: 1rem;
}

h1 { font-size: 4rem; }
h2 { font-size: 2.5rem; text-align: center; }

p { margin-bottom: 1rem; }

.section {
    padding: 80px 0;
}

.section-dark {
    background-color: var(--secondary-dark);
}

/* --- GİRİŞ (HERO) BÖLÜMÜ --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(rgba(26, 26, 46, 0.7), rgba(26, 26, 46, 0.9)), url('https://images.unsplash.com/photo-1518173946687-a4c8892bbd9f?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
}

.hero .quote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-muted);
    margin: 1.5rem 0;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--accent-color);
    color: var(--primary-dark);
    transform: scale(1.05);
}

/* --- Parçacık Animasyonu için Canvas --- */
#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* --- BİYOGRAFİ BÖLÜMÜ --- */
.bio-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.bio-image {
    flex: 1;
}

.bio-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.bio-text {
    flex: 2;
}

/* --- SÖZLER BÖLÜMÜ --- */
.quotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

blockquote {
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 5px solid var(--accent-color);
    padding: 20px;
    border-radius: 5px;
    font-style: italic;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

blockquote:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.08);
}

blockquote p {
    margin-bottom: 10px;
}

blockquote cite {
    color: var(--accent-color);
    font-weight: 600;
    font-style: normal;
}

/* --- FOOTER --- */
.footer {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid #333;
}

.back-to-top {
    display: inline-block;
    margin-top: 10px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.back-to-top:hover {
    color: var(--accent-color);
}

/* --- RESPONSIVE (TAŞINABİLİR) TASARIM --- */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .hero .quote { font-size: 1.2rem; }
    
    .bio-content {
        flex-direction: column;
    }
}