/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Outfit:wght@500;700;800;900&display=swap');

/* Material Symbols Rounded */
.material-symbols-rounded {
    font-family: 'Material Symbols Rounded';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body:not(.map-layout) {
    background: #07070e;
    color: #eeeef8;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
}

.bg-orbs {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.18;
    animation: float 12s ease-in-out infinite;
}

.orb-1 { width: 500px; height: 500px; background: #7c3aed; top: -100px; left: -100px; animation-delay: 0s; }
.orb-2 { width: 400px; height: 400px; background: #2563eb; top: 40%; right: -80px; animation-delay: 3s; }
.orb-3 { width: 350px; height: 350px; background: #db2777; bottom: -80px; left: 30%; animation-delay: 6s; }
.orb-4 { width: 300px; height: 300px; background: #059669; top: 20%; left: 50%; animation-delay: 9s; }

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(7,7,14,0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 68px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #eeeef8;
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.nav-logo b { color: #a78bfa; }

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon .material-symbols-rounded {
    font-size: 20px;
    color: #fff;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 10px;
    text-decoration: none;
    color: #8888aa;
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.2s;
}

.nav-link .material-symbols-rounded { font-size: 18px; }

.nav-link:hover { background: rgba(255,255,255,0.06); color: #eeeef8; }
.nav-link.active { background: rgba(124,58,237,0.15); color: #a78bfa; }

.nav-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }

.btn-login {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 10px;
    text-decoration: none;
    color: #8888aa;
    font-size: 0.88rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.2s;
}

.btn-login:hover { color: #eeeef8; border-color: rgba(255,255,255,0.2); }

.btn-register {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    transition: all 0.2s;
    box-shadow: 0 4px 14px rgba(124,58,237,0.35);
}

.btn-register:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(124,58,237,0.5); }

.btn-login .material-symbols-rounded,
.btn-register .material-symbols-rounded { font-size: 18px; }

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 24px 60px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-content { flex: 1; max-width: 560px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(124,58,237,0.12);
    border: 1px solid rgba(124,58,237,0.3);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #a78bfa;
    margin-bottom: 24px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: #a78bfa;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-badge .material-symbols-rounded { font-size: 14px; }

.hero-content h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    color: #eeeef8;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, #a78bfa, #7c3aed, #db2777);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content > p {
    font-size: 1.05rem;
    color: #8888aa;
    line-height: 1.6;
    margin-bottom: 32px;
}

.hero-search {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 6px 6px 6px 16px;
    margin-bottom: 20px;
    transition: border-color 0.2s;
}

.hero-search:focus-within { border-color: rgba(124,58,237,0.5); }

.search-icon { color: #6b6b90; font-size: 20px; }

.hero-search input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: #eeeef8;
    font-size: 0.92rem;
    font-family: 'Inter', sans-serif;
}

.hero-search input::placeholder { color: #6b6b90; }

.search-btn {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    border: none;
    border-radius: 10px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s;
    flex-shrink: 0;
}

.search-btn:hover { transform: scale(1.05); }

.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }

.hero-tag {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 5px 12px;
    font-size: 0.8rem;
    color: #8888aa;
    cursor: pointer;
    transition: all 0.2s;
}

.hero-tag .material-symbols-rounded { font-size: 14px; }

.hero-tag:hover { background: rgba(124,58,237,0.1); border-color: rgba(124,58,237,0.3); color: #a78bfa; }

.hero-stats { display: flex; align-items: center; gap: 24px; }

.stat { display: flex; flex-direction: column; }

.stat strong { font-family: 'Outfit', sans-serif; font-size: 1.6rem; font-weight: 900; color: #eeeef8; }

.stat span { font-size: 0.78rem; color: #6b6b90; }

.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.08); }

.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 460px;
}

.hero-circle {
    width: 280px;
    height: 280px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-inner {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    box-shadow: 0 0 60px rgba(124,58,237,0.4);
    z-index: 2;
    position: relative;
}

.circle-icon { font-size: 32px; color: #fff; }

.circle-text { font-family: 'Outfit', sans-serif; font-size: 0.7rem; font-weight: 700; color: rgba(255,255,255,0.8); }

.circle-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(124,58,237,0.2);
    animation: ring-spin 8s linear infinite;
}

.ring-1 { width: 180px; height: 180px; animation-duration: 8s; }
.ring-2 { width: 230px; height: 230px; animation-duration: 12s; animation-direction: reverse; }
.ring-3 { width: 280px; height: 280px; animation-duration: 16s; border-style: dashed; }

@keyframes ring-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
/* Konferans için stiller */
.icon-konferans { background: linear-gradient(135deg, #3b82f6, #60a5fa); }
.badge-konferans { background: rgba(59,130,246,0.15); color: #60a5fa; }
.glow-blue { background: #3b82f6; }
.btn-blue { background: linear-gradient(135deg, #2563eb, #3b82f6); box-shadow: 0 4px 14px rgba(59,130,246,0.3); }
.btn-blue:hover { box-shadow: 0 6px 20px rgba(59,130,246,0.5); }
.progress-blue::after { background: linear-gradient(90deg, #2563eb, #3b82f6); }
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(10,10,22,0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 10px 14px;
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    animation: card-float 4s ease-in-out infinite;
}

.fc-1 { top: 10%; left: -20px; animation-delay: 0s; }
.fc-2 { bottom: 20%; right: -10px; animation-delay: 1.5s; }
.fc-3 { bottom: 5%; left: 10px; animation-delay: 3s; }

@keyframes card-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.fc-icon { font-size: 22px; color: #a78bfa; }
.fc-orange { color: #f59e0b; }
.fc-pink { color: #db2777; }

.fc-info { display: flex; flex-direction: column; }

.fc-info strong { font-size: 0.82rem; font-weight: 600; color: #eeeef8; }

.fc-info span { font-size: 0.7rem; color: #6b6b90; }

.fc-price { font-family: 'Outfit', sans-serif; font-size: 0.88rem; font-weight: 700; color: #a78bfa; margin-left: 4px; }
.fc-price-orange { color: #f59e0b; }
.fc-price-pink { color: #db2777; }

.events-section { padding: 60px 0 80px; position: relative; z-index: 1; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 36px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #a78bfa;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.section-label .material-symbols-rounded { font-size: 14px; }

.section-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #eeeef8;
}

.filter-tabs { display: flex; flex-wrap: wrap; gap: 6px; }

.filter-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 9px;
    color: #8888aa;
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}

.filter-btn .material-symbols-rounded { font-size: 14px; }

.filter-btn:hover { background: rgba(255,255,255,0.07); color: #eeeef8; }

.filter-btn.active { background: rgba(124,58,237,0.15); border-color: rgba(124,58,237,0.4); color: #a78bfa; }

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
}

.event-card {
    display: flex;
    flex-direction: column;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    opacity: 0;
    transform: translateY(20px);
}

.event-card.visible { opacity: 1; transform: translateY(0); transition: opacity 0.5s, transform 0.5s; }

.event-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); border-color: rgba(255,255,255,0.12); }

.card-glow {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.12;
    pointer-events: none;
}

.glow-purple { background: #7c3aed; }
.glow-orange { background: #f59e0b; }
.glow-pink { background: #db2777; }
.glow-green { background: #059669; }

.card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 18px 18px 0;
}

.event-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.event-icon .material-symbols-rounded { font-size: 22px; color: #fff; }

.icon-konser  { background: linear-gradient(135deg, #7c3aed, #a78bfa); }
.icon-festival { background: linear-gradient(135deg, #d97706, #f59e0b); }
.icon-tiyatro { background: linear-gradient(135deg, #be185d, #db2777); }
.icon-spor { background: linear-gradient(135deg, #047857, #059669); }

.card-top-right { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }

.category-badge { padding: 3px 10px; border-radius: 6px; font-size: 0.72rem; font-weight: 600; }

.badge-konser  { background: rgba(124,58,237,0.15); color: #a78bfa; }
.badge-festival { background: rgba(245,158,11,0.15); color: #f59e0b; }
.badge-tiyatro { background: rgba(219,39,119,0.15); color: #db2777; }
.badge-spor { background: rgba(5,150,105,0.15); color: #10b981; }

.featured-badge {
    display: flex;
    align-items: center;
    gap: 3px;
    background: rgba(124,58,237,0.12);
    border: 1px solid rgba(124,58,237,0.25);
    border-radius: 6px;
    padding: 2px 8px;
    font-size: 0.68rem;
    font-weight: 600;
    color: #a78bfa;
}

.featured-badge .material-symbols-rounded { font-size: 12px; }
.featured-red { background: rgba(239,68,68,0.1); border-color: rgba(239,68,68,0.25); color: #f87171; }

.card-body { padding: 14px 18px 0; flex: 1; display: flex; flex-direction: column; }

.event-title { font-family: 'Outfit', sans-serif; font-size: 1.05rem; font-weight: 700; color: #eeeef8; margin-bottom: 6px; }

.event-desc { font-size: 0.82rem; color: #6b6b90; line-height: 1.5; margin-bottom: 14px; }

.event-details { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }

.detail-item { display: flex; align-items: center; gap: 7px; font-size: 0.8rem; color: #8888aa; }

.detail-item .material-symbols-rounded { font-size: 14px; color: #6b6b90; flex-shrink: 0; }

.detail-item b { color: #eeeef8; }

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0 16px;
    margin-top: auto;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.price-block { display: flex; flex-direction: column; }

.price-from { font-size: 0.68rem; color: #6b6b90; margin-bottom: 1px; }

.price { font-family: 'Outfit', sans-serif; font-size: 1.3rem; font-weight: 900; color: #eeeef8; }

.price small { font-size: 0.8rem; font-weight: 600; color: #a78bfa; }

.price-free-tag { font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 800; color: #10b981; }

.btn-buy {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    color: #fff;
    text-decoration: none;
    padding: 9px 18px;
    border-radius: 10px;
    font-size: 0.84rem;
    font-weight: 600;
    transition: all 0.2s;
    box-shadow: 0 4px 14px rgba(124,58,237,0.35);
}

.btn-buy:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(124,58,237,0.5); }

.btn-buy .material-symbols-rounded { font-size: 14px; }

.btn-orange { background: linear-gradient(135deg, #d97706, #f59e0b); box-shadow: 0 4px 14px rgba(245,158,11,0.3); }
.btn-orange:hover { box-shadow: 0 6px 20px rgba(245,158,11,0.5); }

.btn-pink { background: linear-gradient(135deg, #be185d, #db2777); box-shadow: 0 4px 14px rgba(219,39,119,0.3); }
.btn-pink:hover { box-shadow: 0 6px 20px rgba(219,39,119,0.5); }

.btn-green { background: linear-gradient(135deg, #047857, #10b981); box-shadow: 0 4px 14px rgba(16,185,129,0.3); }
.btn-green:hover { box-shadow: 0 6px 20px rgba(16,185,129,0.5); }

.card-progress { padding: 10px 18px 14px; }

.progress-label { display: flex; align-items: center; gap: 5px; font-size: 0.72rem; color: #6b6b90; margin-bottom: 6px; }

.progress-label .material-symbols-rounded { font-size: 12px; }

.progress-bar { height: 4px; background: rgba(255,255,255,0.06); border-radius: 4px; overflow: hidden; }

.progress-bar::after {
    content: '';
    display: block;
    height: 100%;
    width: var(--p, 0%);
    background: linear-gradient(90deg, #7c3aed, #a78bfa);
    border-radius: 4px;
    transition: width 1s ease;
}

.progress-orange::after { background: linear-gradient(90deg, #d97706, #f59e0b); }
.progress-pink::after { background: linear-gradient(90deg, #be185d, #db2777); }
.progress-green::after { background: linear-gradient(90deg, #047857, #10b981); }

.footer {
    background: rgba(255,255,255,0.02);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 60px 0 0;
    position: relative;
    z-index: 1;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand p { font-size: 0.85rem; color: #6b6b90; line-height: 1.6; margin: 14px 0 20px; }

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

.social-icons a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b6b90;
    text-decoration: none;
    transition: all 0.2s;
}

.social-icons a:hover { background: rgba(124,58,237,0.15); border-color: rgba(124,58,237,0.3); color: #a78bfa; }

.social-icons .material-symbols-rounded { font-size: 16px; }

.footer-col h4 { font-family: 'Outfit', sans-serif; font-size: 0.88rem; font-weight: 700; color: #eeeef8; margin-bottom: 14px; }

.footer-col a {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #6b6b90;
    text-decoration: none;
    font-size: 0.82rem;
    padding: 4px 0;
    transition: color 0.2s;
}

.footer-col a .material-symbols-rounded { font-size: 14px; }

.footer-col a:hover { color: #a78bfa; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.78rem;
    color: #6b6b90;
}

.footer-bottom p { display: flex; align-items: center; gap: 6px; }

.footer-bottom .material-symbols-rounded { font-size: 14px; color: #10b981; }

@media (max-width: 1024px) {
    .hero { flex-direction: column; text-align: center; padding-top: 110px; }
    .hero-content { max-width: 100%; }
    .hero-stats { justify-content: center; }
    .hero-tags { justify-content: center; }
    .hero-search { max-width: 500px; margin-left: auto; margin-right: auto; }
    .hero-visual { min-height: 300px; }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .events-grid { grid-template-columns: 1fr; }
    .section-header { flex-direction: column; }
    .footer-top { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2rem; }
    .hero-visual { display: none; }
    .nav-actions .btn-login { display: none; }
    .filter-tabs { gap: 4px; }
    .filter-btn { padding: 6px 10px; font-size: 0.76rem; }
}