/*
Theme Name: Lunara
Theme URI: https://ezgiatli.com
Author: Ezgi Atlı
Author URI: https://ezgiatli.com
Description: Ezgi Atlı için tasarlanmış modern, koyu temalı ve lüks bir portfolyo WordPress teması. Profesyonel Koç, Transaksiyonel Analiz ve Takım Koçluğu hizmetleri için optimize edilmiştir.
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lunara
Tags: dark, portfolio, one-page, custom-menu, featured-images, translation-ready

Lunara - Elegant Dark Portfolio Theme v2.0
*/

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Premium Dark Color Palette - Clean & Professional */
    --color-bg-primary: #0d0d0d;
    --color-bg-secondary: #141414;
    --color-bg-tertiary: #1a1a1a;
    --color-bg-card: #1f1f1f;
    --color-bg-elevated: #252525;
    
    /* Premium Accent Colors - Rose Gold & Champagne */
    --color-accent: #d4a574;
    --color-accent-light: #e8c4a0;
    --color-accent-dark: #b8956b;
    
    /* Text Colors */
    --color-text-primary: #ffffff;
    --color-text-secondary: #a0a0a0;
    --color-text-muted: #707070;
    --color-text-light: #f5f5f5;
    --color-text-dark: #121212;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
    
    /* Borders */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --border-color: rgba(212, 165, 116, 0.2);
    
    /* Animations */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

body {
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-text-primary);
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ============================================
   SITE HEADER & NAVIGATION (GÜNCELLENDİ)
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.90);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 165, 116, 0.15);
    padding: 20px 0; /* Header genişletildi */
    transition: all 0.4s ease;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo: Daha büyük ve daha aşağıda */
.site-logo img {
    height: auto;
    max-height: 95px; /* Belirgin büyüme */
    width: auto;
    display: block;
    margin-top: 8px; /* Aşağıya kaydırıldı */
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.site-logo img:hover {
    transform: scale(1.08);
}

/* Menü Tasarımı */
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 45px; /* Boşluk artırıldı */
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu ul li a {
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 1.1rem; /* Font büyütüldü */
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    position: relative;
    padding: 12px 0;
    transition: color 0.3s ease;
}

/* Yeni Profesyonel Hover Efekti */
.nav-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    transition: width 0.4s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.nav-menu ul li a:hover {
    color: var(--color-accent);
}

.nav-menu ul li a:hover::after {
    width: 100%;
}

/* Aktif Sayfa */
.nav-menu ul li.current-menu-item a {
    color: var(--color-accent);
}

.nav-menu ul li.current-menu-item a::after {
    width: 100%;
    background: var(--color-accent);
}

/* Header Social (Eski kod devamı) */
.header-social {
    display: flex;
    gap: var(--spacing-sm);
    margin-left: var(--spacing-lg);
    padding-left: var(--spacing-lg);
    border-left: 1px solid var(--border-color);
}

.header-social a {
    color: var(--color-text-secondary);
    font-size: 1.2rem;
    transition: var(--transition-base);
}

.header-social a:hover {
    color: var(--color-accent);
    transform: translateY(-2px);
}

/* HERO SECTION */
.hero-section {
    padding: var(--spacing-xl) 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.hero-subtitle {
    font-family: 'Outfit', sans-serif;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 600;
    display: block;
    margin-bottom: var(--spacing-sm);
}

.hero-title {
    font-size: clamp(3rem, 10vw, 6rem);
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
}

/* SERVICES SECTION */
.services-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-bg-secondary);
}

.section-header {
    margin-bottom: var(--spacing-lg);
}

.section-subtitle {
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    display: block;
    margin-bottom: var(--spacing-xs);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.service-card {
    background-color: var(--color-bg-card);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-md);
    border: 1px solid transparent;
    transition: var(--transition-base);
}

.service-card:hover {
    border-color: var(--border-color);
    transform: translateY(-10px);
    background-color: var(--color-bg-elevated);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: var(--spacing-md);
}

.service-card h3 {
    margin-bottom: var(--spacing-sm);
}

/* FOOTER */
.site-footer {
    background-color: var(--color-bg-tertiary);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.footer-brand {
    padding-right: var(--spacing-xl);
}

.footer-logo {
    margin-bottom: var(--spacing-md);
}

.footer-description {
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background-color: var(--color-bg-elevated);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-primary);
    transition: var(--transition-base);
}

.footer-social-link:hover {
    background-color: var(--color-accent);
    color: var(--color-text-dark);
    transform: translateY(-3px);
}

.footer-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    color: var(--color-text-primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .header-social {
        display: none;
    }
    
    .site-logo img {
        max-height: 60px; /* Mobilde aşırı büyümesin diye kıstık */
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        padding-right: 0;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* UTILITY CLASSES */
.text-center { text-align: center; }
.text-accent { color: var(--color-accent); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }

/* SELECTION & SCROLLBAR */
::selection {
    background: var(--color-accent);
    color: var(--color-text-dark);
}