/* --- Root Variables --- */
:root {
  --bg: #800500;
  --card: #ffffff;
  --text: #1a1a1a;
  --accent: #7a001f;
  --border: #e6e8ef;
}

/* --- Global Styles --- */
* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

h1 {
  font-weight: 900;
}

/* --- Hero / Brand Intro --- */
.hero {
  background: var(--card);          /* white panel instead of maroon */
  color: var(--text);              /* dark text */
  padding: 3rem 1rem;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;              /* centers the h1 + subtitle */
}

.hero h1 {
  margin: 0 0 0.5rem;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3rem);
}

.hero p {
  margin: 0;
  opacity: 0.9;
}


img {
  max-width: 100%;
  height: auto;
}


/* --- Navigation --- */
nav {
background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 1rem;
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

nav a {
  white-space: nowrap;
color: var(--text);
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  min-width: 150px;
}

nav a:hover {
  background: var(--bg);
  color: #fff;
}

/* --- Sections --- */
.section-box {
  max-width: 1100px;
  margin: 2rem auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

/* --- Grids --- */
.packages-grid, .etsy-grid, .feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

/* --- Cards --- */
.package-card, .etsy-card, .card {
  display: block;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.25rem;
  text-decoration: none;
  color: var(--text);
  background: var(--card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tarot-options .btn {
  display: block;
  margin: 0.75rem 0;
  text-align: center;
}


.package-card:hover, .etsy-card:hover, .card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,.06);
}

/* --- Buttons --- */
.btn, .btn-outline, .package-card button {
  display: inline-block;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn {
  background: var(--accent);
  color: #fff;
}

.btn:hover, .package-card button:hover {
  filter: brightness(0.95);
}

.btn-outline {
  border: 2px solid var(--accent);
  color: var(--accent);
}

.btn-outline:hover {
  background: rgba(122,0,31,0.06);
}

/* --- Notice / Status message --- */
.notice {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 0.75rem;
}

.notice strong {
  display: block;
  margin-bottom: 0.25rem;
}


/* --- Forms --- */
.form {
  display: grid;
  gap: 0.75rem;
  max-width: 560px;
}

input[type="text"], input[type="email"], textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font: inherit;
  background: var(--card);
}

.success {
  color: var(--accent);
  font-weight: 600;
}

/* --- Blockquotes --- */
blockquote {
  margin: 0 0 1rem;
  padding: 1rem 1.25rem;
  background: var(--card);
  border-left: 4px solid var(--accent);
  border-radius: 0.5rem;
}

blockquote span {
  display: block;
  margin-top: 0.5rem;
  font-weight: 600;
  opacity: 0.8;
}

/* --- Footer --- */
footer {
  margin-top: 2rem;
  background: var(--card);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 1.25rem;
}

footer img {
  max-width: 200px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0.5rem auto 1rem;
}

/* --- Intro Slideshow --- */
.intro-slideshow {
  overflow: hidden;
}

.intro-slideshow .slides-wrapper {
  position: relative;
  min-height: 240px;
}

.intro-slideshow .slide {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.intro-slideshow .slide.active {
  display: block;
  opacity: 1;
}

.slide-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  gap: 1rem;
}

.slide-dots {
  display: flex;
  gap: 0.5rem;
}

.slide-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
}

.slide-dots button.active {
  background: var(--accent);
}

/* --- Hero Portrait --- */
.hero-portrait {
  display: block;
  margin: 1.5rem auto 0;
  max-width: 280px;
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  filter: brightness(1.02) contrast(0.98);
}

@media (max-width: 480px) {
  .hero-portrait {
    max-width: 200px;
  }
}

/* --- Header --- */
.site-header {
  width: 100%;
  height: 240px;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.site-header img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
/* Nicely stacked buttons inside sections */
.section-box .btn,
.section-box .btn-outline {
  display: inline-block;
  margin-top: 0.5rem;
}
/* =========================
   Mobile responsiveness
   Paste at END of style.css
   ========================= */

/* Prevent weird overflow on small screens */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

/* Mobile layout */
@media (max-width: 600px) {

  /* Make header less huge */
  .site-header {
    height: 140px;
  }

  /* Softer spacing on phone */
  .section-box {
    margin: 1rem 0.75rem;
    padding: 1.25rem;
    border-radius: 0.9rem;
  }

    /* Nav becomes a clean stacked menu on phone */
  nav {
    display: flex;
    flex-direction: column;   /* stack links vertically */
    align-items: stretch;     /* full width */
    gap: 0.6rem;
    padding: 0.9rem 0.9rem;
  }

  nav a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.95rem 1rem;   /* taller = less scrunched */
    border-radius: 0.75rem;
  }

/* Buttons become full-width and clean */
  .btn,
  .btn-outline,
  .package-card button {
    width: 100%;
    text-align: center;
    padding: 0.9rem 1rem;
  }

  /* Grids collapse to one column */
  .packages-grid,
  .etsy-grid,
  .feature-cards {
    grid-template-columns: 1fr;
  }

  /* Hero portrait sizing */
  .hero-portrait {
    max-width: 220px;
  }

  /* Make long URLs not break layout */
  a, p, li {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}
/* =========================
   MOBILE NAV FIX (override)
   ========================= */


