/* Dolomalo — Shared Luxury Stylesheet */

:root {
  --bg: #0a0a0a;
  --bg-soft: #111111;
  --bg-card: #141414;
  --gold: #c9a84c;
  --gold-light: #e0c06a;
  --gold-dim: #8a6d2a;
  --text: #e8e8e8;
  --text-muted: #888888;
  --text-dim: #555555;
  --border: #1e1e1e;
  --border-gold: rgba(201,168,76,0.25);
  --radius: 2px;
  --radius-md: 6px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: normal;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1rem; letter-spacing: 0.1em; text-transform: uppercase; }

p { margin-bottom: 1rem; }

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--gold-light); }

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

.nav-logo {
  font-family: 'Georgia', serif;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
}
.nav-logo:hover { color: var(--gold-light); }

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

.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(201,168,76,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content { max-width: 800px; position: relative; z-index: 1; }

.hero-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}

.hero-title {
  color: var(--text);
  margin-bottom: 1.5rem;
}
.hero-title .gold { color: var(--gold); }

.hero-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn:hover {
  background: var(--gold);
  color: var(--bg);
}

.btn-filled {
  background: var(--gold);
  color: var(--bg);
}
.btn-filled:hover {
  background: var(--gold-light);
  color: var(--bg);
}

/* Section layout */
section {
  padding: 6rem 2rem;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title { color: var(--text); margin-bottom: 1rem; }
.section-desc { color: var(--text-muted); max-width: 560px; margin: 0 auto; }

/* Divider */
.divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
}

/* Grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

/* Cards */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: border-color var(--transition), transform var(--transition);
}
.card:hover {
  border-color: var(--border-gold);
  transform: translateY(-2px);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.card-name {
  font-family: 'Georgia', serif;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.card-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.card-price {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  font-weight: bold;
}

.card-badge {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border: 1px solid var(--gold-dim);
  color: var(--gold-dim);
  margin-bottom: 0.75rem;
}

/* Slot Grid */
.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.slot {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), transform var(--transition);
}
.slot:hover { border-color: var(--border-gold); transform: translateY(-2px); }

.slot.empty {
  opacity: 0.5;
  cursor: pointer;
}
.slot.empty:hover {
  opacity: 0.8;
  border-color: var(--gold-dim);
}

.slot-number {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.75rem;
}

.slot-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.slot-name { font-size: 0.95rem; color: var(--text); margin-bottom: 0.4rem; }
.slot-desc { font-size: 0.78rem; color: var(--text-muted); flex: 1; }

.slot-available {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-top: auto;
  padding-top: 0.75rem;
}

/* Payment info */
.payment-block {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  padding: 2rem;
  max-width: 680px;
  margin: 0 auto;
}

.payment-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}
.payment-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  min-width: 120px;
  padding-top: 0.15rem;
}
.payment-addr {
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  color: var(--text);
  word-break: break-all;
  flex: 1;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
  counter-reset: step;
}

.step {
  position: relative;
  padding-left: 1rem;
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-size: 2rem;
  font-family: 'Georgia', serif;
  color: var(--gold-dim);
  margin-bottom: 0.5rem;
}

.step-title {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.step-desc { font-size: 0.875rem; color: var(--text-muted); }

/* Watch specific */
.watch-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.watch-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
}

.watch-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.watch-name {
  font-family: 'Georgia', serif;
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.watch-tagline {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.watch-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Table */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}
.price-table th,
.price-table td {
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.price-table th {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--bg-soft);
}
.price-table td { color: var(--text-muted); }
.price-table td:first-child { color: var(--text); }
.price-table tr:hover td { background: rgba(201,168,76,0.03); }

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.faq-q {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.5rem;
  font-family: 'Georgia', serif;
}
.faq-a {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Hub section */
.hub-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.hub-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  padding: 2.5rem;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}
.hub-card:hover { transform: translateY(-3px); border-color: var(--gold); }
.hub-card-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.hub-card-title {
  font-family: 'Georgia', serif;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.hub-card-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.5rem; }

/* Footer */
footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: 'Georgia', serif;
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

.footer-col h4 {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

/* Page hero (non-full-height) */
.page-hero {
  padding: 10rem 2rem 5rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(201,168,76,0.05) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
}

.page-hero .hero-tagline { margin-bottom: 1rem; }

/* Discover / content pages */
.content-section {
  padding: 4rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.content-section h2 {
  color: var(--text);
  margin-bottom: 1rem;
  margin-top: 3rem;
}
.content-section h2:first-child { margin-top: 0; }
.content-section h3 {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin: 1.5rem 0 0.5rem;
}
.content-section ul, .content-section ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
}
.content-section li { margin-bottom: 0.4rem; font-size: 0.9rem; }
.content-section p { color: var(--text-muted); }
.content-section strong { color: var(--text); }
.content-section .highlight-box {
  background: var(--bg-card);
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.content-section .highlight-box p { margin: 0; font-size: 0.9rem; }

/* ── Payment Methods ─────────────────────────────────────── */
.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.btn-stripe {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: #5b34d8;
  color: #fff;
  border: 1px solid #7c5ce8;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-stripe:hover {
  background: #7c5ce8;
  color: #fff;
  transform: translateY(-1px);
}

.btn-paypal {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: #ffc439;
  color: #003087;
  border: 1px solid #e0a800;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-paypal:hover {
  background: #ffce58;
  transform: translateY(-1px);
}

.btn-crypto {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-crypto:hover {
  background: var(--gold);
  color: var(--bg);
  transform: translateY(-1px);
}

/* PayPal SDK renders its own iframe — constrain it */
#paypal-slot-btn,
[id^="paypal-ebook"] {
  display: inline-flex;
  align-items: center;
  min-width: 160px;
  max-width: 220px;
}

/* ── Verify Form ──────────────────────────────────────────── */
.verify-form {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  padding: 2rem 2rem 2rem;
}

.verify-form h3 {
  font-family: 'Georgia', serif;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
}

.verify-form input,
.verify-form select {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 0.75rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.875rem;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  outline: none;
  transition: border-color var(--transition);
  border-radius: var(--radius);
  -webkit-appearance: none;
}

.verify-form input:focus,
.verify-form select:focus {
  border-color: var(--gold);
  background: #1a1a1a;
}

.verify-form input::placeholder {
  color: var(--text-dim);
}

.verify-form select option {
  background: var(--bg-soft);
  color: var(--text);
}

.verify-form button[type="submit"] {
  display: block;
  width: 100%;
  margin-top: 0.5rem;
  text-align: center;
}

/* ── Verify Result ────────────────────────────────────────── */
.verify-result {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  border-radius: var(--radius);
  line-height: 1.5;
}

.verify-result--success {
  background: rgba(50, 200, 100, 0.08);
  border: 1px solid rgba(50, 200, 100, 0.35);
  color: #6fdb9a;
}

.verify-result--error {
  background: rgba(220, 60, 60, 0.08);
  border: 1px solid rgba(220, 60, 60, 0.35);
  color: #e07070;
}

/* ── Responsive overrides for payment UI ─────────────────── */
@media (max-width: 600px) {
  .payment-methods {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-stripe, .btn-paypal, .btn-crypto {
    width: 100%;
    justify-content: center;
  }
  #paypal-slot-btn,
  [id^="paypal-ebook"] {
    max-width: 100%;
    width: 100%;
  }
  .verify-form {
    padding: 1.5rem 1.25rem;
  }
}

/* Responsive */
@media (max-width: 768px) {
  nav { padding: 0 1.25rem; }

  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.98);
    flex-direction: column;
    align-items: center;
    gap: 0;
    border-bottom: 1px solid var(--border-gold);
    padding: 1rem 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: 0.85rem; }

  .nav-toggle { display: flex; }

  section { padding: 4rem 1.25rem; }

  .slot-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-bottom { flex-direction: column; text-align: center; }

  .payment-addr { font-size: 0.72rem; }
}

@media (max-width: 480px) {
  .slot-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
