/* ============================================================
   Basketbol Dünyası - Ana CSS Dosyası
   Renk Teması: Turuncu (#FF6B00), Siyah (#1A1A1A), Beyaz (#FFFFFF)
   ============================================================ */

/* ---- Google Fonts Import ---- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&family=Open+Sans:wght@400;600&display=swap');

/* ---- CSS Değişkenleri (Açık Mod) ---- */
:root {
    --primary: #FF6B00;
    --primary-dark: #CC5500;
    --primary-light: #FF8C33;
    --secondary: #1A1A1A;
    --bg: #F5F5F5;
    --card-bg: #FFFFFF;
    --text: #222222;
    --text-light: #666666;
    --border: #E0E0E0;
    --shadow: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-hover: 0 8px 30px rgba(255,107,0,0.3);
    --nav-bg: #1A1A1A;
    --footer-bg: #111111;
    --ticker-bg: #FF6B00;
    --transition: all 0.3s ease;
}

/* ---- Karanlık Mod Değişkenleri ---- */
body.dark-mode {
    --bg: #121212;
    --card-bg: #1E1E1E;
    --text: #E0E0E0;
    --text-light: #AAAAAA;
    --border: #333333;
    --shadow: 0 4px 20px rgba(0,0,0,0.5);
    --nav-bg: #0D0D0D;
    --footer-bg: #0A0A0A;
}

/* ---- Genel Sıfırlama ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.7;
    transition: background-color 0.4s ease, color 0.4s ease;
    min-width: 320px;
}

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

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

ul { list-style: none; }

/* ============================================================
   HABER BANDI (NEWS TICKER)
   ============================================================ */
.news-ticker {
    background: var(--ticker-bg);
    color: #fff;
    padding: 10px 0;
    overflow: hidden;
    position: relative;
    z-index: 1000;
}

.ticker-label {
    background: #CC5500;
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0 14px;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ticker-wrapper {
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-left: 120px;
}

.ticker-content {
    display: flex;
    animation: tickerScroll 60s linear infinite;
    white-space: nowrap;
}

.ticker-content span {
    padding: 0 40px;
    font-size: 0.88rem;
    font-weight: 600;
}

.ticker-content span::before {
    content: "🏀 ";
}

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

/* ============================================================
   NAVİGASYON ÇUBUĞU
   ============================================================ */
.navbar {
    background: var(--nav-bg);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 15px rgba(0,0,0,0.4);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 65px;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    color: #fff;
}

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

.nav-logo .logo-icon {
    font-size: 1.8rem;
}

/* Ana Menü */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #ccc;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(255,107,0,0.1);
}

.nav-link .arrow {
    font-size: 0.65rem;
    transition: transform 0.3s;
}

.nav-item:hover .arrow {
    transform: rotate(180deg);
}

/* Dropdown Menü */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #222;
    border-radius: 10px;
    min-width: 220px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border-top: 3px solid var(--primary);
    z-index: 1000;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 18px;
    color: #ccc;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
    border-radius: 6px;
    margin: 3px 6px;
}

.dropdown-menu li a:hover {
    color: var(--primary);
    background: rgba(255,107,0,0.1);
    padding-left: 24px;
}

/* Sağ Araçlar */
.nav-tools {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Arama Kutusu */
.search-box {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.08);
    border-radius: 25px;
    padding: 6px 14px;
    border: 1px solid rgba(255,255,255,0.15);
    transition: var(--transition);
}

.search-box:focus-within {
    border-color: var(--primary);
    background: rgba(255,107,0,0.1);
}

.search-box input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 0.85rem;
    width: 150px;
    font-family: 'Open Sans', sans-serif;
}

.search-box input::placeholder { color: #888; }

.search-box button {
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0;
    transition: var(--transition);
}

.search-box button:hover { color: var(--primary); }

/* Karanlık Mod Butonu */
.dark-toggle {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #ccc;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.dark-toggle:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* Hamburger Menü (Mobil) */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================================
   HERO ALANI
   ============================================================ */
.hero {
    min-height: 92vh;
    background: linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 40%, #2D1500 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Arka plan animasyonlu daireler */
.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,0,0.15) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: pulse 4s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,0,0.1) 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
    animation: pulse 4s ease-in-out infinite 2s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
}

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

.hero-ball {
    font-size: 8rem;
    display: block;
    animation: bounceBall 2s ease-in-out infinite;
    margin-bottom: 20px;
    filter: drop-shadow(0 10px 30px rgba(255,107,0,0.5));
}

@keyframes bounceBall {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(15deg); }
}

.hero-subtitle {
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
    animation: fadeInDown 0.8s ease forwards;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease 0.2s both;
}

.hero-title span {
    color: var(--primary);
    display: block;
}

.hero-desc {
    color: #aaa;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 35px;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: 'Open Sans', sans-serif;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 5px 20px rgba(255,107,0,0.4);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,107,0,0.5);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

/* Hero İstatistikler */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    animation: fadeInUp 1s ease 0.8s both;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    display: block;
}

.stat-label {
    color: #888;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ============================================================
   GENEL BÖLÜM STİLLERİ
   ============================================================ */
.section {
    padding: 80px 20px;
}

.section-alt {
    background: var(--card-bg);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 55px;
}

.section-tag {
    display: inline-block;
    background: rgba(255,107,0,0.1);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--text);
    margin-bottom: 15px;
}

.section-title span {
    color: var(--primary);
}

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

/* ============================================================
   KART SİSTEMİ
   ============================================================ */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

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

.card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.card-img-wrap {
    overflow: hidden;
    position: relative;
}

.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

.card-body {
    padding: 22px;
}

.card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.card-text {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.card-link {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.card-link:hover {
    gap: 10px;
}

/* ============================================================
   OYUNCU KARTI
   ============================================================ */
.player-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
    text-align: center;
}

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

.player-card-header {
    background: linear-gradient(135deg, #1A1A1A, #2D1500);
    padding: 30px 20px 20px;
    position: relative;
}

.player-number {
    position: absolute;
    top: 10px;
    right: 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255,107,0,0.2);
    line-height: 1;
}

.player-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid var(--primary);
    margin: 0 auto 12px;
    object-fit: cover;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.player-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.player-team {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.player-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
}

.player-stat {
    background: var(--card-bg);
    padding: 14px 10px;
    text-align: center;
}

.player-stat-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--primary);
    display: block;
}

.player-stat-label {
    font-size: 0.7rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================================
   İSTATİSTİK KARTI
   ============================================================ */
.stat-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.stat-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.stat-card-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--text);
    display: block;
    line-height: 1;
}

.stat-card-label {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 4px;
}

/* ============================================================
   SLIDER
   ============================================================ */
.slider-section {
    background: #111;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

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

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 40px;
    color: #fff;
}

.slide-tag {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.slide-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 15px;
}

.slide-desc {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 25px;
}

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

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

.slider-dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 5px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,107,0,0.8);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 3;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover { background: var(--primary); transform: translateY(-50%) scale(1.1); }
.slider-btn.prev { left: 20px; }
.slider-btn.next { right: 20px; }

/* ============================================================
   GALERİ
   ============================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,107,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-overlay i {
    color: #fff;
    font-size: 2rem;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 0 60px rgba(255,107,0,0.3);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
    transition: var(--transition);
}

.lightbox-close:hover { color: var(--primary); transform: rotate(90deg); }

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,107,0,0.8);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--primary); }

/* ============================================================
   VİDEO BÖLÜMÜ
   ============================================================ */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.video-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
}

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

.video-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #111;
}

.video-thumb iframe,
.video-thumb video {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    object-fit: cover;
}

.video-thumb video {
    background: #000;
}

.video-info {
    padding: 18px;
}

.video-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.video-desc {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* ============================================================
   DİJİTAL SAAT & TAKVİM (Sağ Kenar Araçları)
   ============================================================ */
.side-widgets {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 500;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.widget-clock {
    background: var(--secondary);
    color: #fff;
    border-radius: 12px;
    padding: 14px 18px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,107,0,0.3);
    min-width: 130px;
}

.clock-time {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: 2px;
    display: block;
}

.clock-date {
    font-size: 0.7rem;
    color: #888;
    margin-top: 4px;
    letter-spacing: 1px;
}

.widget-calendar {
    background: var(--secondary);
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,107,0,0.3);
    min-width: 200px;
}

/* Hava Durumu Widget */
.widget-weather {
    background: var(--secondary);
    color: #fff;
    border-radius: 12px;
    padding: 14px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,107,0,0.3);
    min-width: 130px;
}

.weather-temp {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--primary);
    display: block;
}

.weather-city {
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.weather-desc {
    font-size: 0.7rem;
    color: #888;
    text-transform: capitalize;
}

/* Ziyaretçi Sayacı Widget */
.widget-counter {
    background: var(--secondary);
    color: #fff;
    border-radius: 12px;
    padding: 14px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,107,0,0.3);
    min-width: 130px;
}

.counter-title {
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.counter-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: 1px;
}

.cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.cal-title {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cal-nav {
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    font-size: 0.8rem;
    padding: 2px 5px;
    transition: var(--transition);
}

.cal-nav:hover { color: var(--primary); }

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    text-align: center;
}

.cal-day-name {
    color: #666;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 0;
    text-transform: uppercase;
}

.cal-day {
    color: #ccc;
    font-size: 0.75rem;
    padding: 4px 2px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.cal-day:hover { background: rgba(255,107,0,0.2); color: var(--primary); }
.cal-day.today { background: var(--primary); color: #fff; font-weight: 700; border-radius: 50%; }
.cal-day.other-month { color: #444; }

/* ============================================================
   POPUP REKLAM
   ============================================================ */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.popup-box {
    background: var(--card-bg);
    width: 350px;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    position: relative;
    animation: popupIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popupIn {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.popup-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 20px;
    text-align: center;
    color: #fff;
}

.popup-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 5px;
}

.popup-header p {
    font-size: 0.85rem;
    opacity: 0.9;
}

.popup-body {
    padding: 20px;
    text-align: center;
}

.popup-body p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: rgba(0,0,0,0.3);
    color: #fff;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.popup-close:hover { background: rgba(0,0,0,0.6); transform: rotate(90deg); }

/* ============================================================
   YUKARIYA ÇIK BUTONU
   ============================================================ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 20px;
    background: var(--primary);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255,107,0,0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 800;
}

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

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ============================================================
   SAYFA GEÇİŞ BUTONLARI
   ============================================================ */
.page-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 20px;
    max-width: 1300px;
    margin: 0 auto;
    border-top: 1px solid var(--border);
}

.page-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--card-bg);
    border: 2px solid var(--border);
    border-radius: 50px;
    color: var(--text);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.page-nav-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateX(0) scale(1.03);
}

.page-nav-btn.prev:hover { transform: translateX(-3px); }
.page-nav-btn.next:hover { transform: translateX(3px); }

/* ============================================================
   İLETİŞİM FORMU
   ============================================================ */
.contact-form {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 22px;
}

.form-label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 13px 18px;
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-size: 0.95rem;
    font-family: 'Open Sans', sans-serif;
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255,107,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: var(--footer-bg);
    color: #ccc;
    padding: 60px 20px 0;
}

.footer-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .nav-logo {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.footer-desc {
    color: #777;
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

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

.footer-links a {
    color: #777;
    font-size: 0.88rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: #777;
    font-size: 0.88rem;
}

.footer-contact li i {
    color: var(--primary);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    color: #555;
    font-size: 0.83rem;
}

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

/* ============================================================
   SAYFA BAŞLIĞI (İÇ SAYFALAR)
   ============================================================ */
.page-hero {
    background: linear-gradient(135deg, #0D0D0D, #1A1A1A);
    padding: 80px 20px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
}

.page-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
}

.page-hero-title span { color: var(--primary); }

.page-hero-desc {
    color: #888;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 20px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #666;
}

.breadcrumb a { color: var(--primary); }
.breadcrumb span { color: #444; }

/* ============================================================
   ANİMASYONLAR
   ============================================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   RESPONSIVE TASARIM
   ============================================================ */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .side-widgets {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        background: #111;
        flex-direction: column;
        padding: 20px;
        gap: 5px;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.4s ease;
        z-index: 998;
        max-height: calc(100vh - 65px);
        overflow-y: auto;
    }

    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-item { width: 100%; }

    .nav-link {
        width: 100%;
        padding: 12px 16px;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255,255,255,0.05);
        border-radius: 8px;
        margin-top: 5px;
        border-top: none;
        border-left: 3px solid var(--primary);
    }

    .hamburger { display: flex; }

    .search-box { display: none; }

    .hero-stats { gap: 25px; }

    .form-row { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; }

    .footer-bottom { flex-direction: column; text-align: center; }

    .slider-container { height: 350px; }

    .slide-title { font-size: 1.8rem; }

    .page-nav { flex-direction: column; gap: 15px; }
}

@media (max-width: 480px) {
    .hero-ball { font-size: 5rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .grid-2 { grid-template-columns: 1fr; }
    .contact-form { padding: 25px; }
}

/* ============================================================
   YARDIMCI SINIFLAR
   ============================================================ */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.fw-700 { font-weight: 700; }

/* İçerik metni */
.content-text {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

.content-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin: 30px 0 12px;
}

.content-text h3 span { color: var(--primary); }

.highlight-box {
    background: rgba(255,107,0,0.08);
    border-left: 4px solid var(--primary);
    padding: 18px 22px;
    border-radius: 0 10px 10px 0;
    margin: 20px 0;
}

.highlight-box p {
    color: var(--text);
    font-size: 0.95rem;
    font-style: italic;
}

/* Tablo */
.data-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.data-table th {
    background: var(--secondary);
    color: #fff;
    padding: 14px 18px;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.data-table th:first-child { color: var(--primary); }

.data-table td {
    padding: 13px 18px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-size: 0.9rem;
}

.data-table tr:last-child td { border-bottom: none; }

.data-table tr:hover td { background: rgba(255,107,0,0.04); }

/* Rozet */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-primary { background: rgba(255,107,0,0.15); color: var(--primary); }
.badge-dark { background: rgba(0,0,0,0.1); color: var(--text); }
.badge-success { background: rgba(40,167,69,0.15); color: #28a745; }

/* Bölüm ayırıcı */
.divider {
    height: 3px;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
    margin: 0;
    border: none;
}

/* Yükleniyor animasyonu */
.loading-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--primary);
    z-index: 9999;
    animation: loadBar 1.5s ease forwards;
}

@keyframes loadBar {
    from { width: 0; }
    to { width: 100%; }
}
