/* Bootstrap Color Mode Overrides */
[data-bs-theme="dark"] {
  --bs-body-bg: #121212;
  --bs-body-bg-rgb: 35, 35, 35;
}

[data-bs-theme="light"] {
  --bs-body-color: #121212;
  --bs-body-color-rgb: 18, 18, 18;
}

body {
  font-family: 'Inter', sans-serif;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.2;
  z-index: -1;
}

body,nav {
  background-color: var(--bs-body-bg);

h1, h2, h3, h4, h5, h6 {
  font-family: 'Funnel Display', sans-serif;
}

/* Responsive heading */
@media (min-width: 768px) {
  .display-md-3 {
    font-size: calc(1.525rem + 3.3vw);
  }
}

.cover-container {
  max-width: 42em;
}

.nav-masthead .nav-link {
  padding: .25rem 0;
  font-weight: 600;
  color: rgba(255, 255, 255, .5);
  border-bottom: .25rem solid transparent;
}

.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
  border-bottom-color: rgba(255, 255, 255, .25);
}

.nav-masthead .nav-link + .nav-link {
  margin-left: 1rem;
}

.nav-masthead .active {
  color: #fff;
  border-bottom-color: #fff;
}

.btn-primary {
  background-color: #0d6efd;
  border-color: #0d6efd;
  font-weight: 600;
}

.btn-secondary {
  font-weight: 600;
}

.gradient-bg {
  background: linear-gradient(180deg, #1d1d1d 0%, #030303 100%);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1rem;
  font-size: 2rem;
  border-radius: .75rem;
}

[data-bs-theme="dark"] .feature-icon {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

[data-bs-theme="light"] .feature-icon {
  color: #232323;
  background: rgba(0, 0, 0, 0.05);
}

/* Header Styles */
.navbar {
  background-color: #232323 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
  font-family: 'Funnel Display', sans-serif;
  color: #fff !important;
}

.navbar-brand:hover {
  color: #fff !important;
}

/* Tagline Styles */
.tagline {
  font-family: 'Funnel Display', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.tagline-word {
  background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
  position: relative;
}

[data-bs-theme="light"] .tagline-word {
  background: linear-gradient(135deg, #232323 0%, #666666 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tagline-separator {
  opacity: 0.5;
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .tagline {
    font-size: 1.5rem;
    gap: 1rem;
  }
}

/* Theme Selector Styles */
.btn-check:checked + .btn-outline-light {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.btn-group .btn {
  border-radius: 0;
}

.btn-group .btn:first-child {
  border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}

.btn-group .btn:last-child {
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}
