
/* ── TRAVEL QUIZZES ── */


  

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: #0d0d0d;
  color: #f5f0e8;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── HERO LANDING ── */
.quiz-landing {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quiz-landing::before {
  content: '';
  position: absolute; inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(201,168,76,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(42,124,138,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.landing-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 1.2rem;
  animation: fadeUp 0.8s ease forwards;
}

.landing-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1.08;
  margin-bottom: 1.2rem;
  animation: fadeUp 0.9s ease 0.1s both;
}

.landing-title em { color: #c9a84c; font-style: italic; }

.landing-sub {
  color: rgba(245,240,232,0.6);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 3rem;
  animation: fadeUp 0.9s ease 0.2s both;
}

.quiz-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 720px;
  width: 100%;
  animation: fadeUp 0.9s ease 0.3s both;
}

.quiz-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.quiz-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c9a84c, transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.quiz-card:hover {
  background: rgba(201,168,76,0.06);
  border-color: rgba(201,168,76,0.45);
  transform: translateY(-3px);
}
.quiz-card:hover::before { opacity: 1; }

.card-emoji { font-size: 2.2rem; margin-bottom: 1rem; display: block; }

.card-label {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 0.6rem;
  display: block;
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 0.7rem;
  line-height: 1.2;
}

.card-desc {
  color: rgba(245,240,232,0.55);
  font-size: 0.85rem;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.card-meta {
  display: flex;
  gap: 1.2rem;
  font-size: 0.72rem;
  color: rgba(245,240,232,0.4);
  letter-spacing: 0.05em;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c9a84c;
}

.card-cta svg { width: 14px; height: 14px; stroke: currentColor; transition: transform 0.2s; }
.quiz-card:hover .card-cta svg { transform: translateX(4px); }

/* ── QUIZ WRAPPER ── */
.quiz-wrapper {
  display: none;
  min-height: 100vh;
  padding: 0;
}
.quiz-wrapper.active { display: block; }

/* ── QUIZ HEADER ── */
.quiz-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.quiz-back {
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 0.5rem;
  color: rgba(245,240,232,0.5);
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-family: 'Jost', sans-serif;
  transition: color 0.2s;
}
.quiz-back:hover { color: #c9a84c; }
.quiz-back svg { width: 14px; stroke: currentColor; }

.quiz-progress-wrap {
  flex: 1; max-width: 400px;
}

.quiz-progress-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.35);
  margin-bottom: 0.4rem;
  display: flex;
  justify-content: space-between;
}

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

.quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #c9a84c, #e8c96a);
  border-radius: 2px;
  transition: width 0.5s ease;
  width: 0%;
}

.quiz-title-small {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: rgba(245,240,232,0.7);
  white-space: nowrap;
}

/* ── QUESTION SCREEN ── */
.question-screen {
  display: none;
  min-height: calc(100vh - 65px);
  padding: 4rem 1.5rem;
  max-width: 780px;
  margin: 0 auto;
}
.question-screen.active { display: block; }

.q-number {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.6);
  margin-bottom: 1rem;
  display: block;
}

.q-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  line-height: 1.25;
  margin-bottom: 0.6rem;
}

.q-sub {
  color: rgba(245,240,232,0.45);
  font-size: 0.88rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

@media (max-width: 580px) {
  .options-grid { grid-template-columns: 1fr; }
}

.option-btn {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 1.2rem 1.4rem;
  cursor: pointer;
  text-align: left;
  transition: all 0.22s;
  position: relative;
  overflow: hidden;
  font-family: 'Jost', sans-serif;
  color: #f5f0e8;
}

.option-btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(201,168,76,0.07);
  opacity: 0;
  transition: opacity 0.2s;
}

.option-btn:hover {
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.option-btn:hover::after { opacity: 1; }

.option-btn.selected {
  border-color: #c9a84c;
  background: rgba(201,168,76,0.1);
}
.option-btn.selected::after { opacity: 1; }

.option-btn.wrong {
  border-color: rgba(220,80,80,0.4);
  background: rgba(220,80,80,0.05);
  opacity: 0.5;
}

.option-emoji {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 0.5rem;
}

.option-label {
  font-size: 0.92rem;
  font-weight: 500;
  display: block;
  margin-bottom: 0.2rem;
}

.option-desc {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.5);
  font-weight: 300;
  line-height: 1.45;
}

/* ── RESULT SCREEN ── */
.result-screen {
  display: none;
  min-height: calc(100vh - 65px);
  padding: 4rem 1.5rem;
  max-width: 860px;
  margin: 0 auto;
  animation: fadeUp 0.7s ease forwards;
}
.result-screen.active { display: block; }

.result-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 1rem;
  display: block;
}

.result-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 0.8rem;
}

.result-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: #c9a84c;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.result-desc {
  color: rgba(245,240,232,0.72);
  font-size: 0.97rem;
  line-height: 1.88;
  font-weight: 300;
  max-width: 640px;
  margin-bottom: 2rem;
}

.result-traits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.trait-tag {
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 2px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(245,240,232,0.7);
  text-transform: uppercase;
}

.result-countries {
  margin-bottom: 3rem;
}

.result-countries h3 {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 1.2rem;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
}

.country-suggestions {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.85rem;
}

.country-suggestion {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 1.1rem 1.2rem;
  text-decoration: none;
  color: #f5f0e8;
  transition: all 0.25s;
  display: block;
}

.country-suggestion:hover {
  border-color: rgba(201,168,76,0.4);
  background: rgba(201,168,76,0.06);
  transform: translateY(-2px);
}

.cs-emoji { font-size: 1.2rem; display: block; margin-bottom: 0.4rem; }
.cs-name { font-weight: 500; font-size: 0.9rem; display: block; margin-bottom: 0.2rem; }
.cs-why { font-size: 0.75rem; color: rgba(245,240,232,0.45); font-weight: 300; line-height: 1.4; }

.result-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: #c9a84c;
  color: #0d0d0d;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  cursor: pointer;
  border: none;
  font-family: 'Jost', sans-serif;
  transition: all 0.25s;
}
.btn-primary:hover { background: #e8c96a; transform: translateY(-1px); }

.btn-secondary {
  display: inline-block;
  padding: 0.85rem 2rem;
  border: 1px solid rgba(245,240,232,0.25);
  color: rgba(245,240,232,0.7);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  cursor: pointer;
  background: none;
  font-family: 'Jost', sans-serif;
  transition: all 0.25s;
}
.btn-secondary:hover { border-color: #c9a84c; color: #c9a84c; }

/* ── DECORATIVE LINE ── */
.result-divider {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, #c9a84c, transparent);
  margin: 2rem 0;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.question-screen.active {
  animation: fadeUp 0.4s ease forwards;
}

/* ── SHARE RESULT ── */
.share-line {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.35);
  margin-top: 1.5rem;
  font-style: italic;
}


/* ── QUIZ HERO STRIP ── */
.quiz-hero-strip { height: 320px !important; margin-top: 0 !important; }

/* ── QUIZ PAGE INTRO (landing section below strip) ── */
.quiz-page-intro {
  padding-top: 2rem;
  padding-bottom: 0;
  text-align: center;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.quiz-page-intro .landing-eyebrow,
.quiz-page-intro .landing-title,
.quiz-page-intro .landing-sub { animation: none; }
.quiz-page-intro .landing-title { font-size: clamp(2rem, 5vw, 3.8rem); }
.quiz-page-intro .landing-sub  { margin-bottom: 0; }

/* ── QUIZ NAV DROPDOWNS ── */
.dropdown-quiz { display: block; min-width: 280px; max-width: 340px; }
.quiz-drop-label {
  font-family: 'Playfair Display', serif;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: #c9a84c;
  padding: .5rem .7rem;
  border-bottom: 1px solid rgba(201,168,76,.2);
  display: block; margin-bottom: .4rem;
}
.dropdown-quiz a {
  display: block; padding: .65rem .8rem;
  color: rgba(245,240,232,.8); text-decoration: none;
  font-size: .82rem; border-radius: 3px;
  transition: color .2s, background .2s;
}
.dropdown-quiz a:hover,
.dropdown-quiz a.current { color: #c9a84c; background: rgba(201,168,76,.08); }

.dropdown-blog { display: block; min-width: 300px; max-width: 360px; }
.blog-drop-label {
  font-family: 'Playfair Display', serif;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: #c9a84c;
  padding: .5rem .7rem;
  border-bottom: 1px solid rgba(201,168,76,.2);
  display: block; margin-bottom: .4rem;
}
.dropdown-blog a {
  display: block; padding: .6rem .8rem;
  color: rgba(245,240,232,.8); text-decoration: none;
  font-size: .82rem; border-radius: 3px;
  transition: color .2s, background .2s;
}
.dropdown-blog a:hover { color: #c9a84c; background: rgba(201,168,76,.08); }

/* ── COUNTRY PHOTO CARDS (result pages) ── */
.cs-photo {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem 1.1rem !important;
  overflow: hidden;
  border: none !important;
  box-shadow: none !important;
  transition: background-image 0s;
}
.cs-photo::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.25) 60%, transparent 100%);
}
.cs-photo .cs-name,
.cs-photo .cs-why { position: relative; z-index: 1; }
.cs-photo .cs-name {
  font-weight: 600; font-size: 1rem;
  color: #fff; margin-bottom: .3rem; display: block;
}
.cs-photo .cs-why {
  font-size: .75rem; color: rgba(255,255,255,0.75);
  font-weight: 300; line-height: 1.4; display: block;
}

/* ── BACK BUTTONS (shared style, prefixed per quiz) ── */
.d-back-btn, .t-back-btn {
  background: none;
  border: 1px solid #c9a84c;
  border-radius: 3px;
  padding: .6rem 1.4rem;
  color: #c9a84c;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  transition: all .2s;
  display: none;
  margin-top: 2rem;
}
.d-back-btn:hover, .t-back-btn:hover { background: #c9a84c; color: #0d0d0d; }

/* ── GYG SECTIONS ── */
.t-gyg-section, .kq-gyg-section, .dq-gyg-section { margin: 2.5rem 0; }
.t-gyg-label, .kq-gyg-label, .dq-gyg-label {
  font-size: .65rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #c9a84c;
  display: block;
  margin-bottom: 1rem;
  font-family: 'Jost', sans-serif;
}


