/* ============================================================
   KARACABEY BEŞİKTAŞLILAR DERNEĞİ - ANA STİL DOSYASI
   Renkler: Siyah (#000), Beyaz (#fff), Kırmızı (#E30A17)
   ============================================================ */

/* --- FONTLAR --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700&display=swap');

/* --- RESET & BASE --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1a1a2e;
    background: #fff;
    line-height: 1.7;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- BEŞİKTAŞ TEMASI --- */
:root {
    --bjk-black: #000000;
    --bjk-white: #ffffff;
    --bjk-red: #E30A17;
    --bjk-red-dark: #B91D2B;
    --bjk-gold: #B8860B;
    --bjk-grey: #4A4A4A;
    --bjk-light-grey: #F5F5F5;
    --bjk-border: #E0E0E0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--bjk-red);
    transition: var(--transition);
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}
.navbar .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--bjk-white);
}
.navbar .logo img {
    height: 45px;
    width: auto;
}
.navbar .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.navbar .logo-text .brand {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.navbar .logo-text .sub {
    font-size: 10px;
    color: var(--bjk-red);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 5px;
}
.nav-links a {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--bjk-white);
    background: rgba(227,10,23,0.15);
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--bjk-red);
    transform: scaleX(0);
    transition: var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}
.uye-girisi-btn {
    background: var(--bjk-red) !important;
    color: var(--bjk-white) !important;
    padding: 8px 20px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    margin-left: 10px;
}
.uye-girisi-btn::after { display: none !important; }
.uye-girisi-btn:hover {
    background: var(--bjk-red-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(227,10,23,0.4);
}

/* --- MOBILE MENU --- */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--bjk-white);
    margin: 5px 0;
    transition: var(--transition);
    border-radius: 2px;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- HERO SECTION --- */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #000 0%, #1a0000 50%, #000 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 70px;
}
.hero {
    min-height: 92vh;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.68) 46%, rgba(0,0,0,0.2) 100%),
        url('../images/optimized/galeri_01.jpg') center/cover no-repeat;
}
.hero-content {
    text-align: left;
    margin: 0;
    max-width: 760px;
}
.hero h1 {
    letter-spacing: 0;
}
.hero p {
    margin-left: 0;
    margin-right: 0;
    color: rgba(255,255,255,0.78);
}
.hero-actions {
    justify-content: flex-start;
}
.section {
    position: relative;
}
.section:not(.section-dark) {
    background: linear-gradient(180deg, #fff 0%, #f7f8fa 100%);
}
.section-header {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}
.about-image img,
.gallery-item img,
.news-card,
.event-card,
.contact-form,
.contact-item,
.stat-item {
    border-radius: 8px;
}
.about-image img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.stat-item {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
}
.contact-form,
.contact-item {
    border: 1px solid rgba(15,23,42,0.08);
    box-shadow: 0 18px 50px rgba(15,23,42,0.08);
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(227,10,23,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(227,10,23,0.05) 0%, transparent 50%);
    pointer-events: none;
}
.hero-pattern {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(rgba(227,10,23,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(227,10,23,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}
.hero-badge {
    display: inline-block;
    background: rgba(227,10,23,0.15);
    color: var(--bjk-red);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(227,10,23,0.3);
    margin-bottom: 30px;
}
.hero h1 {
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 900;
    color: var(--bjk-white);
    line-height: 1.1;
    margin-bottom: 20px;
}
.hero h1 .highlight {
    color: var(--bjk-red);
    position: relative;
}
.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--bjk-red);
    border-radius: 2px;
}
.hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}
.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
}
.btn-primary {
    background: var(--bjk-red);
    color: var(--bjk-white);
}
.btn-primary:hover {
    background: var(--bjk-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(227,10,23,0.4);
}
.btn-outline {
    background: transparent;
    color: var(--bjk-white);
    border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
    border-color: var(--bjk-white);
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}
.btn-dark {
    background: var(--bjk-black);
    color: var(--bjk-white);
    border: 2px solid rgba(255,255,255,0.1);
}
.btn-dark:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

/* --- SCROLL INDICATOR --- */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.3);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}
.scroll-indicator .mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    position: relative;
}
.scroll-indicator .mouse::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--bjk-red);
    border-radius: 2px;
    animation: scrollWheel 1.5s infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(-10px)} }
@keyframes scrollWheel { 0%{opacity:1;transform:translateX(-50%) translateY(0)} 100%{opacity:0;transform:translateX(-50%) translateY(12px)} }

/* --- SECTION COMMON STYLES --- */
.section {
    padding: 100px 0;
}
.section-dark {
    background: var(--bjk-black);
    color: var(--bjk-white);
}
.section-grey {
    background: var(--bjk-light-grey);
}
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}
.section-tag {
    display: inline-block;
    color: var(--bjk-red);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}
.section-dark .section-title { color: var(--bjk-white); }
.section-subtitle {
    color: var(--bjk-grey);
    font-size: 16px;
    line-height: 1.7;
}
.section-dark .section-subtitle { color: rgba(255,255,255,0.6); }

/* --- HAKKIMIZDA (ABOUT) --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-image img {
    width: 100%;
    min-height: 400px;
    object-fit: cover;
}
.about-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
}
.about-image .experience-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    background: var(--bjk-red);
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
}
.about-text h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}
.about-text p {
    color: var(--bjk-grey);
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.8;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 30px;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}
.about-feature .icon {
    width: 32px;
    height: 32px;
    background: rgba(227,10,23,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* --- YÖNETİM KURULU (BOARD) --- */
.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.board-card {
    background: var(--bjk-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}
.board-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.board-card .avatar {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: var(--bjk-light-grey);
}
.board-card .info {
    padding: 20px;
}
.board-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}
.board-card .title {
    color: var(--bjk-red);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* --- HABER/DUYURULAR (NEWS) --- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}
.news-card {
    background: var(--bjk-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--bjk-border);
}
.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.news-card .img-wrap {
    height: 200px;
    overflow: hidden;
}
.news-card .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.news-card:hover .img-wrap img { transform: scale(1.05); }
.news-card .body {
    padding: 24px;
}
.news-card .date {
    font-size: 12px;
    color: var(--bjk-grey);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.news-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
}
.news-card p {
    font-size: 14px;
    color: var(--bjk-grey);
    line-height: 1.6;
    margin-bottom: 16px;
}
.news-card .read-more {
    color: var(--bjk-red);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.news-card .read-more:hover { gap: 10px; }

/* --- ETKİNLİKLER (EVENTS) --- */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}
.event-card {
    display: flex;
    gap: 24px;
    background: var(--bjk-white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--bjk-red);
    transition: var(--transition);
}
.event-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}
.event-card .date-box {
    min-width: 80px;
    text-align: center;
    padding: 12px;
    background: var(--bjk-light-grey);
    border-radius: 12px;
}
.event-card .date-box .day {
    font-size: 28px;
    font-weight: 800;
    color: var(--bjk-red);
    line-height: 1;
}
.event-card .date-box .month {
    font-size: 12px;
    font-weight: 600;
    color: var(--bjk-grey);
    text-transform: uppercase;
    margin-top: 4px;
}
.event-card .info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}
.event-card .info .meta {
    font-size: 13px;
    color: var(--bjk-grey);
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.event-card .info .meta span { display: flex; align-items: center; gap: 4px; }

/* --- GALERİ (GALLERY) --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}
.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay span {
    color: white;
    font-size: 24px;
}

/* --- LIGHTBOX --- */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.95);
    align-items: center;
    justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
}
.lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    transition: var(--transition);
}
.lightbox .close:hover { color: var(--bjk-red); }
.lightbox .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 40px;
    cursor: pointer;
    padding: 20px;
    transition: var(--transition);
    background: none;
    border: none;
}
.lightbox .nav-btn:hover { color: var(--bjk-red); }
.lightbox .prev { left: 20px; }
.lightbox .next { right: 20px; }

/* --- ÜYELİK (MEMBERSHIP) --- */
.membership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.membership-form {
    background: var(--bjk-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--bjk-border);
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--bjk-black);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--bjk-border);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bjk-white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--bjk-red);
    box-shadow: 0 0 0 3px rgba(227,10,23,0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
    width: 100%;
    padding: 14px;
    background: var(--bjk-red);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}
.form-submit:hover {
    background: var(--bjk-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(227,10,23,0.3);
}

.membership-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}
.membership-info p {
    color: var(--bjk-grey);
    margin-bottom: 20px;
    line-height: 1.8;
}
.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    padding: 16px;
    background: var(--bjk-light-grey);
    border-radius: 12px;
}
.benefits-list li .check {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: var(--bjk-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

/* --- İLETİŞİM (CONTACT) --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact-item .icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(227,10,23,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.contact-item h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.contact-item p { color: var(--bjk-grey); font-size: 14px; line-height: 1.6; }
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}
.social-links a {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--bjk-black);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}
.social-links a:hover {
    background: var(--bjk-red);
    transform: translateY(-3px);
}

/* --- COUNTDOWN / STATS --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.stat-item {
    text-align: center;
    padding: 40px 20px;
}
.stat-item .number {
    font-size: 48px;
    font-weight: 900;
    color: var(--bjk-red);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-item .label {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- FOOTER --- */
.footer {
    background: #0a0a0a;
    color: var(--bjk-white);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img {
    height: 50px;
    margin-bottom: 16px;
}
.footer-brand p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}
.footer h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--bjk-white);
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--bjk-red);
    padding-left: 4px;
}
.footer-contact li {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}
.footer-bottom {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,0.3);
}

/* --- PAGE HEADER (inner pages) --- */
.page-header {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #000 0%, #1a0000 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    color: var(--bjk-white);
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}
.page-header p {
    color: rgba(255,255,255,0.6);
    font-size: 16px;
    position: relative;
    z-index: 2;
}
.page-header .breadcrumb {
    color: rgba(255,255,255,0.4);
    font-size: 13px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}
.page-header .breadcrumb a { color: var(--bjk-red); }

/* --- WHATSAPP FLOATING BUTTON --- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition);
    cursor: pointer;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .about-grid,
    .membership-grid,
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(0,0,0,0.98);
        flex-direction: column;
        padding: 100px 30px 30px;
        gap: 5px;
        transition: var(--transition);
        backdrop-filter: blur(20px);
    }
    .nav-links.active { right: 0; }
    .nav-links a { width: 100%; padding: 12px 20px; }
    .uye-girisi-btn { margin-left: 0; text-align: center; }
    .hero h1 { font-size: 36px; }
    .hero p { font-size: 16px; }
    .section { padding: 60px 0; }
    .news-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .stat-item .number { font-size: 36px; }
    .event-card { flex-direction: column; }
    .event-card .date-box { display: flex; gap: 8px; align-items: center; min-width: auto; }
    .board-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .board-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
}

/* --- SCROLL ANIMATIONS (AOS-like) --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- OTHER --- */
.placeholder-bg {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.3);
    font-size: 48px;
}

/* --- MODERN REFRESH OVERRIDES --- */
.hero {
    min-height: 92vh;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.66) 48%, rgba(0,0,0,0.22) 100%),
        url('../images/optimized/galeri_01.jpg') center/cover no-repeat;
}
.hero-content {
    text-align: left;
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
}
.hero h1 { letter-spacing: 0; }
.hero p {
    margin-left: 0;
    margin-right: 0;
    color: rgba(255,255,255,0.78);
}
.hero-actions { justify-content: flex-start; }
.section:not(.section-dark) { background: linear-gradient(180deg, #fff 0%, #f7f8fa 100%); }
.about-image img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.about-image img,
.gallery-item img,
.news-card,
.event-card,
.contact-form,
.contact-item,
.stat-item { border-radius: 8px; }
.stat-item {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
}
.contact-form,
.contact-item {
    border: 1px solid rgba(15,23,42,0.08);
    box-shadow: 0 18px 50px rgba(15,23,42,0.08);
}
@media (max-width: 768px) {
    .hero {
        min-height: 86vh;
        background:
            linear-gradient(180deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.72) 100%),
            url('../images/optimized/galeri_01.jpg') center/cover no-repeat;
    }
    .hero-content { text-align: center; }
    .hero p { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
}
