/* ============================================
   Bi'Ara Network - Ana Stil Dosyası
   Sosyal Etkinlik Topluluğu
   ============================================ */

/* --- CSS Değişkenleri --- */
:root {
    /* Renkler */
    --primary: #1a5c3a;
    --primary-light: #2d8f5e;
    --primary-dark: #0e3d26;
    --secondary: #d4a74a;
    --secondary-light: #f0cc7a;
    --accent: #e85d3a;
    --accent-light: #ff7f5c;

    /* Nötr */
    --dark: #1a1a2e;
    --dark-soft: #2d2d44;
    --text: #333340;
    --text-light: #6b6b80;
    --text-muted: #9e9eb0;
    --border: #e0e0ea;
    --bg: #fafafa;
    --bg-soft: #f0efe9;
    --white: #ffffff;

    /* Tipografi */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Aralık */
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.1);
    --shadow-hover: 0 8px 32px rgba(26,92,58,0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Layout */
    --container: 1200px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover { color: var(--primary-light); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--dark);
    line-height: 1.3;
    font-weight: 600;
}

/* --- Erişilebilirlik --- */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 12px 24px;
    z-index: 10000;
    border-radius: 0 0 var(--radius) var(--radius);
    transition: top 0.3s;
}
.skip-link:focus { top: 0; color: #fff; }

:focus-visible {
    outline: 3px solid var(--secondary);
    outline-offset: 2px;
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition);
}

.header-top {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
    padding: 6px 0;
}
.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-contact { display: flex; gap: 20px; }
.header-contact a { color: rgba(255,255,255,0.8); font-size: 0.8rem; }
.header-contact a:hover { color: var(--secondary); }
.header-contact i { margin-right: 5px; }
.header-social { display: flex; gap: 12px; }
.header-social a {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    transition: all var(--transition);
}
.header-social a:hover { color: var(--secondary); transform: translateY(-2px); }

.main-nav {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    padding: 0;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.logo {
    display: flex;
    align-items: center;
    z-index: 101;
}
.logo img { height: 45px; width: auto; }
.logo-text {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}
.logo-text small {
    display: block;
    font-family: var(--font-body);
    font-size: 0.55rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary);
    margin-top: -4px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
}
.nav-item a {
    display: block;
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    position: relative;
}
.nav-item a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform var(--transition);
    border-radius: 2px;
}
.nav-item a:hover::after,
.nav-item.active a::after { transform: scaleX(1); }
.nav-item a:hover { color: var(--primary); background: rgba(26,92,58,0.04); }
.nav-item.active a { color: var(--primary); font-weight: 600; }

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: all var(--transition);
    border-radius: 2px;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Header scrolled */
.site-header.scrolled .header-top { display: none; }
.site-header.scrolled .main-nav { box-shadow: 0 4px 30px rgba(0,0,0,0.08); }

/* --- Hero / Slider --- */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: calc(var(--header-height) + 34px);
    background: var(--dark);
}
.hero-slider { position: relative; width: 100%; min-height: 85vh; }
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; position: relative; }
.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.5);
}
.hero-slide-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-height: 85vh;
    padding: 0 10%;
    color: #fff;
}
.hero-tag {
    display: inline-block;
    background: var(--secondary);
    color: var(--dark);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    animation: slideUp 0.8s ease both;
}
.hero-slide-content h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    color: #fff;
    margin-bottom: 16px;
    max-width: 700px;
    animation: slideUp 0.8s 0.1s ease both;
}
.hero-slide-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 550px;
    margin-bottom: 30px;
    animation: slideUp 0.8s 0.2s ease both;
}
.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.6);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition);
}
.hero-dot.active { background: var(--secondary); border-color: var(--secondary); width: 32px; border-radius: 6px; }

/* Statik hero (slider yoksa) */
.hero-static {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    margin-top: calc(var(--header-height) + 34px);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    overflow: hidden;
}
.hero-static::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-static .container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 20px;
}
.hero-static h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: #fff;
    margin-bottom: 20px;
}
.hero-static p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto 36px;
}

/* --- Butonlar --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-transform: none;
    letter-spacing: 0.3px;
}
.btn-primary {
    background: var(--primary);
    color: #fff;
}
.btn-primary:hover {
    background: var(--primary-light);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}
.btn-secondary {
    background: var(--secondary);
    color: var(--dark);
}
.btn-secondary:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}
.btn-sm { padding: 10px 22px; font-size: 0.8rem; }
.btn-lg { padding: 18px 40px; font-size: 1rem; }

/* --- Bölüm Başlıkları --- */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-soft); }
.section-dark { background: var(--dark); color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }

.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header .section-tag {
    display: inline-block;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}
.section-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 16px;
}
.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}
.section-header .divider {
    width: 60px;
    height: 3px;
    background: var(--secondary);
    margin: 20px auto 0;
    border-radius: 3px;
}

/* --- Kartlar --- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.card:hover .card-image img { transform: scale(1.08); }
.card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: #fff;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.card-date-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--white);
    color: var(--dark);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.card-date-badge .day { display: block; font-size: 1.4rem; font-weight: 700; line-height: 1; }
.card-date-badge .month { display: block; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); }

.card-body { padding: 24px; }
.card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.card-meta i { color: var(--primary); margin-right: 4px; }
.card-body h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    transition: color var(--transition);
}
.card-body h3 a { color: var(--dark); }
.card-body h3 a:hover { color: var(--primary); }
.card-body p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-top: 1px solid var(--border);
}
.card-footer .read-more {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 6px;
}
.card-footer .read-more i { transition: transform var(--transition); }
.card-footer .read-more:hover i { transform: translateX(4px); }

/* --- Kategoriler Grid --- */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}
.category-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    border: 2px solid transparent;
}
.category-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}
.category-card i {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 14px;
    display: block;
}
.category-card h3 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
}
.category-card p {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 8px;
}

/* --- Hakkımızda --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}
.about-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--secondary);
    opacity: 0.15;
    border-radius: var(--radius-lg);
    z-index: -1;
}
.about-content h2 { margin-bottom: 20px; }
.about-content p { color: var(--text-light); margin-bottom: 16px; }
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}
.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--bg-soft);
    border-radius: var(--radius);
}
.stat-item .number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}
.stat-item .label {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 4px;
}

/* --- CTA Banner --- */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 30px 30px;
}
.cta-section h2 { color: #fff; font-size: 2.2rem; margin-bottom: 16px; position: relative; }
.cta-section p { opacity: 0.9; margin-bottom: 30px; max-width: 500px; margin-left: auto; margin-right: auto; position: relative; }

/* --- Galeri --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item .gallery-title {
    position: absolute;
    bottom: 16px;
    left: 16px;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition);
}
.gallery-item:hover .gallery-title { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 85vh; border-radius: var(--radius); }
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
}

/* --- Ekip --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}
.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-card-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 30px auto 16px;
    border: 4px solid var(--bg-soft);
}
.team-card-image img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.team-card .title { color: var(--primary); font-size: 0.85rem; font-weight: 500; }
.team-card p { color: var(--text-light); font-size: 0.85rem; padding: 12px 24px 0; }
.team-bio { padding: 12px 24px 0; }
.team-bio-text { color: var(--text-light); font-size: 0.85rem; line-height: 1.6; margin: 0; padding: 0; text-align: left; }
.team-card-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 20px;
}
.team-card-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-soft);
    color: var(--text-light);
    transition: all var(--transition);
}
.team-card-social a:hover { background: var(--primary); color: #fff; }

/* --- İletişim --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.contact-form { background: var(--white); padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: var(--text);
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text);
    transition: border-color var(--transition);
    background: var(--bg);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    outline: none;
    background: var(--white);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.info-card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.info-card h4 { font-family: var(--font-body); font-size: 1rem; margin-bottom: 4px; }
.info-card p { color: var(--text-light); font-size: 0.85rem; }
.info-card a { color: var(--primary); }

/* --- Page Header (İç Sayfalar) --- */
.page-header {
    padding: 100px 0 60px;
    margin-top: calc(var(--header-height) + 34px);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    text-align: center;
    color: #fff;
    position: relative;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04' fill-rule='evenodd'%3E%3Cpath d='M0 20L20 0h20v20L20 40H0V20z'/%3E%3C/g%3E%3C/svg%3E");
}
.page-header h1 { color: #fff; font-size: 2.4rem; margin-bottom: 10px; position: relative; }
.page-header p { opacity: 0.85; position: relative; max-width: 600px; margin: 0 auto; }

/* Breadcrumb */
.breadcrumb-nav { position: relative; margin-top: 20px; }
.breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 8px;
    flex-wrap: wrap;
}
.breadcrumb li { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; }
.breadcrumb li::after { content: '/'; opacity: 0.5; }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb a { color: rgba(255,255,255,0.8); }
.breadcrumb a:hover { color: var(--secondary); }
.breadcrumb span { color: var(--secondary); }

/* --- Yazı Detay --- */
.post-detail { padding: 60px 0; }
.post-detail-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}
.post-content { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); }
.post-content h1 { font-size: 2rem; margin-bottom: 20px; }
.post-content .post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 30px;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.post-content .post-meta i { color: var(--primary); margin-right: 4px; }
.post-content .featured-img {
    width: 100%;
    border-radius: var(--radius);
    margin-bottom: 30px;
    aspect-ratio: 16/9;
    object-fit: cover;
}
.post-body { line-height: 1.9; font-size: 1.05rem; }
.post-body h2 { font-size: 1.5rem; margin: 30px 0 14px; }
.post-body h3 { font-size: 1.25rem; margin: 24px 0 12px; }
.post-body p { margin-bottom: 16px; }
.post-body img { border-radius: var(--radius); margin: 20px 0; }
.post-body ul, .post-body ol { margin: 16px 0; padding-left: 24px; }
.post-body li { margin-bottom: 8px; }
.post-body blockquote {
    border-left: 4px solid var(--secondary);
    padding: 16px 24px;
    margin: 20px 0;
    background: var(--bg-soft);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--text-light);
}

/* Sidebar */
.sidebar .widget {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}
.sidebar .widget h3 {
    font-size: 1.1rem;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
    margin-bottom: 16px;
}
.sidebar .widget-list { list-style: none; }
.sidebar .widget-list li { padding: 10px 0; border-bottom: 1px solid var(--border); }
.sidebar .widget-list li:last-child { border: none; }
.sidebar .widget-list a {
    color: var(--text);
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
}
.sidebar .widget-list a:hover { color: var(--primary); }

/* --- Pagination --- */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 50px;
}
.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--text);
    font-weight: 500;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}
.page-link:hover { background: var(--primary); color: #fff; }
.page-link.active { background: var(--primary); color: #fff; pointer-events: none; }
.page-link.prev, .page-link.next { width: auto; padding: 0 16px; }

/* --- Footer --- */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    position: relative;
}
.footer-wave {
    color: var(--dark);
    margin-bottom: -2px;
}
.footer-wave svg { display: block; width: 100%; height: 60px; }

.footer-main { padding: 60px 0 40px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
}
.footer-about p { margin-top: 16px; font-size: 0.85rem; line-height: 1.7; }
.footer-logo .logo-text { color: #fff; }
.footer-logo .logo-text small { color: var(--secondary); }

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    transition: all var(--transition);
}
.footer-social a:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }

.footer-col h3 {
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.65);
    font-size: 0.85rem;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-links a::before { content: '›'; color: var(--secondary); font-weight: 700; }
.footer-links a:hover { color: var(--secondary); padding-left: 6px; }

.footer-contact { list-style: none; }
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.85rem;
}
.footer-contact i { color: var(--secondary); margin-top: 4px; }
.footer-contact a { color: rgba(255,255,255,0.65); }
.footer-contact a:hover { color: var(--secondary); }

/* Newsletter */
.newsletter-form { margin-top: 24px; }
.newsletter-form h4 { color: #fff; font-family: var(--font-body); font-size: 0.9rem; margin-bottom: 12px; }
.subscribe-form .input-group { display: flex; }
.subscribe-form input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid rgba(255,255,255,0.15);
    border-right: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-size: 0.85rem;
}
.subscribe-form input::placeholder { color: rgba(255,255,255,0.4); }
.subscribe-form input:focus { border-color: var(--primary); outline: none; }
.subscribe-form button {
    padding: 12px 18px;
    background: var(--primary);
    color: #fff;
    border: 2px solid var(--primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    cursor: pointer;
    transition: background var(--transition);
}
.subscribe-form button:hover { background: var(--primary-light); border-color: var(--primary-light); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}
.footer-links-inline { display: flex; gap: 20px; }
.footer-links-inline a { color: rgba(255,255,255,0.5); font-size: 0.8rem; }
.footer-links-inline a:hover { color: var(--secondary); }

/* --- Scroll to Top --- */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
    z-index: 999;
    box-shadow: 0 4px 15px rgba(26,92,58,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--primary-light); transform: translateY(-3px); }

/* --- Mesaj Bildirimleri --- */
.alert {
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 0.9rem;
}
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.alert-info { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }

/* --- Animasyonlar --- */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; }
    .post-detail-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 768px) {
    :root { --header-height: 64px; }
    
    .header-top { display: none; }
    .hero-section, .hero-static { margin-top: var(--header-height); }
    .page-header { margin-top: var(--header-height); padding: 60px 0 40px; }
    
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 30px 40px;
        box-shadow: -10px 0 40px rgba(0,0,0,0.15);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 100;
        overflow-y: auto;
    }
    .nav-menu.active { right: 0; }
    .nav-item a { padding: 14px 0; font-size: 1rem; border-radius: 0; border-bottom: 1px solid var(--border); }
    .nav-item a::after { display: none; }
    
    .hero-slide-content { padding: 0 5%; min-height: 70vh; }
    .hero-section, .hero-slider, .hero-slide { min-height: 70vh; }
    .hero-static { min-height: 60vh; }
    
    .card-grid { grid-template-columns: 1fr; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .about-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; gap: 10px; text-align: center; }
    .section { padding: 50px 0; }
    .section-header { margin-bottom: 30px; }
    .post-content { padding: 24px; }
    .contact-form { padding: 24px; }
    
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .team-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 480px) {
    .categories-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .category-card { padding: 20px 12px; }
    .about-stats { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .hero-slide-content h1 { font-size: 1.8rem; }
}

/* --- WhatsApp Topluluk --- */
.community-section {
    background: var(--bg-soft);
}
.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.community-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    border-top: 4px solid var(--accent-clr, var(--primary));
}
.community-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-clr, var(--primary)), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}
.community-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.community-card:hover::before {
    opacity: 0.04;
}
.community-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--accent-clr, var(--primary)), color-mix(in srgb, var(--accent-clr, var(--primary)), white 25%));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}
.community-card h3 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}
.community-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* WhatsApp buton */
.btn-whatsapp {
    background: #25D366;
    color: #fff;
}
.btn-whatsapp:hover {
    background: #128C7E;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(37,211,102,0.3);
}

/* Bi'Ara Büyüyor Section */
.growing-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #1a6b42 100%);
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.growing-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='40' cy='40' r='6'/%3E%3C/g%3E%3C/svg%3E");
}
.growing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 1;
}
.growing-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
}
.growing-card:hover {
    background: rgba(255,255,255,0.14);
    transform: translateY(-4px);
}
.growing-card i {
    font-size: 2.2rem;
    color: var(--secondary);
    margin-bottom: 16px;
    display: block;
}
.growing-card h3 {
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.growing-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    line-height: 1.6;
}
.growing-card .badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--dark);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 12px;
}

@media (max-width: 768px) {
    .community-grid { grid-template-columns: 1fr; }
    .growing-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .growing-grid { grid-template-columns: 1fr; }
}

/* --- Print --- */
@media print {
    .site-header, .site-footer, .scroll-top, .nav-toggle { display: none !important; }
    .post-content { box-shadow: none; padding: 0; }
    body { font-size: 12pt; }
}
