/* ErotikMaps - Luxury Travel & Entertainment Guide */
:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-card: #1a1a25;
  --text-primary: #f0ece4;
  --text-secondary: #a8a49a;
  --text-muted: #6b6760;
  --accent: #c8a44e;
  --accent-hover: #d4b45e;
  --accent-dim: rgba(200, 164, 78, 0.12);
  --border: #252530;
  --radius: 8px;
  --radius-lg: 14px;
  --max-width: 1140px;
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; line-height: 1.3; }
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; font-family: var(--font-body); font-weight: 500; }
a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-hover); }
p { margin-bottom: 1.2rem; color: var(--text-secondary); }

/* ---- Layout ---- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 500;
}

/* ---- Header ---- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,10,15,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: var(--text-primary); text-decoration: none; letter-spacing: -0.01em; }
.logo span { color: var(--accent); }
.main-nav { display: flex; gap: 28px; list-style: none; }
.main-nav a { color: var(--text-secondary); font-size: 0.9rem; font-weight: 400; text-decoration: none; transition: color 0.2s; }
.main-nav a:hover { color: var(--text-primary); }
.mobile-nav-toggle { display: none; background: none; border: none; color: var(--text-primary); font-size: 1.4rem; cursor: pointer; }

/* ---- Hero ---- */
.hero {
  min-height: 90vh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0f 0%, #111122 30%, #0d0d1a 60%, #0a0a0f 100%);
  margin-top: 0;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 35% 50%, rgba(200,164,78,0.07) 0%, transparent 60%),
              radial-gradient(ellipse at 75% 30%, rgba(200,164,78,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; max-width: 780px; }
.hero h1 { margin-bottom: 20px; }
.hero .lead { font-size: 1.15rem; color: var(--text-secondary); margin-bottom: 32px; max-width: 600px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-block; padding: 12px 28px; border-radius: 6px;
  font-weight: 500; font-size: 0.95rem; text-decoration: none;
  transition: all 0.25s; cursor: pointer; font-family: var(--font-body);
}
.btn-primary {
  background: var(--accent); color: #0a0a0f; border: none;
}
.btn-primary:hover { background: var(--accent-hover); color: #0a0a0f; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(200,164,78,0.2); }
.btn-outline {
  background: transparent; color: var(--text-primary); border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }

/* ---- City Cards ---- */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.city-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.city-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.city-card-img {
  height: 200px;
  background: var(--bg-secondary);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: var(--border);
  position: relative; overflow: hidden;
}
.city-card-img img { width: 100%; height: 100%; object-fit: cover; }
.city-card-body { padding: 24px; }
.city-card-body h3 { margin-bottom: 8px; font-family: var(--font-heading); }
.city-card-body p { font-size: 0.9rem; margin-bottom: 16px; }
.city-card-link { font-size: 0.85rem; font-weight: 500; display: inline-flex; align-items: center; gap: 6px; }

/* ---- Blog Cards ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 0.25s, border-color 0.25s;
}
.blog-card:hover { transform: translateY(-3px); border-color: var(--accent); }
.blog-card .blog-date { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 10px; }
.blog-card h3 { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 10px; }
.blog-card p { font-size: 0.9rem; }

/* ---- Features ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 40px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
}
.feature-icon { font-size: 2.2rem; margin-bottom: 16px; display: block; }
.feature-card h3 { font-family: var(--font-heading); font-size: 1.15rem; margin-bottom: 10px; }

/* ---- About Section ---- */
.about-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-content { max-width: 780px; margin: 0 auto; text-align: center; }
.about-content h2 { margin-bottom: 20px; }

/* ---- Content page ---- */
.content-page { padding-top: 110px; padding-bottom: 60px; }
.content-page .container { max-width: 780px; }
.content-page h1 { margin-bottom: 24px; }
.content-page h2 { margin-top: 40px; margin-bottom: 16px; font-size: 1.6rem; }
.content-page h3 { margin-top: 28px; margin-bottom: 12px; }
.content-page ul, .content-page ol { margin-bottom: 20px; padding-left: 24px; color: var(--text-secondary); }
.content-page li { margin-bottom: 8px; }
.content-page .breadcrumb { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px; }
.content-page .breadcrumb a { color: var(--text-muted); }
.content-page .breadcrumb a:hover { color: var(--accent); }

/* ---- Footer ---- */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 50px 0 30px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
.footer-brand .logo { display: block; margin-bottom: 12px; }
.footer-brand p { font-size: 0.85rem; margin-bottom: 0; }
.footer-links h4 { font-family: var(--font-body); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; color: var(--text-primary); }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: var(--text-muted); font-size: 0.85rem; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; }
.footer-disclaimer { margin-top: 16px; font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg-secondary); flex-direction: column; padding: 20px; gap: 16px; border-bottom: 1px solid var(--border); }
  .main-nav.open { display: flex; }
  .mobile-nav-toggle { display: block; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .section { padding: 50px 0; }
}

@media (max-width: 480px) {
  .hero { min-height: 70vh; }
  .hero-cta { flex-direction: column; }
  .city-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}

/* ---- Animations ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate { animation: fadeUp 0.6s ease-out both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
