/* Color System: Black, White, Gold */
:root {
  --gold-primary: #c5a059;
  --gold-light: #e2c275;
  --gold-dark: #8e6f3e;
  --black: #1a1a1a;
  --white: #ffffff;
}

* {
  font-family: 'DM Sans', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Lora', serif;
  font-weight: 700;
  color: var(--black);
}

.hero {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  color: #fff;
}

.hero .badge {
  background: rgba(197, 160, 89, 0.2);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
}

.section-title {
  max-width: 720px;
}

.icon-pill {
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(197, 160, 89, 0.1);
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 50px
}

.card-hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.75rem 1.5rem rgba(197, 160, 89, 0.1);
  transition: 180ms ease;
}

.muted-small {
  font-size: 0.95rem;
  color: #6c757d;
}

.btn-primary {
  background-color: var(--gold-primary);
  border-color: var(--gold-primary);
  color: var(--black);
  font-weight: 600;
}

.btn-primary:hover {
  background-color: var(--gold-dark);
  border-color: var(--gold-dark);
  color: white;
}

/* Navbar Enhancements */
.navbar {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 0.5rem 0;
}

.navbar-brand img {
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.navbar .nav-link {
  font-weight: 500;
  color: #fff !important;
  position: relative;
  margin: 0 0.5rem;
  padding: 0.5rem 0 !important;
  transition: color 0.3s ease;
}

.navbar .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--gold-primary);
  transition: width 0.3s ease;
}

.navbar .nav-link:hover {
  color: var(--gold-dark) !important;
}

.navbar .nav-link:hover::after {
  width: 100%;
}

.navbar .nav-link.active {
  color: var(--black) !important;
}

.navbar .nav-link.active::after {
  width: 100%;
}

.navbar .border-secondary {
  border-color: var(--gold-primary) !important;
  padding: 0.75rem 1.25rem !important;
  border-radius: 50px !important;
  transition: all 0.3s ease;
  color: var(--gold-primary) !important;
}

.navbar .border-secondary:hover {
  background-color: var(--gold-primary);
  color: white !important;
}

.navbar .border-secondary:hover svg {
  stroke: white;
}

.navbar .border-secondary:hover .fw-bold {
  color: white;
}

/* Remove underline effect from the phone button on hover */
.navbar .border-secondary:hover::after {
  width: 0 !important;
}

/* Dropdown on Hover (Desktop) */
@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 0.3s ease;
  }

  .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
  }
}

/* Remove dropdown caret */
.dropdown-toggle::after {
  display: none !important;
}

/* Glassmorphism and Premium effects */
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: 20px;
}

.text-gradient-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-gradient-dark {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.card-hover {
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.card-hover:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(197, 160, 89, 0.15) !important;
}

.letter-spacing-1 {
  letter-spacing: 1px;
}

.feature-icon-small {
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(197, 160, 89, 0.1);
  color: var(--gold-dark);
  border-radius: 12px;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  font-size: 3em;
}

.card-hover:hover .feature-icon-small {
  background: var(--gold-primary);
  color: var(--black);
  transform: rotate(-5deg) scale(1.1);
}

.gold-divider {
  width: 50px;
  height: 3px;
  background: var(--gold-primary);
  margin: 1.5rem 0;
}

/* Footer Hover */
.footer-nav-link:hover {
  color: var(--gold-primary) !important;
  transition: color 0.3s ease;
}

/* Remove underline effect from the phone button on hover */
.navbar .border-secondary:hover::after {
  width: 0 !important;
}