/* ========================================
   Eleşkirt YEG - Main Stylesheet
   ======================================== */

/* CSS Variables */
:root {
    /* Colors - Green & White Theme */
    --primary-green: #2D5A3D;
    --primary-green-light: #3D7A52;
    --primary-green-dark: #1E3D29;
    --accent-green: #4A9B5F;
    --light-green: #E8F5E9;
    --pale-green: #F1F8F2;
    
    --white: #FFFFFF;
    --off-white: #FAFBFA;
    --cream: #F5F7F5;
    
    --text-dark: #1A2E1F;
    --text-medium: #3D5243;
    --text-light: #6B7D70;
    --text-muted: #8A9A8F;
    
    --border-color: #D4DDD6;
    --border-light: #E8EDE9;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(45, 90, 61, 0.08);
    --shadow-md: 0 4px 12px rgba(45, 90, 61, 0.1);
    --shadow-lg: 0 8px 30px rgba(45, 90, 61, 0.12);
    --shadow-xl: 0 20px 50px rgba(45, 90, 61, 0.15);
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-padding: 20px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ========================================
   Top Bar
   ======================================== */
.top-bar {
    background: var(--primary-green-dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.contact-info {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info a:hover {
    color: var(--white);
}

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

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

.social-links a:hover {
    background: var(--accent-green);
    transform: translateY(-2px);
}

/* ========================================
   Header
   ======================================== */
.header {
    background: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 75px;
    height: 75px;
    object-fit: contain;
    border-radius: 50%;
    border: 3px solid var(--light-green);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1.1;
}

.logo-subtitle {
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
}

/* Mobile menu header - masaüstünde gizli */
.mobile-menu-header {
    display: none;
}

.nav-list {
    display: flex;
    gap: 5px;
}

.nav-list > li {
    position: relative;
}

.nav-list > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-medium);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.nav-list > li > a:hover,
.nav-list > li > a.active {
    color: var(--primary-green);
    background: var(--light-green);
}

.nav-list > li > a i {
    font-size: 10px;
    transition: var(--transition-fast);
}

/* Dropdown */
.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.has-dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-base);
}

.dropdown li a {
    display: block;
    padding: 10px 15px;
    font-size: 14px;
    color: var(--text-medium);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.dropdown li a:hover {
    background: var(--light-green);
    color: var(--primary-green);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--primary-green);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(30, 61, 41, 0.7) 0%,
        rgba(30, 61, 41, 0.5) 50%,
        rgba(30, 61, 41, 0.8) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 700px;
    padding: 60px 0;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 550px;
}

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

/* Hero Navigation */
.hero-nav {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 15;
}

.hero-nav-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-nav-btn:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
}

.hero-dots {
    display: flex;
    gap: 10px;
}

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

.hero-dots .dot.active {
    background: var(--white);
    transform: scale(1.2);
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: var(--transition-base);
    border: 2px solid transparent;
}

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

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

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

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

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

.btn-outline-dark:hover {
    background: var(--primary-green);
    color: var(--white);
}

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

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-green);
}

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

.btn-white:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
}

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

.section-header.light {
    color: var(--white);
}

.section-header.light .section-tag {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.section-header.light .section-title {
    color: var(--white);
}

.section-header.light .section-desc {
    color: rgba(255, 255, 255, 0.8);
}

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: var(--light-green);
    color: var(--primary-green);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-xl);
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

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

.section-footer {
    text-align: center;
    margin-top: 50px;
}

/* ========================================
   Stats Section
   ======================================== */
.stats-section {
    background: var(--primary-green);
    padding: 50px 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

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

.stat-card {
    text-align: center;
    color: var(--white);
    padding: 20px;
}

.stat-card i {
    font-size: 36px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   About Preview
   ======================================== */
.about-preview {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: -25px;
    right: 30px;
    background: var(--primary-green);
    color: var(--white);
    padding: 20px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.badge-year {
    display: block;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.about-content {
    padding-right: 20px;
}

.about-content .section-tag {
    margin-bottom: 20px;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 25px;
}

.about-text {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    margin: 30px 0;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-medium);
    font-weight: 500;
}

.about-features li i {
    color: var(--accent-green);
    font-size: 18px;
}

/* ========================================
   News Section
   ======================================== */
.news-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

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

.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 1px solid var(--border-light);
}

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

.news-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.news-card-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-green);
    color: var(--white);
    padding: 8px 15px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
}

.news-card-content {
    padding: 25px;
}

.news-card-category {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.news-card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.news-card-excerpt {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.news-card-link:hover {
    gap: 12px;
}

/* ========================================
   Services Section
   ======================================== */
.services-section {
    padding: var(--section-padding) 0;
    background: var(--pale-green);
}

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

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 1px solid var(--border-light);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition-base);
}

.service-icon i {
    font-size: 32px;
    color: var(--primary-green);
    transition: var(--transition-base);
}

.service-card:hover .service-icon {
    background: var(--primary-green);
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ========================================
   Events Section
   ======================================== */
.events-section {
    padding: var(--section-padding) 0;
    background: var(--primary-green-dark);
}

.events-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 50px;
    box-shadow: var(--shadow-xl);
}

.events-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.events-header .section-tag {
    margin-bottom: 10px;
}

.events-header .section-title {
    margin-bottom: 0;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 25px;
    padding: 25px;
    background: var(--off-white);
    border-radius: var(--radius-md);
    align-items: center;
    transition: var(--transition-base);
    border: 1px solid transparent;
}

.event-item:hover {
    border-color: var(--primary-green);
    box-shadow: var(--shadow-md);
}

.event-date {
    background: var(--primary-green);
    color: var(--white);
    padding: 15px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    min-width: 90px;
}

.event-day {
    display: block;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.event-month {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.event-info h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.event-info p {
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 15px;
}

.event-info p i {
    color: var(--accent-green);
}

.event-action .btn {
    padding: 10px 20px;
    font-size: 14px;
}

/* ========================================
   Announcements Section
   ======================================== */
.announcements-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.announcements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.announcement-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--off-white);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-green);
    transition: var(--transition-base);
}

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

.announcement-icon {
    width: 50px;
    height: 50px;
    background: var(--light-green);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.announcement-icon i {
    font-size: 20px;
    color: var(--primary-green);
}

.announcement-content h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.announcement-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 10px;
}

.announcement-date {
    font-size: 12px;
    color: var(--text-muted);
}

/* ========================================
   Projects Preview
   ======================================== */
.projects-preview {
    padding: var(--section-padding) 0;
    background: var(--primary-green);
}

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

.project-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-base);
}

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

.project-image {
    height: 200px;
    overflow: hidden;
}

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

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

.project-content {
    padding: 25px;
}

.project-status {
    display: inline-block;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-xl);
    margin-bottom: 12px;
}

.project-status.active {
    background: var(--light-green);
    color: var(--primary-green);
}

.project-status.completed {
    background: #E3F2FD;
    color: #1976D2;
}

.project-status.planned {
    background: #FFF3E0;
    color: #E65100;
}

.project-content h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.project-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   Board Preview
   ======================================== */
.board-preview {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

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

.board-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

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

.board-image {
    height: 220px;
    overflow: hidden;
}

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

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

.board-info {
    padding: 25px 20px;
}

.board-info h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.board-info span {
    font-size: 14px;
    color: var(--accent-green);
    font-weight: 500;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
}

.cta-content {
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--primary-green-dark);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--white);
    padding: 5px;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

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

.footer-social a:hover {
    background: var(--accent-green);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background: var(--accent-green);
}

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

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

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: var(--accent-green);
    margin-top: 3px;
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   Back to Top
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-base);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-green-dark);
    transform: translateY(-5px);
}

/* ========================================
   Page Header (for subpages)
   ======================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: var(--white);
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=1920&q=80') center/cover;
    opacity: 0.15;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
}

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

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

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

/* ========================================
   Content Sections (for subpages)
   ======================================== */
.content-section {
    padding: var(--section-padding) 0;
}

.content-section.alt {
    background: var(--off-white);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1200px) {
    .nav-list > li > a {
        padding: 10px 12px;
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        gap: 40px;
    }
    
    .news-grid,
    .services-grid,
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .board-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .mobile-menu-btn {
        display: flex;
        width: 44px;
        height: 44px;
        background: var(--light-green);
        border-radius: var(--radius-sm);
        position: relative;
        z-index: 1002;
    }
    
    .mobile-menu-btn span {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 22px;
        height: 2px;
        background: var(--primary-green);
        border-radius: 2px;
        transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }
    
    .mobile-menu-btn span:nth-child(1) {
        top: 14px;
    }
    
    .mobile-menu-btn span:nth-child(2) {
        top: 21px;
    }
    
    .mobile-menu-btn span:nth-child(3) {
        top: 28px;
    }
    
    .mobile-menu-btn.active {
        background: var(--primary-green);
    }
    
    .mobile-menu-btn.active span {
        background: var(--white);
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        top: 21px;
        transform: translateX(-50%) rotate(45deg);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-50%) scaleX(0);
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        top: 21px;
        transform: translateX(-50%) rotate(-45deg);
    }
    
    /* Mobile Menu Overlay - sadece menü dışına tıklamayı algılar */
    .mobile-menu-overlay {
        position: fixed;
        inset: 0;
        background: transparent;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        pointer-events: none;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        max-width: 85vw;
        height: 100vh;
        height: 100dvh;
        background: var(--white);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
        padding: 0;
        transition: right 0.35s ease;
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 1001;
        display: flex;
        flex-direction: column;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    /* Mobile Menu Header */
    .mobile-menu-header {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 20px;
        background: var(--primary-green);
        flex-shrink: 0;
    }
    
    .mobile-menu-header img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: var(--white);
        padding: 3px;
    }
    
    .mobile-menu-header-text {
        color: var(--white);
    }
    
    .mobile-menu-header-text .title {
        font-family: var(--font-heading);
        font-size: 16px;
        font-weight: 700;
        line-height: 1.2;
    }
    
    .mobile-menu-header-text .subtitle {
        font-size: 11px;
        opacity: 0.9;
    }
    
    /* Hide pseudo-element header since we have real one now */
    .nav-menu::before {
        display: none;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 20px;
        flex: 1;
    }
    
    .nav-list > li {
        border-radius: var(--radius-md);
        overflow: hidden;
        margin-bottom: 4px;
    }
    
    .nav-list > li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 18px;
        font-size: 15px;
        font-weight: 600;
        color: var(--text-dark);
        background: var(--white);
        border-radius: var(--radius-md);
        border: none;
        transition: all 0.2s ease;
    }
    
    .nav-list > li > a:hover,
    .nav-list > li > a.active {
        background: var(--primary-green);
        color: var(--white);
        transform: translateX(4px);
    }
    
    .nav-list > li > a i {
        font-size: 12px;
        transition: transform 0.3s ease;
    }
    
    .has-dropdown.open > a i {
        transform: rotate(180deg);
    }
    
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        margin: 0;
        background: transparent;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .has-dropdown.open .dropdown {
        display: block;
        max-height: 500px;
        padding: 8px 0 8px 12px;
    }
    
    .dropdown li {
        margin-bottom: 4px;
    }
    
    .dropdown li a {
        display: block;
        padding: 12px 16px;
        font-size: 14px;
        color: var(--text-medium);
        background: var(--pale-green);
        border-radius: var(--radius-sm);
        border-left: 3px solid var(--accent-green);
        transition: all 0.2s ease;
    }
    
    .dropdown li a:hover {
        background: var(--light-green);
        color: var(--primary-green);
        padding-left: 20px;
    }
    
    /* Mobile Menu Footer - removed, using header only */
    .nav-menu::after {
        display: none;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image img {
        height: 350px;
    }
    
    .events-wrapper {
        padding: 30px;
    }
    
    .event-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .event-date {
        margin: 0 auto;
    }
    
    .event-info p {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .event-action {
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .top-bar-content {
        justify-content: center;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .hero {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-content {
        text-align: center;
        align-items: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .news-grid,
    .services-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .announcements-grid {
        grid-template-columns: 1fr;
    }
    
    .board-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-logo {
        display: flex;
        justify-content: center;
    }
    
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .events-header {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo-text {
        display: flex;
    }
    
    .logo-title {
        font-size: 16px;
    }
    
    .logo-subtitle {
        font-size: 9px;
    }
    
    .hero {
        height: 60vh;
        min-height: 450px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .about-badge {
        right: 15px;
        bottom: -20px;
        padding: 15px 20px;
    }
    
    .badge-year {
        font-size: 28px;
    }
    
    .board-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 15px 10px;
    }
    
    .stat-number {
        font-size: 30px;
    }
    
    .stat-label {
        font-size: 12px;
    }
}

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

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

/* Scroll animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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