/* ====================================
   FETHİYE ÇİFTLİK SK - FRONTEND CSS
   v1.1 - Düzeltilmiş & Tamamlanmış
   ==================================== */

:root {
    --primary-color: #1e5f8e;
    --primary-dark: #164d73;
    --secondary-color: #16213e;
    --accent-color: #00a8cc;
    --light-color: #f5f6fa;
    --dark-color: #0f0f0f;
    --team-primary: #2ecc71;
    --team-secondary: #e74c3c;
    --border-radius: 15px;
    --box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    --box-shadow-hover: 0 15px 40px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

/* ====================================
   GENEL AYARLAR
   ==================================== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--light-color);
    overflow-x: hidden;
    color: #333;
}

img { max-width: 100%; }

a { transition: var(--transition); }

/* ====================================
   1. DUYURU ÇUBUĞU (Kırmızı)
   ==================================== */
.announcement-bar {
    background: linear-gradient(90deg, #dc3545, #c82333);
    color: white;
    padding: 0.55rem 0;
    font-size: 0.83rem;
}

.announcement-text {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.3rem;
}

/* ====================================
   2. İLETİŞİM ÇUBUĞU (Siyah)
   ==================================== */
.contact-bar {
    background: var(--dark-color);
    color: white;
    padding: 0.55rem 0;
    font-size: 0.83rem;
}

.contact-info a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    margin-right: 1.5rem;
    transition: var(--transition);
    white-space: nowrap;
}

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

/* Header'daki social links (footer ile çakışmaması için) */
.contact-bar .social-links {
    display: inline-flex;
    gap: 0;
    align-items: center;
}

.contact-bar .social-links a {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    margin-left: 1rem;
    transition: var(--transition);
    text-decoration: none;
}

.contact-bar .social-links a:hover { color: var(--accent-color); }

.language-selector .btn {
    padding: 0.18rem 0.55rem;
    font-size: 0.72rem;
    margin-left: 0.3rem;
    border-radius: 4px;
}

/* ====================================
   3. ANA NAVBAR (Beyaz)
   ==================================== */
.main-navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1030;
    transition: box-shadow 0.3s;
}

.main-navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.club-name {
    font-weight: 800;
    font-size: 1.3rem;
    line-height: 1.2;
    color: var(--primary-color);
}

.club-subtitle {
    font-size: 0.7rem;
    color: #777;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Yatay Menü */
.navbar-nav-horizontal {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.navbar-nav-horizontal .nav-item {
    display: inline-block;
    position: relative;
}

.navbar-nav-horizontal .nav-link {
    color: #333;
    font-weight: 600;
    font-size: 0.83rem;
    padding: 0.6rem 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    white-space: nowrap;
    display: block;
    border-radius: 8px;
}

.navbar-nav-horizontal .nav-link:hover,
.navbar-nav-horizontal .nav-link.active {
    color: var(--primary-color);
    background: var(--light-color);
}

.navbar-nav-horizontal .dropdown-toggle::after { display: none; }

/* Dropdown Menü */
.navbar-nav-horizontal .dropdown-menu {
    border: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-radius: 12px;
    padding: 0.5rem 0;
    margin-top: 0.3rem;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 240px;
    z-index: 1040;
    opacity: 0;
    transform: translateY(-5px);
    transition: opacity 0.2s, transform 0.2s;
}

.navbar-nav-horizontal .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-item {
    padding: 0.6rem 1.2rem;
    transition: var(--transition);
    font-size: 0.88rem;
    color: #333;
    text-decoration: none;
    display: block;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding-left: 1.6rem;
}

.dropdown-divider {
    margin: 0.25rem 0;
    border-color: rgba(0,0,0,0.08);
}

/* Navbar Butonlar */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-search {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--light-color);
    border: none;
    color: #333;
    transition: var(--transition);
    cursor: pointer;
    flex-shrink: 0;
}

.btn-search:hover { background: var(--primary-color); color: white; }

.btn-store {
    background: var(--light-color);
    color: #333;
    border: none;
    padding: 0.5rem 0.9rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.8rem;
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

.btn-store:hover { background: var(--primary-color); color: white; }

.btn-donate {
    background: #28a745;
    color: white;
    border: none;
    padding: 0.5rem 0.9rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.8rem;
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

.btn-donate:hover { background: #218838; }

.btn-tickets {
    background: #dc3545;
    color: white;
    border: none;
    padding: 0.5rem 0.9rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.8rem;
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

.btn-tickets:hover { background: #c82333; }

/* Mobil Toggler */
.navbar-toggler {
    border: none;
    background: var(--light-color);
    padding: 0.5rem 0.7rem;
    border-radius: 8px;
    cursor: pointer;
    display: none;
}

.navbar-toggler-icon {
    display: block;
    width: 22px;
    height: 2px;
    background: #333;
    position: relative;
    transition: var(--transition);
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background: #333;
    transition: var(--transition);
}

.navbar-toggler-icon::before { top: -7px; }
.navbar-toggler-icon::after { top: 7px; }

/* Mobil Menü */
.mobile-menu {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid rgba(0,0,0,0.08);
    margin-top: 0.75rem;
}

.mobile-menu.active { display: block; }

.mobile-menu .nav-link {
    color: #333;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.65rem 1rem;
    display: block;
    border-radius: 8px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-menu .nav-link:hover,
.mobile-menu .nav-link.active {
    color: var(--primary-color);
    background: var(--light-color);
}

.mobile-menu .mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.mobile-menu .mobile-dropdown-toggle i.chevron {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.mobile-menu .mobile-dropdown-toggle.open i.chevron {
    transform: rotate(180deg);
}

.mobile-submenu {
    display: none;
    padding-left: 1rem;
    margin-top: 0.3rem;
}

.mobile-submenu.open { display: block; }

.mobile-submenu a {
    color: #555;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    display: block;
    border-radius: 6px;
    text-decoration: none;
}

.mobile-submenu a:hover { color: var(--primary-color); background: var(--light-color); }

/* ====================================
   PAGE HERO (Sayfa başlığı şeridi)
   ==================================== */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 3.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.04) 1px, transparent 1px),
                      radial-gradient(circle at 80% 30%, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.page-hero h1 { font-weight: 800; margin-bottom: 0.5rem; }
.page-hero p { opacity: 0.85; margin: 0; }

/* Breadcrumb */
.breadcrumb-wrap {
    background: white;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.breadcrumb { margin: 0; background: transparent; padding: 0; }
.breadcrumb-item a { color: var(--primary-color); text-decoration: none; }
.breadcrumb-item a:hover { text-decoration: underline; }
.breadcrumb-item.active { color: #888; }
.breadcrumb-item+.breadcrumb-item::before { color: #bbb; }

/* ====================================
   HERO SECTION (Ana sayfa)
   ==================================== */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 10% 80%, rgba(255,255,255,0.04) 1px, transparent 1px),
                      radial-gradient(circle at 90% 20%, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.hero-logo {
    max-width: 250px;
    filter: drop-shadow(0 10px 25px rgba(0,0,0,0.3));
    animation: floatLogo 4s ease-in-out infinite;
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ====================================
   SECTION TITLE
   ==================================== */
.section-title {
    position: relative;
    margin-bottom: 3rem;
    font-weight: 800;
    color: #1a1a1a;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

/* ====================================
   MATCH CARDS
   ==================================== */
.match-card {
    border: none;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    background: white;
    padding: 1.25rem;
}

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

/* FIX: match-status padding eksikti */
.match-status {
    padding: 0 0 0.75rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    margin-bottom: 0.75rem;
}

.match-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.team-name {
    font-weight: 600;
    font-size: 0.95rem;
    flex: 1;
}

.match-score {
    background: var(--primary-color);
    color: white;
    padding: 0.45rem 1.2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
    margin: 0 0.75rem;
}

.match-score.live {
    background: #dc3545;
    animation: pulseBg 2s infinite;
}

@keyframes pulseBg {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

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

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

.news-image, .news-card img.card-img-top {
    height: 210px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image,
.news-card:hover img.card-img-top {
    transform: scale(1.06);
}

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

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

.video-thumbnail {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #111;
}

.video-thumbnail img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .video-thumbnail img { transform: scale(1.06); }

.play-button {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    opacity: 0.85;
    transition: var(--transition);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.video-card:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.12);
}

.category-badge {
    position: absolute;
    top: 10px; left: 10px;
}

/* ====================================
   GALLERY
   ==================================== */
.gallery-item {
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.gallery-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
    box-shadow: var(--box-shadow);
    transition: box-shadow 0.3s;
}

.gallery-item:hover .gallery-image-wrapper {
    box-shadow: var(--box-shadow-hover);
}

.gallery-image-wrapper img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image-wrapper img { transform: scale(1.1); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.8) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ====================================
   PLAYER CARDS (Kayan bant)
   ==================================== */
.squad-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 4rem 0;
    overflow: hidden;
}

.squad-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.squad-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.squad-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #2ecc71, #e74c3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.squad-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    max-width: 600px;
    margin: 0 auto;
}

.team-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.team-tab {
    padding: 0.75rem 2rem;
    border-radius: 10px;
    border: 2px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.team-tab:hover,
.team-tab.active {
    background: #2ecc71;
    border-color: #2ecc71;
    color: white;
    transform: translateY(-2px);
}

.team-tab.secondary { border-color: rgba(231, 76, 60, 0.5); }
.team-tab.secondary:hover,
.team-tab.secondary.active { background: #e74c3c; border-color: #e74c3c; }

/* Kayan Bant */
.squad-carousel {
    position: relative;
    overflow: hidden;
    padding: 1.5rem 0;
}

.squad-track {
    display: flex;
    gap: 1.5rem;
    animation: scrollPlayers 40s linear infinite;
    width: max-content;
}

.squad-track:hover { animation-play-state: paused; }

@keyframes scrollPlayers {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.player-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.08);
    width: 260px;
    flex-shrink: 0;
    position: relative;
}

.player-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(46, 204, 113, 0.25);
    border-color: rgba(46, 204, 113, 0.5);
}

.player-image-wrapper {
    position: relative;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.08) 0%, rgba(231, 76, 60, 0.08) 100%);
    overflow: hidden;
}

.player-number {
    position: absolute;
    top: 0.75rem; left: 1rem;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255,255,255,0.07);
    line-height: 1;
    pointer-events: none;
}

.player-position {
    position: absolute;
    top: 0.75rem; right: 0.75rem;
    background: rgba(0,0,0,0.65);
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
}

.player-photo {
    width: 100%;
    height: 290px;
    object-fit: cover;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

.player-info {
    padding: 1.25rem;
}

.player-name {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: white;
}

.player-details {
    display: flex;
    gap: 1rem;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.player-detail {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* ====================================
   BAŞARILAR BÖLÜMÜ
   ==================================== */
.achievements-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.achievements-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.04) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
    gap: 1rem;
    flex-wrap: wrap;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,215,0,0.2);
    color: #ffd700;
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.88rem;
    margin-bottom: 0.75rem;
}

/* FIX: achievements section içinde section-title renk çakışması */
.achievements-section .section-title-large {
    font-size: 2.2rem;
    font-weight: 800;
    color: white !important;
    margin: 0;
}

.view-all {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.view-all:hover { color: #ffd700; gap: 1rem; }

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.achievement-card {
    background: linear-gradient(135deg, rgba(0,128,80,0.9) 0%, rgba(0,100,60,0.9) 100%);
    border-radius: 18px;
    padding: 1.75rem;
    color: white;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    border-color: rgba(255,215,0,0.3);
}

.achievement-icon {
    width: 56px;
    height: 56px;
    background: rgba(255,215,0,0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.achievement-icon i { font-size: 1.8rem; color: #ffd700; }

.achievement-year {
    position: absolute;
    top: 1.25rem; right: 1.25rem;
    background: rgba(255,255,255,0.2);
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
}

.achievement-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.4rem; color: white; }
.achievement-league { font-size: 0.9rem; opacity: 0.8; margin: 0; }

/* ====================================
   WHATSAPP ABONELİK
   ==================================== */
.whatsapp-subscribe-section {
    background: linear-gradient(135deg, #dc3545 0%, #8b0000 100%);
    padding: 4rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.subscribe-title { font-size: 2.2rem; font-weight: 800; margin-bottom: 1rem; line-height: 1.2; }
.subscribe-description { font-size: 1rem; opacity: 0.9; line-height: 1.6; }

.subscribe-form-wrapper {
    background: rgba(255, 255, 255, 0.12);
    padding: 1.75rem;
    border-radius: var(--border-radius);
}

.subscribe-form { display: flex; gap: 0.75rem; margin-bottom: 0.75rem; }

.subscribe-input {
    flex: 1;
    padding: 0.85rem 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    transition: var(--transition);
    min-width: 0;
}

.subscribe-input:focus { outline: none; border-color: #25d366; background: white; }

.subscribe-btn {
    padding: 0.85rem 1.5rem;
    background: #25d366;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}

.subscribe-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.subscribe-note { font-size: 0.82rem; opacity: 0.75; text-align: center; margin: 0; }
.subscribe-note a { color: white; text-decoration: underline; }

/* ====================================
   SPONSORLAR
   ==================================== */
.sponsors-section {
    background: white;
    padding: 3.5rem 0;
    overflow: hidden;
}

.sponsors-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sponsors-slider { overflow: hidden; position: relative; }

/* FIX: CSS animation yerine JS rAF kullanıldığı için animation kaldırıldı */
.sponsors-track {
    display: flex;
    gap: 3rem;
    width: max-content;
    will-change: transform;
}

.sponsors-slide {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.sponsor-logo {
    flex-shrink: 0;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    background: white;
    border-radius: 10px;
    transition: var(--transition);
    filter: grayscale(100%);
    opacity: 0.65;
    border: 1px solid rgba(0,0,0,0.06);
}

.sponsor-logo:hover { filter: grayscale(0%); opacity: 1; transform: scale(1.08); }
.sponsor-logo img { max-height: 100%; max-width: 140px; object-fit: contain; }

/* ====================================
   MODERN FOOTER
   ==================================== */
.modern-footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #ffffff;
    padding: 4rem 0 2rem;
    position: relative;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #28a745, var(--primary-color));
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: white;
}

.footer-club-name div { font-size: 1.3rem; font-weight: 800; letter-spacing: 0.3px; }
.footer-club-name small { color: #555; font-size: 0.72rem; letter-spacing: 2px; }

.footer-description { color: rgba(255,255,255,0.65); line-height: 1.8; font-size: 0.92rem; }

/* Footer social links — footer-specific namespace */
.modern-footer .social-links {
    display: flex;
    gap: 0.6rem;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover { background: #28a745; color: white; transform: translateY(-3px); }

.footer-title { font-size: 1rem; font-weight: 700; color: #ffffff; margin-bottom: 1.25rem; letter-spacing: 0.5px; text-transform: uppercase; }

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.65rem; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; transition: var(--transition); font-size: 0.9rem; display: inline-block; }
.footer-links a:hover { color: #28a745; transform: translateX(4px); }

.contact-info-list { list-style: none; padding: 0; margin: 0; }
.contact-info-list li { display: flex; gap: 0.9rem; margin-bottom: 1.25rem; align-items: flex-start; }

.contact-icon {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: rgba(40, 167, 69, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #28a745;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.contact-details { flex: 1; }
.contact-label { display: block; font-size: 0.7rem; color: #555; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.2rem; }
.contact-details p, .contact-details a { color: rgba(255,255,255,0.85); font-size: 0.88rem; line-height: 1.5; }
.contact-details p { margin: 0; }
.contact-details a { text-decoration: none; transition: color 0.3s; }
.contact-details a:hover { color: #28a745; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08) !important; margin-top: 3rem; padding-top: 1.5rem; }

.footer-bottom-links {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-bottom-links a { color: rgba(255,255,255,0.45); font-size: 0.82rem; text-decoration: none; transition: color 0.3s; }
.footer-bottom-links a:hover { color: #28a745; }
.developer-credit { color: rgba(255,255,255,0.35); font-size: 0.82rem; }

/* ====================================
   TEKNİK HEYET
   ==================================== */
.staff-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

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

.staff-photo-wrapper {
    position: relative;
    padding: 2rem 2rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.staff-photo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.staff-photo-placeholder {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 4px solid white;
}

.staff-body { padding: 1.25rem 1.25rem 1.5rem; }
.staff-name { font-weight: 800; font-size: 1.05rem; margin-bottom: 0.4rem; color: #1a1a1a; }
.staff-position .badge { font-size: 0.8rem; padding: 0.4rem 0.9rem; }
.staff-meta { font-size: 0.82rem; color: #888; margin-top: 0.75rem; }

/* ====================================
   FİKSTÜR
   ==================================== */
.fikstur-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.4rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    margin-bottom: 1rem;
}

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

.match-date-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.35rem 1rem;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.status-live { background: #dc3545; color: white; animation: pulseBg 2s infinite; }
.status-finished { background: #28a745; color: white; }
.status-scheduled { background: #6c757d; color: white; }
.status-cancelled { background: #aaa; color: white; }

/* ====================================
   MAÇ SONUÇLARI
   ==================================== */
.match-card-upcoming,
.match-card-result {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.4rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.match-card-upcoming:hover,
.match-card-result:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.match-card-result { border-left: 4px solid #ddd; }

.score-display {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1.25rem;
    border-radius: 12px;
}

/* ====================================
   PUAN TABLOSU
   ==================================== */
.standings-table { font-size: 0.9rem; }
.standings-table thead th { font-weight: 700; padding: 0.9rem 0.5rem; white-space: nowrap; }
.standings-table tbody td { padding: 0.7rem 0.5rem; vertical-align: middle; }
.standings-table .table-primary { background: rgba(30, 95, 142, 0.1) !important; font-weight: 600; }
.standings-table .team-highlight { font-weight: 700; color: var(--primary-color); }

/* ====================================
   İSTATİSTİKLER
   ==================================== */
.stat-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.stat-card:hover { transform: translateY(-4px); box-shadow: var(--box-shadow-hover); }
.stat-number { font-size: 2.8rem; font-weight: 900; color: var(--primary-color); line-height: 1; }

/* ====================================
   SAYFALAMA
   ==================================== */
.pagination .page-link {
    color: var(--primary-color);
    border-radius: 8px;
    margin: 0 2px;
    border: 1px solid rgba(0,0,0,0.1);
    padding: 0.5rem 0.9rem;
    transition: var(--transition);
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: var(--primary-color);
    color: white;
}

.pagination .page-link:hover:not(.active) { background: var(--light-color); }

/* ====================================
   FLASH MESSAGES
   ==================================== */
.flash-message {
    position: fixed;
    top: 80px;
    right: 1rem;
    z-index: 9999;
    min-width: 280px;
    max-width: 380px;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ====================================
   STREAM / VİDEO (Karanlık sayfalar)
   ==================================== */
.dark-page { background: #0f0f0f; color: white; min-height: 100vh; }
.dark-page .stream-header { background: #1a1a1a; padding: 1rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.dark-page .stream-header a { color: rgba(255,255,255,0.8); text-decoration: none; }
.dark-page .stream-header a:hover { color: white; }

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius);
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
}

.live-badge {
    background: #dc3545;
    color: white;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    animation: pulseBg 2s infinite;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

/* ====================================
   İLETİŞİM
   ==================================== */
.info-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    margin-bottom: 1.5rem;
}

.info-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* ====================================
   RESPONSIVE - TABLET (≤ 991px)
   ==================================== */
@media (max-width: 991px) {

    .navbar-toggler { display: flex !important; }
    .navbar-nav-horizontal { display: none !important; }
    .d-lg-flex.navbar-actions { display: none !important; }
    .club-subtitle { display: none; }

    .hero-section { padding: 3.5rem 0; }
    .hero-logo { max-width: 180px; }

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

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .achievements-section .section-title-large { font-size: 1.8rem; }

    .subscribe-title { font-size: 1.8rem; }
    .subscribe-form { flex-direction: column; }
    .subscribe-btn { width: 100%; text-align: center; }

    .sponsors-track { gap: 2rem; }
    .sponsor-logo { height: 55px; }

    .squad-title { font-size: 1.8rem; }
    .squad-track { animation-duration: 30s; }
    .player-card { width: 230px; }
    .player-photo { height: 250px; }

    .footer-bottom-links { justify-content: center; }

    .contact-info-list li { flex-direction: row; }

    .team-tabs { gap: 0.6rem; }
    .team-tab { padding: 0.6rem 1.2rem; font-size: 0.85rem; }
}

/* ====================================
   RESPONSIVE - MOBİL (≤ 767px)
   ==================================== */
@media (max-width: 767px) {

    .announcement-bar .d-none { display: none !important; }

    .contact-bar .container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .contact-info { display: flex; flex-wrap: wrap; gap: 0.3rem; justify-content: center; }
    .contact-info a { margin-right: 0; }

    .hero-section { padding: 3rem 0; }
    .hero-section .row { flex-direction: column-reverse; }
    .hero-logo { max-width: 140px; margin-bottom: 1.5rem; }

    .section-title { font-size: 1.5rem; }

    .achievements-grid { grid-template-columns: 1fr; gap: 1rem; }

    .squad-title { font-size: 1.5rem; }
    .player-card { width: 200px; }
    .player-photo { height: 220px; }

    .subscribe-title { font-size: 1.5rem; }
    .subscribe-form-wrapper { padding: 1.25rem; }

    .sponsors-title { font-size: 1.3rem; letter-spacing: 1px; }

    .footer-bottom .row { flex-direction: column; gap: 1rem; text-align: center; }
    .footer-bottom-links { justify-content: center; gap: 0.75rem; }

    .page-hero { padding: 2.5rem 0; }
    .page-hero h1 { font-size: 1.8rem; }

    .match-teams { flex-direction: column; gap: 0.5rem; text-align: center; }
    .match-score { margin: 0; }
    .team-name { text-align: center !important; }

    .squad-carousel { margin: 0 -1rem; }

    .staff-photo, .staff-photo-placeholder { width: 100px; height: 100px; }
}

/* ====================================
   RESPONSIVE - KÜÇÜK MOBİL (≤ 480px)
   ==================================== */
@media (max-width: 480px) {

    .club-name { font-size: 1.05rem; }

    .contact-bar { display: none; } /* Çok küçük ekranlarda iletişim barı gizle */

    .hero-section { padding: 2.5rem 0; }

    .player-card { width: 180px; }
    .player-photo { height: 200px; }

    .section-title { font-size: 1.3rem; margin-bottom: 2rem; }

    .achievement-card { padding: 1.25rem; }
    .achievement-title { font-size: 1rem; }
}

/* ====================================
   UTILITY
   ==================================== */
.text-primary-custom { color: var(--primary-color) !important; }
.bg-primary-custom { background: var(--primary-color) !important; }
.hover-lift:hover { transform: translateY(-4px); }
.rounded-xl { border-radius: var(--border-radius) !important; }
.shadow-sm-custom { box-shadow: var(--box-shadow) !important; }

/* Animasyon utility */
.fade-in {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}
