/* ============================================================
   EVE GELEN MASÖZ — Premium Design System
   Inspired by Love Talk Template
   Colors: Black + Hot Pink (#D42A7D)
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&family=Dancing+Script:wght@400;600;700&display=swap');

/* ── CSS Custom Properties ── */
:root {
    --pink: #D42A7D;
    --pink-light: #E84899;
    --pink-dark: #B01F65;
    --pink-glow: rgba(212,42,125,0.3);
    --black: #000000;
    --bg-dark: #0A0A0A;
    --bg-card: #141414;
    --bg-card-hover: #1A1A1A;
    --border: #222222;
    --border-light: #333333;
    --white: #FFFFFF;
    --gray-100: #F1F5F9;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gold: #F59E0B;
    --green: #22C55E;
    --red: #EF4444;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --font-script: 'Dancing Script', cursive;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow: 0 4px 24px rgba(0,0,0,0.4);
    --shadow-pink: 0 4px 30px rgba(212,42,125,0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1280px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--gray-300);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--pink-light); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--pink); }
ul, ol { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    color: var(--white);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 3vw, 1.5rem); }
.script-text {
    font-family: var(--font-script);
    color: var(--pink);
    text-transform: none;
    letter-spacing: 0;
    font-weight: 600;
    animation: scriptBlink 2.5s ease-in-out infinite;
}

@keyframes scriptBlink {
    0%, 100% { opacity: 1; filter: brightness(1); }
    50% { opacity: 0.8; filter: brightness(1.3); text-shadow: 0 0 10px var(--pink); }
}

/* ── Layout ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header .script-text { font-size: 1.3rem; display: block; margin-bottom: 8px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--gray-400); max-width: 600px; margin: 0 auto; }

/* ── Ornament Divider ── */
.ornament {
    display: flex; align-items: center; justify-content: center;
    gap: 6px; margin: 16px 0 0; color: var(--pink);
}
.ornament svg { width: 120px; height: 20px; }
.ornament .heart { font-size: 10px; }
.ornament .heart-lg { font-size: 18px; }

/* ── Header ── */
.site-header {
    position: sticky; top: 0; z-index: 1000;
    background: var(--black);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    max-width: var(--max-width); margin: 0 auto;
    padding: 16px 20px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 40px; width: auto; }
.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem; font-weight: 700;
    color: var(--white); text-transform: uppercase;
    letter-spacing: 0.05em;
}
.logo-text span { color: var(--pink); }

/* ── Nav Bar (Pink Strip) ── */
.nav-bar {
    background: var(--pink);
    padding: 0;
}
.nav-bar-inner {
    display: flex; align-items: center; justify-content: center;
    max-width: var(--max-width); margin: 0 auto;
    gap: 0;
}
.nav-link {
    display: block; padding: 14px 24px;
    color: var(--white); font-weight: 600; font-size: 0.9rem;
    text-transform: uppercase; letter-spacing: 0.08em;
    transition: var(--transition); position: relative;
}
.nav-link:hover, .nav-link.active {
    background: rgba(0,0,0,0.2); color: var(--white);
}

/* ── Hamburger Menu (Mobile) ── */
.hamburger {
    display: none; background: none; border: none;
    color: var(--white); font-size: 1.5rem; cursor: pointer;
    width: 44px; height: 44px;
    align-items: center; justify-content: center;
    border-radius: var(--radius);
    transition: var(--transition);
}
.hamburger:hover { background: rgba(255,255,255,0.1); }
.mobile-menu {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.97); z-index: 2000;
    flex-direction: column; padding: 80px 30px 30px;
}
.mobile-menu.open { display: flex; }
.mobile-menu .close-btn {
    position: absolute; top: 16px; right: 20px;
    background: none; border: none; color: var(--white);
    font-size: 2rem; cursor: pointer;
}
.mobile-menu a {
    display: block; padding: 16px 0; color: var(--white);
    font-family: var(--font-heading); font-size: 1.5rem;
    text-transform: uppercase; letter-spacing: 0.05em;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.mobile-menu a:hover { color: var(--pink); padding-left: 12px; }

/* ── Hero Section ── */
.hero {
    position: relative; padding: 100px 0 80px;
    background: var(--black);
    overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, var(--pink-glow) 0%, transparent 60%);
    pointer-events: none;
}
.hero-content { position: relative; z-index: 2; }
.hero .script-text { font-size: clamp(1.5rem, 4vw, 2.5rem); margin-bottom: 8px; display: block; }
.hero h1 { margin-bottom: 20px; }
.hero p { font-size: 1.15rem; color: var(--gray-400); max-width: 600px; margin-bottom: 32px; }

/* ── Buttons ── */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 32px; border-radius: 50px; font-weight: 600;
    font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.05em;
    cursor: pointer; border: none; transition: var(--transition);
    font-family: var(--font-body);
}
.btn-pink {
    background: var(--pink); color: var(--white);
    box-shadow: var(--shadow-pink);
}
.btn-pink:hover {
    background: var(--pink-light); color: var(--white);
    transform: translateY(-2px); box-shadow: 0 8px 40px rgba(212,42,125,0.4);
}
.btn-outline {
    background: transparent; color: var(--pink);
    border: 2px solid var(--pink);
}
.btn-outline:hover {
    background: var(--pink); color: var(--white);
}
.btn-wa {
    background: #25D366; color: var(--white);
}
.btn-wa:hover {
    background: #20ba5a; color: var(--white);
    transform: translateY(-2px);
}
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }

/* ── Cards (İlan Kartları) ── */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.ilan-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}
.ilan-card:hover {
    transform: translateY(-6px);
    border-color: var(--pink);
    box-shadow: var(--shadow-pink);
}
.ilan-card .card-img {
    position: relative; aspect-ratio: 3/4;
    overflow: hidden;
}
.ilan-card .card-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}
.ilan-card:hover .card-img img { transform: scale(1.08); }
.ilan-card .card-img .overlay {
    position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, transparent 50%);
}
.ilan-card .status-badge {
    position: absolute; top: 12px; right: 12px;
    padding: 4px 12px; border-radius: 50px;
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.05em;
}
.badge-online { background: var(--green); color: var(--white); }
.badge-offline { background: var(--red); color: var(--white); }
.ilan-card .featured-badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--gold); color: var(--black);
    padding: 4px 12px; border-radius: 50px;
    font-size: 0.65rem; font-weight: 800; text-transform: uppercase;
}
.ilan-card .card-body { padding: 20px; }
.ilan-card .card-name {
    font-family: var(--font-heading);
    font-size: 1.3rem; font-weight: 700;
    color: var(--white); margin-bottom: 4px;
}
.ilan-card .card-meta {
    font-size: 0.8rem; color: var(--gray-500);
    margin-bottom: 12px;
}
.ilan-card .card-tags {
    display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px;
}
.ilan-card .card-tags span {
    font-size: 0.7rem; padding: 3px 10px;
    background: rgba(212,42,125,0.15); color: var(--pink-light);
    border-radius: 50px; font-weight: 500;
}
.ilan-card .card-cta {
    display: block; text-align: center;
    padding: 12px; border-radius: 50px;
    background: var(--pink); color: var(--white);
    font-weight: 700; font-size: 0.85rem;
    text-transform: uppercase; letter-spacing: 0.05em;
    transition: var(--transition);
}
.ilan-card .card-cta:hover {
    background: var(--pink-light); color: var(--white);
}

/* ── Blog Cards ── */
.blog-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden;
    transition: var(--transition);
}
.blog-card:hover {
    transform: translateY(-4px);
    border-color: var(--pink);
    box-shadow: var(--shadow-pink);
}
.blog-card .blog-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card .blog-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-card .blog-body { padding: 24px; }
.blog-card .blog-date {
    font-size: 0.75rem; color: var(--pink); font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px;
}
.blog-card .blog-title {
    font-family: var(--font-heading); font-size: 1.2rem;
    color: var(--white); margin-bottom: 8px;
    transition: var(--transition);
}
.blog-card:hover .blog-title { color: var(--pink); }
.blog-card .blog-excerpt { font-size: 0.875rem; color: var(--gray-400); line-height: 1.6; }

/* ── İlçe Cards ── */
.ilce-card {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 24px;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); transition: var(--transition);
    color: var(--white); font-weight: 600;
    font-family: var(--font-heading); font-size: 1rem;
    text-transform: uppercase; letter-spacing: 0.03em;
}
.ilce-card:hover {
    background: var(--pink); border-color: var(--pink);
    color: var(--white); transform: translateX(4px);
}
.ilce-card .arrow { transition: var(--transition); }
.ilce-card:hover .arrow { transform: translateX(4px); }

/* ── Tag Cloud ── */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.tag-link {
    padding: 8px 20px; border-radius: 50px;
    background: var(--bg-card); border: 1px solid var(--border);
    color: var(--gray-300); font-size: 0.85rem; font-weight: 500;
    transition: var(--transition);
}
.tag-link:hover {
    background: var(--pink); border-color: var(--pink);
    color: var(--white);
}

/* ── Stats ── */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.stat-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 32px; text-align: center;
}
.stat-val {
    font-family: var(--font-heading); font-size: 2.5rem;
    font-weight: 700; color: var(--pink);
}
.stat-label { color: var(--gray-400); font-size: 0.85rem; margin-top: 4px; }

/* ── FAQ ── */
.faq-item {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); margin-bottom: 12px;
    overflow: hidden;
}
.faq-item summary {
    padding: 20px 24px; cursor: pointer;
    font-family: var(--font-heading); font-size: 1.05rem;
    color: var(--white); font-weight: 600;
    list-style: none; display: flex; align-items: center;
    justify-content: space-between;
}
.faq-item summary::after {
    content: '+'; font-size: 1.5rem; color: var(--pink);
    transition: var(--transition);
}
.faq-item[open] summary::after { content: '−'; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-content { padding: 0 24px 20px; color: var(--gray-400); line-height: 1.7; }

/* ── Prose (Blog/Page Content) ── */
.prose { color: var(--gray-300); line-height: 1.8; font-size: 1.05rem; }
.prose p { margin-bottom: 1.5em; }
.prose h2 { font-size: 1.8rem; margin: 2.5em 0 1em; color: var(--white); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.3rem; margin: 2em 0 0.8em; color: var(--white); }
.prose strong { color: var(--white); }
.prose a { color: var(--pink); border-bottom: 1px solid var(--pink-glow); }
.prose a:hover { border-bottom-color: var(--pink); }
.prose img { border-radius: var(--radius-lg); margin: 2em 0; }
.prose ul, .prose ol { margin: 1em 0; padding-left: 1.5em; }
.prose li { margin-bottom: 0.5em; }
.prose ul li::before { content: '♦'; color: var(--pink); margin-right: 8px; }

/* ── Contact ── */
.contact-item { padding: 16px 0; border-bottom: 1px solid var(--border); }
.contact-label { font-weight: 600; color: var(--pink); margin-bottom: 4px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; }

/* ── CTA Banner ── */
.cta-banner {
    background: linear-gradient(135deg, var(--pink-dark), var(--pink));
    border-radius: var(--radius-xl); padding: 48px 40px;
    text-align: center; margin: 48px 0;
}
.cta-banner h3 { color: var(--white); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 24px; }
.cta-banner .btn { background: var(--white); color: var(--pink); font-weight: 700; }
.cta-banner .btn:hover { background: var(--black); color: var(--white); }

/* ── Footer ── */
.site-footer {
    background: var(--black); border-top: 3px solid var(--pink);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px; margin-bottom: 40px;
}
.footer-col h4 {
    font-family: var(--font-heading); font-size: 1rem;
    color: var(--white); text-transform: uppercase;
    margin-bottom: 20px; letter-spacing: 0.05em;
    padding-bottom: 12px; border-bottom: 2px solid var(--pink);
    display: inline-block;
}
.footer-col a {
    display: block; padding: 6px 0; color: var(--gray-400);
    font-size: 0.9rem; transition: var(--transition);
}
.footer-col a:hover { color: var(--pink); padding-left: 6px; }
.footer-bottom {
    border-top: 1px solid var(--border); padding: 20px 0;
    text-align: center; color: var(--gray-500); font-size: 0.8rem;
}

/* ── Scroll to Top ── */
.scroll-top {
    position: fixed; bottom: 24px; right: 24px;
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--pink); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; cursor: pointer; border: none;
    box-shadow: var(--shadow-pink); transition: var(--transition);
    opacity: 0; visibility: hidden; z-index: 999;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--pink-light); transform: translateY(-3px); }

/* ── Empty State ── */
.empty-state {
    text-align: center; padding: 60px 20px;
    color: var(--gray-500);
}

/* ── Page Hero (sub pages) ── */
.page-hero {
    background: var(--black); padding: 60px 0;
    border-bottom: 3px solid var(--pink);
    text-align: center;
}
.page-hero .script-text { font-size: 1.3rem; }
.page-hero h1 { margin-top: 8px; }

/* ── 404 ── */
.page-404 {
    display: flex; align-items: center; justify-content: center;
    min-height: 60vh; text-align: center;
}
.page-404 h1 { font-size: 6rem; color: var(--pink); }
.page-404 p { color: var(--gray-400); margin: 16px 0 32px; font-size: 1.2rem; }

/* ── Carousel / Gallery ── */
.gallery-wrap {
    border-radius: var(--radius-xl); overflow: hidden;
    border: 1px solid var(--border); margin-bottom: 32px;
}

/* ── Info Bar (İlan Detay) ── */
.info-bar {
    display: flex; flex-wrap: wrap; gap: 24px;
    padding: 20px 0; margin-top: 24px;
    border-top: 1px solid var(--border);
    color: var(--gray-400); font-size: 0.85rem;
}

/* ── Utility Classes ── */
.text-center { text-align: center; }
.text-pink { color: var(--pink); }
.text-white { color: var(--white); }
.bg-black { background: var(--black); }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mt-80 { margin-top: 80px; }
.py-80 { padding-top: 80px; padding-bottom: 80px; }

/* ── Responsive ── */
@media (max-width: 768px) {
    .nav-bar { display: none; }
    .hamburger { display: flex; }
    .hero { padding: 60px 0 50px; }
    .section { padding: 50px 0; }
    .card-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .cta-banner { padding: 32px 24px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .ilan-card .card-img { aspect-ratio: 1/1; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .card-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
}

/* ── Animations ── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.6s ease forwards; }

/* ── Skeleton Loading ── */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
.skeleton {
    background: linear-gradient(90deg, var(--bg-card) 25%, var(--border) 50%, var(--bg-card) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius);
}

/* ── Pink Scrollbar ── */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--pink); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--pink-light); }
html { scrollbar-color: var(--pink) var(--bg-dark); scrollbar-width: thin; }

/* ── Contact Form ── */
.contact-form {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-xl); padding: 40px;
}
.contact-form .form-group { margin-bottom: 20px; }
.contact-form label {
    display: block; font-size: 0.8rem; font-weight: 600;
    color: var(--pink); margin-bottom: 6px;
    text-transform: uppercase; letter-spacing: 0.05em;
}
.contact-form input, .contact-form textarea {
    width: 100%; padding: 14px 16px;
    background: var(--bg-dark); border: 1px solid var(--border);
    border-radius: var(--radius); color: var(--white);
    font-size: 0.95rem; font-family: var(--font-body);
    transition: var(--transition);
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none; border-color: var(--pink);
    box-shadow: 0 0 0 3px var(--pink-glow);
}
.contact-form textarea { resize: vertical; min-height: 150px; }
.contact-two-col {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
}
@media (max-width: 768px) {
    .contact-two-col { grid-template-columns: 1fr; }
}