/* Lapland Adventure Guide — Style Sheet */
:root {
  --primary: #1B2838;
  --primary-dark: #0F1B2D;
  --secondary: #00B894;
  --accent: #D4893E;
  --gold: #C4953C;
  --bg: #F5F7FA;
  --surface: #FFFFFF;
  --text: #1F2937;
  --text-muted: #6B7280;
  --border: #E5E7EB;
  --success: #059669;
  --heading: 'Playfair Display', Georgia, serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); color: var(--text); background: var(--bg); line-height: 1.6; font-size: 16px; }
body.no-scroll { overflow: hidden; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }

/* Navigation */
.hero { min-height: 420px; display: flex; flex-direction: column; position: relative; color: white; }
nav { padding: 1rem 0; position: relative; z-index: 10; }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--heading); font-size: 1.3rem; color: white; }
.logo:hover { text-decoration: none; opacity: 0.9; }
.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover, .nav-links .nav-active { color: white; text-decoration: none; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.hero-content { max-width: 1200px; margin: auto; padding: 2rem 1.5rem; text-align: center; }
.hero-tagline { display: inline-block; background: rgba(255,255,255,0.15); padding: 0.4rem 1rem; border-radius: 20px; font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1rem; }
.hero-content h1 { font-family: var(--heading); font-size: 2.5rem; line-height: 1.15; margin-bottom: 1rem; }
.hero-content p { font-size: 1.1rem; opacity: 0.9; max-width: 600px; margin: 0 auto 1.5rem; }
.hero-cta { display: inline-block; background: var(--accent); color: white; padding: 0.85rem 2.5rem; border-radius: 8px; font-weight: 600; font-size: 1rem; transition: background 0.2s; }
.hero-cta:hover { background: #BD7932; text-decoration: none; }

/* Trust Badges */
.trust-badges { max-width: 1200px; margin: -1rem auto 2rem; padding: 0 1.5rem; display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; position: relative; z-index: 5; }
.badge { background: var(--surface); border: 1px solid var(--border); padding: 0.5rem 1rem; border-radius: 20px; font-size: 0.8rem; color: var(--text-muted); }

/* Main Content */
main { max-width: 1200px; margin: 0 auto; padding: 2rem 1.5rem; }
h2 { font-family: var(--heading); font-size: 1.8rem; margin-bottom: 1rem; color: var(--text); }
h3 { font-family: var(--heading); font-size: 1.3rem; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; }

/* Intro section */
.intro { text-align: center; max-width: 800px; margin: 0 auto 3rem; }
.intro p { font-size: 1.05rem; color: var(--text-muted); }

/* Category Grid */
.category-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin: 2rem 0; }
.category-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem; transition: box-shadow 0.2s; }
.category-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.category-card h3 { font-family: var(--body); font-weight: 600; }
.category-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0; }
.category-card .cat-count { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.5rem; }

/* Product Cards */
.product-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; margin-bottom: 1.5rem; display: flex; gap: 1rem; }
.product-card img { width: 200px; min-height: 150px; object-fit: cover; flex-shrink: 0; }
.product-card-body { padding: 1.25rem; flex: 1; }
.product-card-body h3 { font-family: var(--body); font-weight: 600; font-size: 1.1rem; margin-bottom: 0.3rem; }
.rating { margin-bottom: 0.5rem; font-size: 0.9rem; }
.stars { color: var(--gold); }
.review-count { color: var(--text-muted); font-size: 0.85rem; }
.card-specs { list-style: none; margin-bottom: 0.75rem; font-size: 0.9rem; color: var(--text-muted); }
.card-specs li { margin-bottom: 0.2rem; }
.card-description { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1rem; }
.cta-button { display: inline-block; background: var(--accent); color: white; padding: 0.6rem 1.5rem; border-radius: 8px; font-weight: 600; font-size: 0.9rem; transition: background 0.2s, transform 0.2s, box-shadow 0.2s; }
.cta-button:hover { background: #BD7932; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); text-decoration: none; }

/* Author Block */
.author-block { display: flex; gap: 1rem; align-items: flex-start; margin: 2rem 0; padding: 1.5rem; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; }
.author-avatar, img.author-avatar { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid #d4c8b8; }
.author-info h4 { font-family: var(--heading); margin-bottom: 0.2rem; }
.author-title { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.author-info p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0; }

/* Footer */
footer { background: var(--text); color: rgba(255,255,255,0.8); padding: 3rem 1.5rem 1.5rem; margin-top: 3rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer-col h4 { font-family: var(--heading); color: white; margin-bottom: 0.75rem; }
.footer-col a { display: block; color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 0.4rem; }
.footer-col a:hover { color: white; }
.footer-col p { font-size: 0.85rem; }
.affiliate-disclosure { max-width: 1200px; margin: 0 auto; padding: 1rem; background: rgba(255,255,255,0.08); border-radius: 8px; font-size: 0.8rem; text-align: center; }
.affiliate-disclosure a { color: var(--gold); }
.copyright { text-align: center; padding-top: 1.5rem; font-size: 0.8rem; opacity: 0.6; }

/* Tour Review Cards */
.tour-reviews { margin: 2rem 0; }
.tour-review-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem; margin-bottom: 1.5rem; }
.tour-review-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.5rem; flex-wrap: wrap; gap: 0.5rem; }
.tour-review-header h3 { font-family: var(--body); font-weight: 600; font-size: 1.15rem; margin-bottom: 0; }
.tour-review-badge { background: var(--primary); color: white; padding: 0.2rem 0.7rem; border-radius: 12px; font-size: 0.75rem; font-weight: 500; white-space: nowrap; }
.urgency-badge { background: #DC2626; color: white; padding: 0.2rem 0.7rem; border-radius: 12px; font-size: 0.75rem; font-weight: 600; white-space: nowrap; }
.tour-review-meta { display: flex; gap: 1rem; margin-bottom: 1rem; font-size: 0.85rem; color: var(--text-muted); flex-wrap: wrap; }
.tour-rating { color: var(--gold); font-weight: 600; }
.tour-price { font-weight: 600; color: var(--text); }
.tour-review-text p { font-size: 0.95rem; line-height: 1.7; color: var(--text); }
.tour-review-card .cta-button { margin-top: 0.5rem; }

/* Winner Box */
.winner-box { background: linear-gradient(135deg, #FFF8E7 0%, #FFF3D6 100%); border: 2px solid var(--gold); border-radius: 12px; padding: 1.25rem 1.5rem; margin: 1.5rem 0; display: flex; align-items: flex-start; gap: 0.75rem; }
.winner-badge { background: var(--gold); color: white; padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.8rem; font-weight: 700; white-space: nowrap; }
.winner-box p { margin-bottom: 0; font-size: 0.95rem; color: var(--text); flex: 1; }
.winner-box strong { color: var(--primary-dark); }

/* Mobile */
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(15,27,45,0.97); flex-direction: column; justify-content: center; gap: 2rem; z-index: 100; }
  .nav-links a { font-size: 1.3rem; }
  .hamburger { display: flex; z-index: 101; }
  .hero-content h1 { font-size: 1.8rem; }
  .hero { min-height: 350px; }
  .product-card { flex-direction: column; }
  .product-card img { width: 100%; height: 180px; }
  .category-grid { grid-template-columns: 1fr; }
  .trust-badges { margin-top: 0; }
}
@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.5rem; }
  .hero { min-height: 300px; }
}

/* Category Cards with Images */
.category-card { 
  background-size: cover; 
  background-position: center; 
  color: white; 
  min-height: 200px; 
  display: flex; 
  flex-direction: column; 
  justify-content: flex-end; 
  padding: 1.5rem; 
  border: none; 
  position: relative; 
  overflow: hidden; 
}
.category-card h3 { 
  color: white; 
  font-family: var(--heading); 
  font-size: 1.4rem; 
  position: relative; 
  z-index: 1; 
}
.category-card p { 
  color: rgba(255,255,255,0.9); 
  font-size: 0.85rem; 
  position: relative; 
  z-index: 1; 
}
.category-card .cat-count { 
  color: rgba(255,255,255,0.7); 
  font-size: 0.78rem; 
  position: relative; 
  z-index: 1; 
}
.category-card:hover { 
  transform: scale(1.02); 
  box-shadow: 0 8px 24px rgba(0,0,0,0.15); 
}
/* Mobile tap targets — Google ranking signal (min 48px) */
.nav-links a,
.nav-categories a,
.nav-toggle,
.hero-cta,
.cta-button,
.cta-btn,
.product-card .cta-button,
footer a,
.badge {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
}


.last-updated { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.5rem; }

/* Comparison tables */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.comparison-table thead {
  background: var(--primary, #1B2838);
  color: white;
}
.comparison-table th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}
.comparison-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border, #d1d5db);
  vertical-align: top;
  line-height: 1.5;
}
.comparison-table tbody tr:last-child td {
  border-bottom: none;
}
.comparison-table tbody tr:hover {
  background: rgba(0,0,0,0.02);
}
.comparison-table td:first-child {
  font-weight: 600;
  white-space: nowrap;
}
@media (max-width: 700px) {
  .comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .comparison-table {
    font-size: 0.82rem;
  }
  .comparison-table th,
  .comparison-table td {
    padding: 0.6rem 0.7rem;
  }
}