/* Cubebery.AI Custom Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --gold: #D4A853;
  --gold-light: #E0BC6E;
  --gold-dark: #B8903A;
  --dark-navy: hsl(220, 26%, 14%);
  --dark-navy-fg: hsl(0, 0%, 95%);
  --section-alt: hsl(220, 14%, 97%);
  --muted: hsl(220, 10%, 46%);
  --border-color: hsl(220, 14%, 90%);
  --foreground: hsl(220, 20%, 14%);
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
}

/* Navbar */
.navbar-brand-text { color: var(--gold); font-weight: 700; }
.navbar-brand-text span { color: var(--foreground); }
.navbar .nav-link { font-size: 0.875rem; font-weight: 500; color: var(--muted); transition: color 0.2s; }
.navbar .nav-link:hover, .navbar .nav-link.active { color: var(--gold); }

/* Section helpers */
.section-padding { padding: 4rem 0; }
@media (min-width: 768px) { .section-padding { padding: 6rem 0; } }

.section-alt { background-color: var(--section-alt); }

.dark-section { background-color: var(--dark-navy); color: var(--dark-navy-fg); }
.dark-section .text-muted-custom { color: rgba(242, 242, 242, 0.6); }
.dark-section .text-muted-custom-70 { color: rgba(242, 242, 242, 0.7); }

.section-label {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--gold); margin-bottom: 1rem; display: inline-block;
}

.section-title { font-weight: 800; letter-spacing: -0.02em; }
.text-gold { color: var(--gold) !important; }

/* Buttons */
.btn-gold {
  background-color: var(--gold); color: #fff; border: none;
  padding: 0.75rem 1.5rem; border-radius: 0.5rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: 0.5rem; transition: background 0.2s;
  text-decoration: none; font-size: 0.938rem;
}
.btn-gold:hover { background-color: var(--gold-dark); color: #fff; }

.btn-outline-custom {
  border: 1px solid var(--border-color); color: var(--foreground);
  padding: 0.75rem 1.5rem; border-radius: 0.5rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: 0.5rem; transition: background 0.2s;
  text-decoration: none; font-size: 0.938rem; background: transparent;
}
.btn-outline-custom:hover { background-color: var(--section-alt); }

.btn-outline-light {
  border: 1px solid rgba(242,242,242,0.2); color: var(--dark-navy-fg);
  padding: 0.75rem 1.5rem; border-radius: 0.5rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: 0.5rem; transition: background 0.2s;
  text-decoration: none; font-size: 0.938rem; background: transparent;
}
.btn-outline-light:hover { background-color: rgba(255,255,255,0.1); color: #fff; }

/* Tag Pill */
.tag-pill {
  display: inline-flex; align-items: center; gap: 0.375rem;
  padding: 0.375rem 0.75rem; border-radius: 9999px;
  font-size: 0.75rem; font-weight: 500;
  background: rgba(212, 168, 83, 0.1); color: var(--gold);
}

/* Feature Card */
.feature-card {
  background: #fff; border: 1px solid var(--border-color);
  border-radius: 0.75rem; padding: 1.5rem;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.feature-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.08); border-color: rgba(212,168,83,0.3); }

.feature-icon {
  width: 3rem; height: 3rem; border-radius: 0.75rem;
  background: rgba(212, 168, 83, 0.1); color: var(--gold);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}

/* Dark card */
.dark-card {
  background: rgba(242,242,242,0.05); border: 1px solid rgba(242,242,242,0.1);
  border-radius: 0.75rem; padding: 1.5rem;
}

/* Hero overlay */
.hero-overlay { position: relative; overflow: hidden; }
.hero-overlay .hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay .hero-dark {
  position: absolute; inset: 0; background: rgba(23, 29, 42, 0.8);
}
.hero-overlay .hero-content { position: relative; z-index: 2; }

/* FAQ accordion */
.faq-btn { width: 100%; text-align: left; background: none; border: none; padding: 0; cursor: pointer; }
.faq-btn .bi-chevron-down { transition: transform 0.2s; color: var(--gold); }
.faq-btn[aria-expanded="true"] .bi-chevron-down { transform: rotate(180deg); }

/* Step number */
.step-num { font-size: 2rem; font-weight: 800; color: rgba(212,168,83,0.3); line-height: 1; }

/* Footer */
footer a { color: rgba(242,242,242,0.7); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--gold); }

/* Form inputs */
.form-control-custom {
  border: 1px solid var(--border-color); border-radius: 0.5rem;
  padding: 0.75rem 1rem; font-size: 0.875rem; width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control-custom:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.2);
}
