/* -------------------------------------------------------------------------
   PRIME PITCH - MAIN STYLESHEET
------------------------------------------------------------------------- */

:root {
    --bg-body: #F8FAFC;         /* Slate 50 */
    --bg-card: #FFFFFF;
    --primary: #0F172A;         /* Slate 900 (Koyu Lacivert) */
    --primary-light: #334155;   /* Slate 700 */
    --accent: #D97706;          /* Amber 600 (Altın Sarısı) */
    --accent-hover: #B45309;
    --text-main: #1E293B;
    --text-muted: #64748B;
    --border: #E2E8F0;
    --card-radius: 16px;
    --shadow-soft: 0 10px 40px -10px rgba(0,0,0,0.08);
    --shadow-hover: 0 20px 50px -10px rgba(0,0,0,0.12);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    padding-bottom: 50px;
    overflow-x: hidden;
}

a { text-decoration: none; }

/* --- Navbar (Glassmorphism) --- */
.navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    padding: 1rem 0;
    z-index: 1000;
}
.brand-logo {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary);
    letter-spacing: -0.5px;
}
.brand-logo span { color: var(--accent); }
.brand-logo i { color: var(--accent); margin-right: 6px; }

/* --- Hero Section --- */
.hero {
    position: relative;
    padding: 140px 0 160px 0;
    background-color: var(--primary);
    color: white;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Stadyum görseli */
    background-image: url('https://images.unsplash.com/photo-1522778119026-d647f0565c71?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    mix-blend-mode: soft-light;
    filter: blur(2px);
}
.hero-content { position: relative; z-index: 2; }
.hero h1 { font-weight: 800; letter-spacing: -1.5px; text-shadow: 0 4px 15px rgba(0,0,0,0.5); }
.hero p { font-size: 1.2rem; color: #CBD5E1; max-width: 600px; margin: 0 auto; }

/* --- Search Bar --- */
.search-wrapper {
    margin-top: -50px;
    z-index: 10;
    position: relative;
    margin-bottom: 60px;
}
.search-bar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px;
    border-radius: 16px;
    box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.15);
    border: 1px solid rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 15px;
}
.search-group {
    flex: 1;
    background: #F1F5F9;
    border-radius: 10px;
    padding: 8px 15px;
    transition: 0.2s;
    border: 1px solid transparent;
}
.search-group:focus-within {
    background: #fff;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}
.search-label { font-size: 0.7rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; margin-bottom: 2px; display: block; }
.search-input { border: none; background: transparent; width: 100%; font-weight: 600; color: var(--primary); outline: none; font-size: 0.95rem; }

.btn-search {
    background: var(--primary);
    color: white;
    border: none;
    height: 60px;
    padding: 0 40px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}
.btn-search:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(217, 119, 6, 0.3); }

/* --- Sponsor / Trending Cards --- */
.section-title {
    font-weight: 800;
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.section-title::before { content: ''; width: 6px; height: 26px; background: var(--accent); border-radius: 4px; display: block; }

.sponsor-card {
    background: var(--bg-card);
    border-radius: var(--card-radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    box-shadow: var(--shadow-soft);
}
.sponsor-card:hover { transform: translateY(-5px); border-color: var(--accent); box-shadow: var(--shadow-hover); }
.sponsor-img-wrap { height: 160px; position: relative; overflow: hidden; }
.sponsor-img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.sponsor-card:hover .sponsor-img { transform: scale(1.05); }
.sponsor-badge {
    position: absolute; top: 12px; left: 12px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    padding: 5px 12px; border-radius: 20px;
    font-size: 0.7rem; font-weight: 800; text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.sponsor-body { padding: 18px; }

/* --- Filter Panel --- */
.filter-panel {
    background: white;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--border);
    position: sticky;
    top: 100px; /* Navbar yüksekliğine göre ayarlandı */
    z-index: 5;
}

/* Custom Checkbox */
.custom-check-input {
    width: 1.2em; height: 1.2em;
    border: 2px solid #CBD5E1;
    border-radius: 6px;
    margin-right: 8px;
    cursor: pointer;
}
.custom-check-input:checked {
    background-color: var(--accent);
    border-color: var(--accent);
}
.custom-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(217, 119, 6, 0.25);
}

/* --- Listing Cards --- */
.listing-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    overflow: hidden;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
@media (min-width: 992px) {
    .listing-card { flex-direction: row; min-height: 230px; }
    .card-img-wrap-list { width: 320px; flex-shrink: 0; }
}
.listing-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); border-color: #CBD5E1; }

.card-img-wrap-list { position: relative; height: 200px; }
@media(min-width: 992px) { .card-img-wrap-list { height: auto; } }
.card-img-list { width: 100%; height: 100%; object-fit: cover; }

.badge-premium {
    position: absolute; top: 15px; left: 15px;
    background: var(--primary); color: #fff;
    padding: 6px 12px; border-radius: 6px;
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.5px;
    z-index: 2;
}

.card-content { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }
.saha-title { font-size: 1.3rem; font-weight: 700; color: var(--primary); margin-bottom: 5px; }

.feature-pill {
    display: inline-block; padding: 5px 12px;
    background: #F1F5F9; border-radius: 6px;
    font-size: 0.75rem; color: var(--text-muted); border: 1px solid #E2E8F0;
    font-weight: 600; margin-right: 6px; margin-bottom: 6px;
}

.price-area { text-align: right; }
.price-val { font-size: 1.6rem; font-weight: 800; color: var(--primary); letter-spacing: -1px; }

.btn-reserve {
    background-color: var(--primary); color: white; border: none;
    padding: 10px 24px; border-radius: 8px; font-weight: 600;
    width: 100%; margin-top: 10px; transition: 0.2s;
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-reserve:hover { background-color: var(--primary-light); color: white; }

/* --- Modal & Calendar --- */
.modal-content { border-radius: 20px; border: none; overflow: hidden; }
.modal-header { background: #F8FAFC; border-bottom: 1px solid var(--border); padding: 20px 30px; }
.slot-btn {
    border: 1px solid var(--border); border-radius: 8px;
    padding: 12px; text-align: center; font-weight: 600; font-size: 0.9rem;
    cursor: pointer; transition: 0.2s; background: white;
}
.slot-btn:hover:not(.disabled) { border-color: var(--primary); background: #F1F5F9; }
.slot-btn.selected { background: var(--primary); color: white; border-color: var(--primary); }
.slot-btn.disabled { background: #F8FAFC; color: #CBD5E1; cursor: not-allowed; text-decoration: line-through; border-color: #F1F5F9; }