/* Golisimo Brand Colors */
:root {
  --nav-color: #01918d;
  --bg-dark: #04343e;
  --text-white: #ffffff;
  --text-muted-custom: #023a46;
  --gold: #f0c040;
  --accent: #01918d;
  --btn-primary: #FF4F0A;
  --btn-secondary: #00F5F0;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-white);
  font-family: "Inter", sans-serif;
}

.btn {
  transform: skewX(-6deg);
  border-radius: 0;
}

/* Navbar */
.navbar {
  background-color: var(--nav-color) !important;
}

.navbar .nav-link {
  color: rgba(255, 255, 255, 0.85);
}

.navbar .nav-link:hover {
  color: #fff;
}

.navbar .navbar-brand {
  font-weight: 700;
  color: #fff !important;
}

/* Footer */
.footer-section {
  background-color: #02242b;
  padding: 3rem 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-section a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

.footer-section a:hover {
  color: #fff;
}

.footer-links a {
  display: block;
  margin-bottom: 0.4rem;
}

/* Background utility */
.bg-brand {
  background-color: var(--bg-dark);
}

.bg-nav-brand {
  background-color: var(--nav-color);
}

/* Text utilities */
.text-brand-muted {
  color: rgba(255, 255, 255, 0.55) !important;
}

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

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

/* Accent border */
.border-accent {
  border-color: var(--nav-color) !important;
}

/* Hero section */
.hero-section {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #022a33 100%);
  padding: 4rem 0;
}

/* Section spacing */
.section-padding {
  padding: 3rem 0;
}

/* CTA buttons */
.btn-accent,
.btn-primary {
  background-color: var(--btn-primary);
  border-color: var(--btn-primary);
  color: #fff;
}

.btn-accent:hover,
.btn-primary:hover {
  background-color: #d94308;
  border-color: #d94308;
  color: #fff;
}

.btn-secondary,
.btn-outline-light {
  background-color: transparent;
  border-color: var(--btn-secondary);
  color: var(--btn-secondary);
}

.btn-secondary:hover,
.btn-outline-light:hover {
  background-color: var(--btn-secondary);
  border-color: var(--btn-secondary);
  color: #04343e;
}

/* Trust / icon boxes */
.trust-icon {
  font-size: 2rem;
  color: var(--btn-secondary);
}

/* Bonus card */
.bonus-card {
  background: rgba(255, 79, 10, 0.1);
  border: 1px solid rgba(255, 79, 10, 0.3);
  border-radius: 0.5rem;
  padding: 1.5rem;
}

/* Feature card */
.feature-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.5rem;
  padding: 1.5rem;
  height: 100%;
}

.feature-card h3 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
}

.feature-card img {
  border-radius: 0.5rem;
  object-fit: contain;
  width: 100%;
  max-height: 80px;
}

/* Payment method icon */
.payment-icon {
  font-size: 1.8rem;
  color: var(--btn-secondary);
}

/* Table styles */
.table-brand {
  --bs-table-bg: rgba(255, 255, 255, 0.04);
  --bs-table-color: #fff;
  --bs-table-border-color: rgba(255, 255, 255, 0.1);
}

.table-brand th {
  background-color: rgba(255, 79, 10, 0.2);
  color: #fff;
  font-weight: 600;
}
