/* Scooplore — Main Stylesheet */

:root {
  --bg: #0F0F0F;
  --bg-surface: #1A1A1A;
  --bg-elevated: #222222;
  --border: #2A2A2A;
  --accent: #C9A84C;
  --accent-hover: #E0C068;
  --text: #E8E2D4;
  --text-muted: #8A8070;
  --text-faint: #5A5448;
  --font-serif: Georgia, 'Times New Roman', serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-serif);
  font-size: 1rem;
  line-height: 1.7;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

h1, h2 {
  font-family: var(--font-serif);
  color: var(--text);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.4rem, 3.5vw, 2rem); }

h3 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
  max-width: 640px;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--wide {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 4rem 0;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15, 15, 15, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-brand span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--text);
  text-decoration: none;
}

.nav-links a:hover { color: var(--text); }

/* NAV DROPDOWN */
.nav-dropdown { position: relative; }

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.5rem 0;
  min-width: 160px;
  list-style: none;
  z-index: 200;
}

.nav-dropdown:hover .nav-dropdown-menu { display: block; }

.nav-dropdown-menu li a {
  display: block;
  padding: 0.6rem 1.25rem;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  white-space: nowrap;
}

.nav-dropdown-menu li a:hover {
  color: var(--text);
  background: var(--bg-elevated);
}

/* DIVIDER */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn--primary {
  background: var(--accent);
  color: #0F0F0F;
  border: none;
}

.btn--primary:hover {
  background: var(--accent-hover);
  color: #0F0F0F;
}

.btn--outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn--outline:hover {
  background: rgba(201, 168, 76, 0.1);
  color: var(--accent-hover);
}

/* CARDS */
.card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
  text-align: center;
}

footer p {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: none;
  margin: 0 auto;
}

/* UTILITIES */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.text-accent { color: var(--accent); }

/* PRICE TAG */
.price-tag {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--text);
}

/* NAV TOGGLE (mobile) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: 0.2s;
  flex-shrink: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(15, 15, 15, 0.97);
    border-bottom: 1px solid var(--border);
    padding: 1rem 2rem;
    gap: 0.25rem;
  }

  .nav-links.nav-open { display: flex; }

  .nav-links a {
    padding: 0.6rem 0;
    font-size: 1rem;
  }

  section { padding: 3rem 0; }
  .container { padding: 0 1.25rem; }
}
