/*
Theme Name: Azra Modern
Description: Azra Epilasyon için hızlı, hafif ve modern WordPress teması.
Author: Geliştirici
Version: 1.0.0
Text Domain: azra-modern
*/

:root {
    --primary-color: #d48a9b; /* Güzellik merkezleri için zarif bir pudra pembesi */
    --primary-hover: #b87383;
    --text-dark: #2d3748;
    --text-light: #718096;
    --bg-color: #ffffff;
    --bg-light: #f7fafc;
    --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --container-width: 1200px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Modern Header (Flexbox) - GÜNCELLENDİ */
.site-header {
    background-color: var(--bg-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo & Site Başlığı */
.site-branding {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-logo img {
    max-height: 50px;
    width: auto;
    display: block;
}

.site-title a {
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.site-description {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 2px 0 0 0;
}

/* Menü Tasarımı */
.main-navigation ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center;
    gap: 20px;
}

.main-navigation li {
    margin: 0 !important;
    padding: 0 !important;
}

.main-navigation a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s ease-in-out;
}

.main-navigation a:hover {
    color: var(--primary-color);
    background-color: var(--bg-light);
}

/* Modern Grid Yapısı */
.main-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 50px 0;
}

.card {
    background: var(--bg-color);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}
/* Ana Sayfa Stilleri */
.hero-section {
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
    padding: 80px 0;
    text-align: center;
    border-radius: 0 0 24px 24px;
    margin-bottom: 50px;
}

.hero-content h1 {
    font-size: 2.5rem;
    color: #880e4f;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.2rem;
    color: #4a148c;
    margin-bottom: 25px;
}

.btn-primary {
    display: inline-block;
    background-color: #d81b60;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(216, 27, 96, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #ad1457;
    transform: translateY(-2px);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.service-card {
    text-align: center;
}

.service-card .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.service-card h3 {
    margin-bottom: 10px;
    color: var(--primary-hover);
}
/* --- SLIDER STİLLERİ --- */
.slider-container {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
    margin-bottom: 50px;
    border-radius: 0 0 20px 20px;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.slide-content h2 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.slide-content p {
    font-size: 1.3rem;
    color: #f7fafc;
    margin-bottom: 25px;
    max-width: 600px;
}

/* Slider Butonları */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: #fff;
    border: none;
    padding: 12px 18px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s;
    z-index: 10;
}

.slider-btn:hover { background: var(--primary-color); }
.prev-btn { left: 20px; }
.next-btn { right: 20px; }

/* --- GÖRSELLİ KARTLAR & BLOG STİLLERİ --- */
.service-card, .blog-card {
    padding: 0 !important;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card:hover .card-image img {
    transform: scale(1.06);
}

.card-body {
    padding: 20px;
}

.card-body h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.card-body h3 a {
    color: var(--text-dark);
    text-decoration: none;
}

.card-body h3 a:hover {
    color: var(--primary-color);
}

.post-date {
    font-size: 0.85rem;
    color: var(--text-light);
    display: block;
    margin-bottom: 8px;
}

.read-more {
    display: inline-block;
    margin-top: 12px;
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: none;
}
/* ================= YORUM BÖLÜMÜ ================= */
.comments-area {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--bg-light);
}

.comments-title {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 700;
}

/* Yorum Listesi */
.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.comment-body {
    background: var(--bg-color);
    border: 1px solid #eef0f2;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}

.comment-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.comment-author .avatar {
    border-radius: 50%;
    width: 42px;
    height: 42px;
}

.comment-author .fn {
    font-weight: 700;
    font-style: normal;
    color: var(--text-dark);
}

.comment-metadata a {
    font-size: 0.8rem;
    color: var(--text-light);
    text-decoration: none;
}

.comment-content {
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Yorum Formu */
.comment-respond {
    background: var(--bg-color);
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 24px;
    margin-top: 30px;
}

.comment-reply-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    margin-bottom: 15px;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s;
    font-family: var(--font-main);
}

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: var(--primary-color);
}

.comment-form .submit {
    background-color: var(--primary-color);
    color: var(--bg-color);
    border: none;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.comment-form .submit:hover {
    background-color: var(--primary-hover);
}
/* ================= HİZMETLER / İÇERİK SAYFASI GÜZELLİK DOKUNUŞU ================= */

/* Sayfa Ana Konteyneri (Metnin ortada sıkışmasını önler, genişlik kazandırır) */
.page-main-content, .single-page-article {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    background-color: transparent;
}

/* Sayfa Başlığı Estetiği */
.page-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

.page-title {
    font-size: 2.2rem !important;
    color: #880e4f !important;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* İçerik Alanı (Lüks Kart Mimarisi) */
.page-content {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(212, 138, 155, 0.08);
    border: 1px solid #fce4ec;
}

/* Paragraflar ve Okunabilirlik */
.page-content p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Alt Başlıklar (H2 / H3 Vurguları) */
.page-content h2, .page-content h3 {
    color: #880e4f;
    font-size: 1.4rem;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Maddeleme Listeleri (Neden Biz Alanı İçin Şık Liste) */
.page-content ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 20px 0;
}

.page-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #4a5568;
    font-size: 1rem;
}

.page-content ul li::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.9rem;
}