/* Visual Gear Co. — Bootstrap 5 custom theme */

:root {
  --bg-body: #1a1814;
  --bg-card: #221f1a;
  --bg-secondary: #2a2620;
  --border: #3a352d;
  --gold: #e6a845;
  --gold-light: #f0c070;
  --gold-dark: #c48a30;
  --text: #f7f4ed;
  --muted: #b8b0a3;
}

body {
  background-color: var(--bg-body);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

.text-gold {
  color: var(--gold) !important;
}

.bg-card {
  background-color: var(--bg-card) !important;
}

.bg-secondary-custom {
  background-color: var(--bg-secondary) !important;
}

.border-custom {
  border-color: var(--border) !important;
}

.text-muted-custom {
  color: var(--muted) !important;
}

.navbar {
  background-color: rgba(26, 24, 20, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.navbar-brand {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}

.btn-gold {
  background-color: var(--gold);
  color: #1a1814;
  border: none;
  font-weight: 600;
  border-radius: 50rem;
  padding: 0.65rem 1.5rem;
  box-shadow: 0 18px 50px -18px rgba(230, 168, 69, 0.45);
  transition: opacity 0.2s ease;
}

.btn-gold:hover {
  opacity: 0.9;
  color: #1a1814;
}

.btn-outline-custom {
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 50rem;
  padding: 0.65rem 1.5rem;
  font-weight: 600;
}

.btn-outline-custom:hover {
  background-color: var(--bg-secondary);
  color: var(--text);
}

.hero {
  background: linear-gradient(160deg, #25211c 0%, #151310 100%);
  border-bottom: 1px solid var(--border);
}

.section-alt {
  background-color: rgba(34, 31, 26, 0.4);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.card-custom {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.card-custom:hover {
  border-color: var(--gold);
}

.card-img-top {
  height: 180px;
  object-fit: cover;
  width: 100%;
}

.event-card .card-img-top {
  height: 160px;
}

.chip {
  border: 1px solid var(--border);
  background-color: var(--bg-secondary);
  color: var(--text);
  border-radius: 50rem;
  padding: 0.5rem 1rem;
  font-weight: 500;
  font-size: 0.9rem;
}

.crew-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
}

.shadow-gold {
  box-shadow: 0 18px 50px -18px rgba(230, 168, 69, 0.45);
}

footer {
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.floating-wa {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 1050;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  text-decoration: none;
}

.floating-wa:hover {
  color: #fff;
  opacity: 0.9;
}
