/* Ana sayfa — base.css ile birlikte yüklenir */

.home-header {
    position: sticky;
    top: 0;
    z-index: 9000;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 1.25rem;
    background: rgba(8, 8, 12, 0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.home-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
}

.home-logo span {
    color: var(--primary);
}

.home-header-tools {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
}

.home-nav {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-left: auto;
}

.home-nav-guest {
    display: none;
}

.home-menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
}

.home-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    transition: all 0.2s;
}

.home-nav a:hover {
    color: var(--text);
    background: var(--surface-2);
}

.home-nav .btn-nav-primary {
    background: linear-gradient(135deg, var(--accent-light), var(--primary));
    color: #1a1408 !important;
    margin-left: 0.35rem;
    box-shadow: 0 4px 16px var(--primary-glow);
}

.home-nav .btn-nav-primary:hover {
    background: var(--primary-hover);
}

/* Hero */

.hero {
    position: relative;
    padding: 3.5rem 1.5rem 2.5rem;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(212, 168, 83, 0.18) 0%, transparent 58%),
        radial-gradient(ellipse at 15% 80%, rgba(166, 124, 46, 0.08) 0%, transparent 45%),
        radial-gradient(ellipse at 85% 40%, rgba(232, 201, 122, 0.05) 0%, transparent 35%);
    pointer-events: none;
    animation: hero-glow 10s ease-in-out infinite;
}

@keyframes hero-glow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.82; }
}

.hero-content {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    background: var(--primary-soft);
    color: var(--primary);
    border: 1px solid rgba(212, 168, 83, 0.28);
    border-radius: 20px;
    margin-bottom: 1.25rem;
}

.hero-compact {
    padding: 2.5rem 1.25rem 1.75rem;
}

.hero h1 {
    font-size: clamp(1.65rem, 4vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, #f0d48a, #d4a853, #a67c2e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 420px;
    margin: 0 auto 1.25rem;
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-actions .btn {
    width: auto;
    min-width: 160px;
}

/* İstatistikler */

.welcome-strip {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.15rem 1.25rem 0;
}

.welcome-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.welcome-strip h1 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.welcome-strip h1 em {
    font-style: normal;
    color: var(--primary);
}

.welcome-strip-link {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: none;
    white-space: nowrap;
}

.welcome-strip-link:hover {
    color: var(--primary);
}

.stats-bar {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 1.25rem 1.5rem;
    margin: 0 1.25rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -1.5rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
}

.stats-bar-compact {
    margin-top: 1rem;
    padding: 0.85rem 1.25rem;
    gap: 1.5rem;
}

.stat-number {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

/* Bölümler */

.home-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1.25rem;
}

.home-section-compact {
    padding-top: 1.25rem;
    padding-bottom: 2rem;
}

.section-title-inline {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.85rem;
}

.section-more {
    text-align: center;
    margin-top: 1.25rem;
}

.section-more a {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: none;
}

.section-more a:hover {
    color: var(--primary);
}

.steps-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.step-item strong {
    color: var(--primary);
    font-weight: 600;
}

/* Filtre */

.home-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.home-filter .filter-field {
    flex: 1;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.home-filter .filter-field label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
}

.home-filter .filter-field select {
    width: 100%;
    padding: 0.65rem 0.85rem;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-family: inherit;
    font-size: 0.875rem;
}

.home-filter .btn {
    width: auto;
    min-width: 100px;
    padding: 0.65rem 1.25rem;
}

/* İlan grid */

/* .jobs-grid — base.css job-id-card */

/* Nasıl çalışır */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.step-card {
    padding: 1.75rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    text-align: center;
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 0.85rem;
}

.step-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.step-number {
    display: inline-block;
    width: 28px;
    height: 28px;
    line-height: 28px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
}

/* CTA */

.cta-section {
    margin: 0 2rem 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 3rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.12), rgba(166, 124, 46, 0.06));
    border: 1px solid rgba(212, 168, 83, 0.28);
    border-radius: var(--radius);
}

.cta-section h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.cta-section p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    width: auto;
    min-width: 180px;
}

/* Footer */

.home-filter-compact .btn-filter {
    width: auto;
    padding: 0.5rem 0.85rem;
    font-size: 0.82rem;
}

.empty-home-compact {
    padding: 1.5rem 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.home-footer {
    padding: 1.25rem;
    text-align: center;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.home-footer a {
    color: var(--primary);
    text-decoration: none;
}

/* Public ilan detay */

.job-public-page {
    max-width: 720px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}

.job-public-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.job-public-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
}

.job-venue-banner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.15rem;
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.08) 0%, rgba(166, 124, 46, 0.04) 100%);
    border: 1px solid rgba(212, 168, 83, 0.18);
    border-radius: 12px;
}

.job-venue-banner-logo {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    object-fit: cover;
    background: var(--surface-2);
    flex-shrink: 0;
}

.job-venue-banner-logo.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.job-venue-banner-text {
    min-width: 0;
}

.job-venue-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--text-muted);
    opacity: 0.85;
    margin-bottom: 0.2rem;
}

.job-venue-name {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1.25;
    color: var(--text);
    overflow-wrap: anywhere;
    word-break: break-word;
}

.job-venue-city {
    font-size: 0.9rem;
    color: var(--accent-light);
    margin-top: 0.25rem;
}

.job-public-card .job-venue-banner {
    margin-bottom: 1.5rem;
}

.job-public-card .job-venue-name {
    font-size: 1.5rem;
}

.empty-home {
    text-align: center;
    padding: 3rem 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    color: var(--text-muted);
}

.empty-home-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

/* Mobil — assets/css/mobile.css */
