/*
Theme Name: Avukat V2
Theme URI: https://example.com/
Author: Antigravity
Author URI: https://example.com/
Description: Avukat Selin Demir Kurumsal WordPress Teması. SOLID prensipleri ve SEO uyumlu kurumsal mimari.
Version: 1.0.0
Text Domain: avukat-v2
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

:root {
    --color-primary: #1a1a1a; /* Derin Antrasit */
    --color-secondary: #fdfaf6; /* Yumuşak Vizon / Krem */
    --color-accent: #c5a059; /* Mat Altın */
    --color-text: #4a4a4a;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-secondary);
    color: var(--color-text);
    line-height: 1.6;
}

h1, h2, h3, .serif {
    font-family: 'Playfair Display', serif;
    color: var(--color-primary);
}

.gold-gradient {
    background: linear-gradient(135deg, #c5a059 0%, #e2c285 100%);
}

.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-overlay {
    background: linear-gradient(to right, rgba(253, 250, 246, 0.95) 30%, rgba(253, 250, 246, 0.4) 100%);
}

/* Özel buton stili */
.btn-premium {
    background-color: var(--color-primary);
    color: white;
    padding: 12px 32px;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 1px solid var(--color-primary);
    display: inline-block;
}

.btn-premium:hover {
    background-color: transparent;
    color: var(--color-primary);
}
