/* =====================================================
   GHOST JUNKIE TOURS — MASTER STYLESHEET (CLEAN + FIXED)
   ===================================================== */

/* ---------- ROOT VARIABLES ---------- */
:root {
  --bg-main: #0b0b0a;
  --bg-section: #11100f;
  --text-main: #d9c289;
  --text-muted: #b9a782;
  --accent-gold: #d9c289;
  --accent-gold-soft: #cfa86a;
  --border-gold: #b49b63;
}

/* ---------- RESET ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ---------- BASE ---------- */
body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: "Crimson Text", serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-wrapper {
  min-height: 100vh;
}

/* ---------- HEADER ---------- */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.brand {
  font-family: "Cinzel", serif;
  font-size: 26px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--accent-gold);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  font-family: "Cinzel", serif;
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

nav a {
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

nav a:hover {
  opacity: 1;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 80vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/hero-ghostjunkie.jpg") center center / cover no-repeat;
  opacity: 0.95;
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 35% 40%,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.85) 70%
  );
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 120px 40px 40px;
}

.hero-title {
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: clamp(46px, 6vw, 64px);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-subtitle {
  max-width: 520px;
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  font-family: "Cinzel", serif;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid var(--border-gold);
  background: transparent;
  color: var(--accent-gold);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.1s ease;
}

.btn:hover {
  background: var(--accent-gold-soft);
  color: #11100f;
  transform: translateY(-1px);
}

.hero-buttons {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- MAIN / SECTIONS ---------- */
main {
  background: radial-gradient(circle at top, #17140f 0%, #0b0b0a 55%);
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 40px;
  border-top: 1px solid rgba(212, 188, 130, 0.25);
}

/* ---------- CITY GRID ---------- */
.city-section-title {
  font-family: "Cinzel", serif;
  font-size: 18px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--text-muted);
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.city-card {
  background: var(--bg-section);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(212, 188, 130, 0.18);
  display: flex;
  flex-direction: column;
}

.city-card-img {
  position: relative;
  padding-top: 120%;
  overflow: hidden;
}

.city-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.city-card-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.city-name {
  font-family: "Cinzel", serif;
  font-size: 18px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.city-location {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.card-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ---------- WHY SECTION ---------- */
.why-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-title {
  font-family: "Cinzel", serif;
  font-size: 20px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.why-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  font-size: 15px;
  color: var(--text-muted);
}

.why-columns ul {
  list-style: none;
}

.why-columns li::before {
  content: "• ";
  color: var(--accent-gold-soft);
}

.quote-row {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(212, 188, 130, 0.25);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  font-style: italic;
  font-size: 14px;
  color: var(--text-muted);
}

/* ---------- CTA ---------- */
.cta-section {
  border-top: 1px solid rgba(212, 188, 130, 0.25);
  background: var(--bg-main);
}

.cta-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 40px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.cta-title {
  font-family: "Cinzel", serif;
  font-size: 20px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ---------- CITY HERO VARIANTS (for city pages) ---------- */
.hero--mcdonough::before { background: url("../images/hero-mcdonough.jpg") center/cover no-repeat; opacity: 0.95; }
.hero--chickamauga::before { background: url("../images/hero-chickamauga.jpg") center/cover no-repeat; opacity: 0.95; }
.hero--thunderbolt::before { background: url("../images/hero-thunderbolt.jpg") center/cover no-repeat; opacity: 0.95; }
.hero--conyers::before { background: url("../images/hero-conyers.jpg") center/cover no-repeat; opacity: 0.95; }
.hero--tybee-island::before { background: url("../images/hero-tybee-island.jpg") center/cover no-repeat; opacity: 0.95; }
.hero--douglas::before { background: url("../images/hero-douglas.jpg") center/cover no-repeat; opacity: 0.95; }
.hero--dahlonega::before { background: url("../images/hero-dahlonega.jpg") center/cover no-repeat; opacity: 0.95; }
.hero--new-orleans::before { background: url("../images/hero-new-orleans.jpg") center/cover no-repeat; opacity: 0.95; }
.hero--charleston::before { background: url("../images/hero-charleston.jpg") center/cover no-repeat; opacity: 0.95; }
.hero--saint-augustine::before { background: url("../images/hero-saint-augustine.jpg") center/cover no-repeat; opacity: 0.95; }
.hero--salem::before { background: url("../images/hero-salem.jpg") center/cover no-repeat; opacity: 0.95; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  header {
    padding: 18px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  nav ul {
    gap: 18px;
    font-size: 13px;
    flex-wrap: wrap;
  }

  .hero-inner {
    padding: 110px 20px 40px;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 480px;
  }

  .hero-title {
    font-size: 40px;
    letter-spacing: 0.18em;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .section {
    padding: 40px 20px;
  }

  .why-columns {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* FAQ PAGE */
.hero--faq::before{
  background: radial-gradient(ellipse at top, rgba(255,255,255,0.10), rgba(0,0,0,0.85)),
              linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0.85));
  opacity: 1;
}

.faq-accordion{
  margin-top: 20px;
  display: grid;
  gap: 14px;
}

.faq-item{
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  background: rgba(0,0,0,0.35);
  overflow: hidden;
}

.faq-item summary{
  cursor: pointer;
  list-style: none;
  padding: 16px 18px;
  font-family: "Cinzel", serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.92);
}

.faq-item summary::-webkit-details-marker{
  display: none;
}

.faq-item summary::after{
  content: "+";
  float: right;
  font-size: 20px;
  opacity: 0.8;
  transform: translateY(-1px);
}

.faq-item[open] summary::after{
  content: "–";
}

.faq-answer{
  padding: 0 18px 18px 18px;
  font-family: "Crimson Text", serif;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
}

.faq-answer strong{
  color: rgba(255,255,255,0.92);
}

/* =====================================================
   TOUR GRID + TOUR CARDS — SINGLE SOURCE OF TRUTH (FIXED)
   ===================================================== */

.tour-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
  align-items: stretch;
}

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

.tour-card{
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0,0,0,0.35);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

/* Image / hero area */
.tour-thumb{
  position: relative; /* keeps badge INSIDE the image, fixes “corner badge” issue */
  height: 220px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
}

/* Focal point helpers */
.focus-top { background-position: center top; }
.focus-bottom { background-position: center bottom; }
.focus-left { background-position: left center; }
.focus-right { background-position: right center; }

/* Badge */
.tour-badge{
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.65);
  color: rgba(255,255,255,0.92);
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
}

/* Card body */
.tour-body{
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px 16px 18px;
}

/* Title */
.tour-name{
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.92);
  margin: 0 0 10px 0;
  min-height: 52px;
}

/* Description (clamped so cards are uniform) */
.tour-meta{
  font-family: "Crimson Text", serif;
  font-size: 17px;
  line-height: 1.4;
  color: rgba(255,255,255,0.80);
  margin-bottom: 12px;

  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;

  min-height: 96px;
}

/* Facts row */
.tour-facts{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

/* Chips */
.chip{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.86);
  font-family: "Cinzel", serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Price (pushes button to bottom) */
.tour-price{
  margin-top: auto;
  margin-bottom: 12px;
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
}

/* CTA Button */
.tour-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 900;
  min-height: 48px;
  background: linear-gradient(135deg, rgba(180,140,255,0.95), rgba(242,182,255,0.92));
  color: #0a0a0c;
  transition: filter 0.2s ease;
}

.tour-link:hover{
  filter: brightness(0.96);
}

/* FEATURED TOURS */
.featured-tours {
  margin: 60px 0;
}

.featured-tours h2 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  text-align: center;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.featured-card {
  position: relative;
  background: #0f0f0f;
  border: 2px solid #7a3cff;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 0 25px rgba(122, 60, 255, 0.35);
  transform: translateY(0);
  transition: all 0.25s ease;
}

.featured-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 40px rgba(122, 60, 255, 0.6);
}

.featured-card .card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.featured-card .card-content {
  padding: 18px;
}

.featured-card h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.featured-card p {
  font-size: 0.95rem;
  opacity: 0.85;
}

.featured-card .badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #7a3cff;
  color: #fff;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 6px 10px;
  border-radius: 20px;
  letter-spacing: 1px;
}

.featured-btn{
  display: inline-block;
  margin-top: 14px;
  padding: 11px 18px;
  border-radius: 10px;
  background: #7a3cff;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  box-shadow: 0 0 15px rgba(122, 60, 255, 0.55);
  transition: all 0.25s ease;
}

.featured-card:hover .featured-btn{
  background: #8b55ff;
  box-shadow: 0 0 25px rgba(122, 60, 255, 0.85);
  transform: translateY(-1px);
}

/* =====================================================
   MOBILE FIX: HEADER ABOVE + HERO PUSH DOWN (CLEAN)
   ===================================================== */
@media (max-width: 900px){
  header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(6px);
  }

  .hero{
    padding-top: 130px;
    height: auto;
    min-height: 560px;
  }

  .hero-inner{
    padding-top: 40px;
  }
}
