:root {
  --primary-color: #4e57d4;
  --secondary-color: #2d3142;
  --light-color: #f8f9fa;
}

.btn-primary {
  background: #3943d2 !important;
  border-color: #3943d2 !important;
}

.rounded-circle {
  background: #3943d2 !important;
}

.text-gold {
  color: #ffc228 !important;
}
.bg-primary {
  background: #3943d2 !important;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--secondary-color);
}

.navbar {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: 700;
  color: var(--primary-color);
}

.hero-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

h1 {
  font-weight: 800;
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
}

.lead {
  font-size: 1.2rem;
  line-height: 1.3;
  margin-bottom: 2rem;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 30px;
}

.btn-primary:hover {
  background-color: #3941b0;
  border-color: #3941b0;
}

.form-control {
  padding: 12px 20px;
  border-radius: 30px;
}

.hero-section {
  position: relative;
  background: url("/img/hero.webp") no-repeat center center;
  background-size: cover;
  min-height: 100vh;
  padding: 0;
  display: flex;
  align-items: center;
  color: white;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay for better text visibility */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.glass-panel {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  border-radius: 10px;
  padding: 1.5rem 2rem;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-panel-dark {
  background: rgba(0, 0, 0, 9);
  backdrop-filter: blur(5px);
  border-radius: 10px;
  padding: 1.5rem 2rem;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.custom-bullets {
  list-style: none;
  padding-left: 0.5rem;
}

.custom-bullets li {
  position: relative;
  padding-left: 2rem;
  color: white;
  font-weight: 500;
}

.custom-bullets li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.8rem;
  height: 0.8rem;
  background-color: white;
  border-radius: 50%;
}

/* Make the button pop with a subtle glow */
.btn-light {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.btn-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
}

/* Update navbar to work with the new hero design */
.navbar {
  background-color: transparent !important;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  box-shadow: none;
}

.navbar-brand,
.navbar .nav-link {
  color: white !important;
}

.navbar .btn-primary {
  background-color: white;
  color: var(--primary-color);
  border-color: white;
}

.navbar .btn-primary:hover {
  background-color: #f0f0f0;
  border-color: #f0f0f0;
}

.card {
  overflow: hidden;
  position: relative;
}

.ribbon-wrapper {
  width: 150px;
  height: 150px;
  position: absolute;
  top: -10px;
  right: -10px;
  overflow: hidden;
  z-index: 10;
}

.ribbon {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  transform: rotate(45deg);
  position: relative;
  padding: 7px 0;
  left: -15px;
  top: 30px;
  width: 200px;
  color: white;
}

.subscription-info {
  background-color: #f8f9fa;
  border-radius: 5px;
  padding: 10px;
  font-family: monospace;
  font-size: 14px;
}

.modal-header .btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%);
}

.btn-cta {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #f8f9fa !important;
}

.step-description {
  text-align: left !important;
  padding-left: 20px;
}

.section-subheader {
  background: #333;
  color: white;
  padding: 20px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  .hero-section {
    padding: 60px 0;
  }
}
