/* =============================================
   NORDIC-HOOKUP.COM — Premium Dark Design
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;1,400&display=swap');

:root {
  --red: #E63946;
  --red-light: #FF6B6B;
  --red-dark: #C1121F;
  --bg: #0D0D0D;
  --bg2: #141414;
  --bg3: #1A1A1A;
  --bg4: #222222;
  --border: rgba(255,255,255,0.08);
  --text: #F0F0F0;
  --text-muted: #888;
  --text-dim: #555;
  --gold: #F4A261;
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
  --space-2xl: 64px;
  --space-3xl: 96px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 999px;
  --font-body: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-red: 0 4px 24px rgba(230,57,70,0.3);
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 6vw, 4rem); letter-spacing: -1px; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); letter-spacing: -0.5px; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; }
p { color: var(--text-muted); line-height: 1.7; }
a { color: var(--red-light); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--text); }

.display-font { font-family: var(--font-display); }
.text-red { color: var(--red); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--space-lg); }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 var(--space-lg); }
.section { padding: var(--space-3xl) 0; }
.section-sm { padding: var(--space-2xl) 0; }

main { min-height: 80vh; padding-top: 64px; }

/* ── NAVIGATION ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(13,13,13,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: 64px;
  display: flex; align-items: center;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 var(--space-lg);
}
.nav-logo {
  font-size: 1.4rem; font-weight: 900;
  background: linear-gradient(135deg, var(--red), var(--red-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; letter-spacing: -1px;
}
.nav-logo span { font-style: italic; font-family: var(--font-display); font-weight: 400; }
.nav-links { display: flex; gap: var(--space-xl); align-items: center; }
.nav-links a { color: var(--text-muted); font-size: 0.95rem; font-weight: 500; transition: var(--transition); }
.nav-links a:hover { color: var(--text); }
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; z-index: 1001; }
.nav-burger span { width: 24px; height: 2px; background: var(--text); display: block; transition: var(--transition); border-radius: 2px; }
.nav-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── NAV DROPDOWN ── */
.nav-dropdown { position: relative; }
.nav-more {
  color: var(--text-muted) !important;
  font-size: 0.95rem; font-weight: 500;
  cursor: pointer; user-select: none;
  display: flex; align-items: center; gap: 4px;
}
.nav-more:hover { color: var(--text) !important; }
.nav-dropdown-menu {
  opacity: 0; visibility: hidden; transform: translateY(10px) translateX(-50%);
  position: absolute; top: 100%; left: 50%;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 8px;
  min-width: 180px; margin-top: 15px;
  box-shadow: var(--shadow);
  z-index: 100;
  transition: 0.2s ease;
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0) translateX(-50%); }
.nav-dropdown-menu a {
  display: block; padding: 10px 14px;
  color: var(--text-muted) !important; font-size: 0.875rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-dropdown-menu a:hover { background: var(--bg4); color: var(--text) !important; }

/* ── HERO ── */
.hero {
  min-height: 80vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: var(--space-3xl) 0;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #0D0D0D 40%, #1a0a0a 100%);
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.3; display: block; filter: grayscale(0.5);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(circle at 20% 50%, rgba(13,13,13,1) 0%, rgba(13,13,13,0.4) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 750px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: var(--space-sm);
  background: rgba(230,57,70,0.15); border: 1px solid rgba(230,57,70,0.3);
  color: var(--red-light); padding: 8px 18px; border-radius: var(--radius-full);
  font-size: 0.85rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: var(--space-xl);
}
.hero h1 { margin-bottom: var(--space-lg); line-height: 1.1; }
.hero h1 em { font-style: normal; color: var(--red-light); font-family: var(--font-display); font-weight: 400; }
.hero p { font-size: 1.25rem; max-width: 580px; margin-bottom: var(--space-2xl); color: #ccc; }
.hero-actions { display: flex; gap: var(--space-md); flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: var(--space-3xl); margin-top: var(--space-3xl);
  padding-top: var(--space-2xl); border-top: 1px solid var(--border);
}
.stat-item { text-align: left; }
.stat-number { font-size: 2rem; font-weight: 800; color: var(--text); display: block; line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: var(--space-sm);
  padding: 16px 32px; border-radius: var(--radius-full);
  font-weight: 700; font-size: 1rem; cursor: pointer;
  transition: var(--transition); border: none; text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white !important; box-shadow: var(--shadow-red);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(230,57,70,0.5); color: white !important; }
.btn-outline {
  background: transparent; color: var(--text) !important;
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--red); color: var(--red-light) !important; background: rgba(255,255,255,0.02); }
.btn-ghost { background: rgba(255,255,255,0.05); color: var(--text-muted) !important; }
.btn-ghost:hover { background: rgba(255,255,255,0.1); color: var(--text) !important; }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* ── CARDS ── */
.card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition); height: 100%;
}
.card:hover { border-color: rgba(230,57,70,0.3); transform: translateY(-4px); box-shadow: var(--shadow); }
.card-body { padding: var(--space-xl); }
.card-img { width: 100%; height: 200px; object-fit: cover; border-bottom: 1px solid var(--border); }

/* ── COUNTRY CARDS ── */
.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
}
.country-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--space-2xl);
  cursor: pointer; transition: var(--transition);
  display: flex; flex-direction: column; gap: var(--space-md);
  text-decoration: none; color: var(--text);
  position: relative; overflow: hidden;
}
.country-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at top right, rgba(230,57,70,0.1), transparent);
  opacity: 0; transition: var(--transition);
}
.country-card:hover::before { opacity: 1; }
.country-card:hover { border-color: rgba(230,57,70,0.4); transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.5); color: var(--text) !important; }
.country-flag { font-size: 3.5rem; line-height: 1; margin-bottom: 10px; }
.country-name { font-size: 1.5rem; font-weight: 800; }
.country-meta { font-size: 0.9rem; color: var(--text-muted); }
.country-cities {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(230,57,70,0.15); color: var(--red-light);
  padding: 6px 14px; border-radius: var(--radius-full);
  font-size: 0.8rem; font-weight: 700; width: fit-content; margin-top: 10px;
}

/* ── CITY LIST ── */
.city-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-sm);
}
.city-link {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 14px 20px;
  color: var(--text-muted); font-size: 0.95rem; font-weight: 500;
  transition: var(--transition); display: block;
}
.city-link:hover { border-color: var(--red); color: var(--text) !important; background: rgba(230,57,70,0.1); }

/* ── SECTION HEADERS ── */
.section-header { margin-bottom: var(--space-3xl); }
.section-tag {
  display: inline-block;
  background: rgba(230,57,70,0.1); color: var(--red-light);
  padding: 5px 16px; border-radius: var(--radius-full);
  font-size: 0.8rem; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: var(--space-lg);
}
.section-header h2 { margin-bottom: var(--space-md); }
.section-header p { max-width: 650px; font-size: 1.1rem; }

/* ── FEATURES GRID ── */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-xl);
}
.feature-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--space-2xl);
  transition: var(--transition);
}
.feature-card:hover { background: var(--bg4); border-color: rgba(230,57,70,0.2); }
.feature-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(230,57,70,0.2), rgba(230,57,70,0.05));
  border: 1px solid rgba(230,57,70,0.2);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-xl); font-size: 1.8rem; color: var(--red-light);
}
.feature-card h3 { margin-bottom: var(--space-md); font-size: 1.4rem; }

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex; align-items: center; gap: var(--space-sm);
  padding: var(--space-xl) 0;
  font-size: 0.9rem; color: var(--text-dim);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); font-weight: 500; }
.breadcrumb a:hover { color: var(--red-light); }
.breadcrumb-sep { color: var(--text-dim); }

/* ── PAGE HERO ── */
.page-hero {
  padding: 80px 0 var(--space-3xl);
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg2) 100%);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: -1px; left: 0; right: 0;
  height: 1.5px; background: linear-gradient(to right, transparent, var(--red), transparent);
}
.page-hero-badge {
  display: inline-flex; align-items: center; gap: var(--space-sm);
  background: rgba(230,57,70,0.1); border: 1px solid rgba(230,57,70,0.2);
  color: var(--red-light); padding: 7px 18px; border-radius: var(--radius-full);
  font-size: 0.8rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: var(--space-lg);
}

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, #1a0505 0%, #0D0D0D 100%);
  border: 1px solid rgba(230,57,70,0.3);
  border-radius: var(--radius-2xl);
  padding: var(--space-3xl) var(--space-2xl);
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-section h2 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: var(--space-lg); }
.cta-section p { font-size: 1.2rem; max-width: 600px; margin: 0 auto var(--space-2xl); }

/* ── FOOTER ── */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: var(--space-3xl) 0 var(--space-xl);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr repeat(4, 1fr);
  gap: var(--space-2xl); margin-bottom: var(--space-3xl);
}
.footer-brand .footer-logo {
  font-size: 1.6rem; font-weight: 900;
  background: linear-gradient(135deg, var(--red), var(--red-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: var(--space-lg); display: block;
}
.footer-brand p { font-size: 0.95rem; max-width: 300px; margin-bottom: var(--space-xl); }
.footer-col h4 { font-size: 0.9rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; margin-bottom: var(--space-xl); color: var(--text); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: var(--space-md); }
.footer-col ul li a { color: var(--text-muted); font-size: 0.95rem; }
.footer-col ul li a:hover { color: var(--red-light); }
.footer-bottom {
  padding-top: var(--space-xl); border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: var(--space-lg);
}
.footer-bottom p { font-size: 0.85rem; }
.footer-disclaimer {
  font-size: 0.75rem; color: var(--text-dim);
  width: 100%; text-align: center;
  margin-top: var(--space-xl);
  padding-top: var(--space-lg); border-top: 1px solid var(--border);
  line-height: 1.6;
}

/* ── FAQ ── */
.faq-grid { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius-md);
  overflow: hidden; margin-bottom: var(--space-md);
  background: var(--bg3);
}
.faq-q {
  padding: var(--space-xl); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 700; font-size: 1.1rem;
}
.faq-q:hover { background: var(--bg4); }
.faq-a { padding: 0 var(--space-xl); max-height: 0; overflow: hidden; transition: all 0.3s ease; background: var(--bg2); }
.faq-a.open { padding: var(--space-xl); max-height: 500px; }

/* ── SCROLL REVEAL ── */
.reveal-on-scroll { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1); }
.reveal-on-scroll.revealed { opacity: 1; transform: translateY(0); }

/* ── MOBILE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .nav-links { gap: var(--space-lg); }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; flex-direction: column; position: fixed;
    top: 64px; left: 0; right: 0; bottom: 0;
    background: var(--bg); padding: var(--space-2xl);
    gap: var(--space-xl); z-index: 1000;
    overflow-y: auto; text-align: center;
  }
  .nav-links.open { display: flex; }
  .nav-burger { display: flex; }
  .nav-dropdown-menu {
    position: static; transform: none; opacity: 1; visibility: visible;
    background: var(--bg2); border: none; box-shadow: none;
    margin-top: 10px; display: none;
  }
  .hero-stats { flex-wrap: wrap; gap: var(--space-xl); justify-content: center; }
  .stat-item { text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: var(--space-2xl) 0; }
  .cta-section { padding: var(--space-2xl) var(--space-lg); }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand p { margin: 0 auto var(--space-xl); }
  .city-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}