/*
Theme Name: Bader Bingöl Derneği
Theme URI: https://baderbingol.com
Author: Bader Derneği
Author URI: https://baderbingol.com
Description: Bader Bingöl Derneği için özel tasarlanmış, responsive ve Elementor uyumlu WordPress teması.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bader-theme
Tags: custom-logo, custom-menu, featured-images, theme-options, translation-ready

Bader Bingöl Derneği - Birlik ve Beraberlik
*/

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    /* Colors */
    --primary: #C8A97E;
    --primary-dark: #8B7355;
    --primary-light: #E8D5B5;
    --secondary: #1a1a1a;
    --secondary-light: #2d2d2d;
    --text: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a1a;
    --white: #ffffff;
    --border: #e0e0e0;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    
    /* Typography */
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Sizes */
    --container-width: 1200px;
    --header-height: 80px;
    --topbar-height: 40px;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-gold: 0 10px 30px rgba(200, 169, 126, 0.3);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 50px;
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--secondary);
    margin-bottom: 0.5em;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--primary-dark);
}

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

ul, ol {
    list-style: none;
}

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

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

.section {
    padding: 100px 0;
}

.section-dark {
    background-color: var(--bg-dark);
    color: var(--white);
}

.section-light {
    background-color: var(--bg-light);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--primary); }
.text-white { color: var(--white); }
.text-muted { color: var(--text-muted); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(200, 169, 126, 0.1);
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: var(--secondary-light);
    border-color: var(--secondary-light);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--secondary);
    border-color: var(--white);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--secondary);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 16px;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 14px;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--secondary);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

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

.top-bar-left {
    display: flex;
    gap: 25px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.8);
}

.top-bar-item i {
    color: var(--primary);
}

.top-bar-item a {
    color: rgba(255,255,255,0.8);
}

.top-bar-item a:hover {
    color: var(--primary);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 50%;
    font-size: 14px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--secondary);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.site-logo img {
    max-height: 60px;
    width: auto;
}

.site-logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
}

.site-logo-text span {
    color: var(--primary);
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav > li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    display: block;
    padding: 10px 18px;
    color: var(--secondary);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active,
.main-nav .current-menu-item > a {
    color: var(--primary);
    background: rgba(200, 169, 126, 0.1);
}

.nav-item-has-children,
.menu-item-has-children {
    position: relative;
}

.nav-item-has-children > a::after,
.menu-item-has-children > a::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 5px;
    font-size: 12px;
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    list-style: none;
    margin: 0;
}

.sub-menu li {
    list-style: none;
}

.nav-item-has-children:hover > .sub-menu,
.menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu a {
    padding: 10px 20px;
    border-radius: 0;
}

.header-cta {
    margin-left: 20px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--secondary);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

/* Mobile Menu Active State */
.mobile-menu-toggle.active .hamburger {
    background: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 999;
    padding: 100px 20px 40px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: var(--transition);
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-menu .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 20px;
    background: transparent;
}

.mobile-nav-menu a {
    display: block;
    padding: 15px 20px;
    color: var(--secondary);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.mobile-nav-menu a:hover {
    background: rgba(200, 169, 126, 0.1);
    color: var(--primary);
}

.mobile-nav-cta {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.mobile-nav-cta .btn {
    width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(200, 169, 126, 0.2);
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   CARDS
   ============================================ */
.card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-image {
    position: relative;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.card:hover .card-image img {
    transform: scale(1.1);
}

.card-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--secondary);
    padding: 10px 15px;
    border-radius: var(--radius-sm);
    text-align: center;
    font-weight: 700;
}

.card-date .day {
    display: block;
    font-size: 24px;
    line-height: 1;
}

.card-date .month {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
}

.card-body {
    padding: 25px;
}

.card-category {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(200, 169, 126, 0.1);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.card-title a {
    color: var(--secondary);
}

.card-title a:hover {
    color: var(--primary);
}

.card-excerpt {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 15px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

.card-link i {
    transition: var(--transition);
}

.card-link:hover i {
    transform: translateX(5px);
}

/* Team Card */
.team-card {
    text-align: center;
}

.team-card .card-image img {
    height: 280px;
}

.team-card .card-body {
    padding: 20px;
}

.team-name {
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.team-title {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 169, 126, 0.1);
    color: var(--primary);
    border-radius: 50%;
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--primary);
    color: var(--white);
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    background: linear-gradient(135deg, var(--secondary) 0%, #2d2d2d 100%);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px;
}

.stat-icon {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 15px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
}

/* ============================================
   GRID LAYOUTS
   ============================================ */
.grid {
    display: grid;
    gap: 30px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.cta-section .hero-overlay {
    background: linear-gradient(135deg, rgba(200, 169, 126, 0.9) 0%, rgba(139, 115, 85, 0.9) 100%);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-description {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--secondary);
    color: rgba(255,255,255,0.7);
}

.footer-main {
    padding: 80px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-about .site-logo-text {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-about p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-title {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    transition: var(--transition);
}

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

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 15px;
}

.footer-contact i {
    color: var(--primary);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 50%;
    font-size: 16px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--secondary);
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

.copyright {
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--white);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--secondary) 0%, #2d2d2d 100%);
    padding: 80px 0;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    color: rgba(255,255,255,0.6);
    font-size: 15px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.6);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb span:last-child {
    color: var(--primary);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* Laptop */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }
    
    .section {
        padding: 70px 0;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .hero-section {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    /* Hide desktop nav, show mobile toggle */
    .main-nav,
    .header-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Landscape */
@media (max-width: 767px) {
    .container {
        max-width: 540px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-section {
        min-height: 450px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .top-bar {
        display: none;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Mobile Portrait */
@media (max-width: 575px) {
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    
    .hero-section {
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-in {
    animation: fadeIn 0.4s ease forwards;
}

/* Scroll Animations */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animated,
[data-animate].animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   HERO SLIDER (tankoyu style)
   ============================================ */
.hero-slider {
    position: relative;
    display: flex;
    min-height: 500px;
}

.slider-container {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.slider-track {
    position: relative;
    width: 100%;
    height: 500px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
}

.slide-content {
    position: absolute;
    bottom: 60px;
    left: 40px;
    color: var(--white);
    z-index: 2;
}

.slide-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--secondary);
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.slide-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.slide-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 500px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border: none;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.slider-btn:hover {
    background: var(--primary);
    color: var(--secondary);
}

.slider-btn.prev { left: 20px; }
.slider-btn.next { right: 20px; }

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--primary);
}

/* Quick Links Sidebar */
.quick-links-sidebar {
    width: 280px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-md);
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.quick-link i:first-child {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.quick-link span {
    flex: 1;
}

.quick-link .arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

.quick-link:hover .arrow {
    opacity: 1;
    transform: translateX(0);
}

.quick-link:hover {
    padding-left: 25px;
}

.quick-link.primary { background: var(--primary); color: var(--secondary); }
.quick-link.orange { background: #e67e22; }
.quick-link.gold { background: #C8A97E; color: var(--secondary); }
.quick-link.purple { background: #9b59b6; }
.quick-link.green { background: #27ae60; }
.quick-link.teal { background: #16a085; }
.quick-link.dark { background: var(--secondary); }

/* ============================================
   TABS COMPONENT
   ============================================ */
.tabs-container {
    margin-top: 30px;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--border);
    padding-bottom: 20px;
}

.tab-btn {
    padding: 12px 30px;
    background: transparent;
    border: 2px solid var(--border);
    color: var(--text);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--secondary);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

/* Activity Cards */
.activity-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.activity-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.activity-card:hover .activity-image img {
    transform: scale(1.1);
}

.activity-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(200, 169, 126, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.activity-card:hover .activity-overlay {
    opacity: 1;
}

.activity-link {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
    transform: scale(0);
    transition: var(--transition);
}

.activity-card:hover .activity-link {
    transform: scale(1);
}

.activity-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--secondary);
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.activity-info {
    padding: 20px;
}

.activity-date {
    display: block;
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.activity-info h4 {
    font-size: 16px;
    margin: 0;
}

.activity-info h4 a {
    color: var(--secondary);
}

.activity-info h4 a:hover {
    color: var(--primary);
}

/* ============================================
   TWO COLUMN LAYOUT
   ============================================ */
.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.column-box {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.box-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: var(--secondary);
    color: var(--white);
}

.box-header h3 {
    font-size: 16px;
    margin: 0;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.box-header h3 i {
    color: var(--primary);
}

.view-all {
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
}

.view-all:hover {
    color: var(--white);
}

/* News List */
.news-list {
    padding: 10px 0;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    transition: var(--transition);
}

.news-item:hover {
    background: var(--bg-light);
    padding-left: 30px;
}

.news-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
    padding: 8px;
    background: var(--primary);
    color: var(--secondary);
    border-radius: var(--radius-sm);
    font-weight: 700;
}

.news-date .day {
    font-size: 18px;
    line-height: 1;
}

.news-date .month {
    font-size: 11px;
    text-transform: uppercase;
}

.news-title {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
}

.news-item i {
    color: var(--primary);
    opacity: 0;
    transition: var(--transition);
}

.news-item:hover i {
    opacity: 1;
}

/* Events List */
.events-list {
    padding: 20px;
}

.event-item {
    display: flex;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
}

.event-item:last-child {
    border-bottom: none;
}

.event-date-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--secondary);
    border-radius: var(--radius-sm);
    text-align: center;
}

.event-date-box .day {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.event-date-box .month {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.event-info h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.event-info p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-info p i {
    color: var(--primary);
    width: 16px;
}

/* ============================================
   TEAM GRID
   ============================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    text-align: center;
}

.team-photo {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-placeholder i {
    font-size: 60px;
    color: var(--white);
}

.team-info h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 5px;
}

.team-role {
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
}

/* ============================================
   CTA SECTION MODERN
   ============================================ */
.cta-section-modern {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, #2d2d2d 100%);
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cta-box {
    text-align: center;
    padding: 50px 30px;
    border-radius: var(--radius-md);
    color: var(--white);
    transition: var(--transition);
}

.cta-box:hover {
    transform: translateY(-10px);
}

.cta-box i {
    font-size: 50px;
    margin-bottom: 20px;
}

.cta-box h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-box p {
    opacity: 0.8;
    margin-bottom: 25px;
}

.cta-box.donate {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.cta-box.membership {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.cta-box.membership h3,
.cta-box.membership {
    color: var(--secondary);
}

.cta-box.volunteer {
    background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
}

.btn-light {
    background: var(--white);
    color: var(--secondary);
    border-color: var(--white);
}

.btn-light:hover {
    background: transparent;
    color: var(--white);
}

/* Title Underline */
.title-underline {
    width: 80px;
    height: 3px;
    background: var(--primary);
    margin: 0 auto;
}

.title-underline.light {
    background: var(--primary);
}

/* Stats Section Parallax */
.stats-section.parallax {
    position: relative;
    background-attachment: fixed;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.85);
}

.stats-section .container {
    position: relative;
    z-index: 2;
}

/* ============================================
   RESPONSIVE - NEW COMPONENTS
   ============================================ */
@media (max-width: 1199px) {
    .quick-links-sidebar {
        width: 250px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .hero-slider {
        flex-direction: column;
    }
    
    .quick-links-sidebar {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .quick-link {
        flex: 1 1 50%;
    }
    
    .slider-track {
        height: 400px;
    }
    
    .two-column-layout {
        grid-template-columns: 1fr;
    }
    
    .cta-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .grid.grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .slider-track {
        height: 350px;
    }
    
    .slide-content h2 {
        font-size: 1.8rem;
    }
    
    .quick-link {
        flex: 1 1 100%;
        padding: 15px 20px;
    }
    
    .tabs-nav {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
    }
    
    .grid.grid-4 {
        grid-template-columns: 1fr;
    }
    
    .team-photo {
        width: 120px;
        height: 120px;
    }
}
