body {
  background-color: #1d1e30;
  color: white;
  font-family: Arial, sans-serif;
  padding-top: 0; /* Remove default padding since we have fixed nav */
}

/* Mobile Navigation Styles */
.mobile-nav {
  background-color: #1d1e30 !important;
  border-bottom: 1px solid #2c2c3e;
  padding: 0.5rem 1rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.mobile-nav .navbar-brand {
  color: #d4a373 !important;
  font-weight: bold;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mobile-nav .navbar-brand img {
  border-radius: 50%;
}

.mobile-nav .navbar-toggler {
  border-color: #d4a373;
  padding: 0.25rem 0.5rem;
}

.mobile-nav .navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(212, 163, 115, 0.25);
}

.mobile-nav .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28212, 163, 115, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.mobile-nav .nav-link {
  color: #f4ece1 !important;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.mobile-nav .nav-link:hover {
  color: #d4a373 !important;
}

.mobile-nav .dropdown-menu {
  background-color: #2c2c3e;
  border: 1px solid #3c3c4e;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.mobile-nav .dropdown-item {
  color: #f4ece1;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.mobile-nav .dropdown-item:hover {
  background-color: #3c3c4e;
  color: #d4a373;
}

.mobile-nav .dropdown-divider {
  border-color: #3c3c4e;
  margin: 0.5rem 0;
}

/* Show mobile nav on all devices */
.mobile-nav {
  display: block !important;
}

/* Desktop-specific adjustments */
@media (min-width: 992px) {
  .mobile-nav {
    padding: 0.75rem 2rem;
  }

  .mobile-nav .navbar-brand {
    font-size: 1.25rem;
  }

  .mobile-nav .navbar-brand img {
    width: 45px;
    height: 45px;
  }

  .mobile-nav .nav-link {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }

  .mobile-nav .dropdown-menu {
    min-width: 250px;
  }
}
.login-prompt {
  display: none;
  margin-top: 20px;
  background-color: #2c2c3e;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  width: 40%;
}
.container {
  display: flex;
  min-height: 50vh;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.content {
  text-align: center;
}
.title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #d4a373;
  margin-bottom: 20px;
}
.subtitle {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #f4ece1;
}
.btn-coffee {
  border-radius: 25px;
  font-weight: bold;
  width: 150px;
  margin: 0 10px;
}
.btn-primary {
  background-color: #6f4e37;
  border: none;
}
.btn-primary:hover {
  background-color: #563629;
}
footer {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #a6a6a6;
}
footer a {
  color: #a6a6a6;
  text-decoration: none;
}
footer a:hover {
  color: white;
  text-decoration: underline;
}
.subtitle {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #f4ece1;
}

/* Timeline section styles */
.timeline-section {
  background-color: #f8f9fa;
  padding: 60px 0;
  margin-top: 30px;
}

.timeline-container {
  max-width: 1200px;
  margin: 0 auto;
}

.timeline-title {
  text-align: center;
  color: #6c757d;
  margin-bottom: 24px;
}

.timeline-subtitle {
  text-align: center;
  color: #1d1e30;
  margin-bottom: 40px;
  font-size: 20px;
}

.timeline-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.timeline-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 340px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.timeline-image {
  height: 80px;
  padding-top: 10px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.timeline-content {
  padding: 20px;
}

.timeline-step {
  background-color: #d4a373;
  color: white;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 10px;
}

.timeline-item-title {
  font-size: 18px;
  font-weight: bold;
  color: #212529;
  margin-bottom: 10px;
}

.timeline-description {
  color: #6c757d;
  font-size: 14px;
  line-height: 1.5;
}

.timeline-link {
  color: inherit; /* Inherits text color from parent */
  text-decoration: none; /* Removes underline */
  cursor: pointer; /* Keeps the clickable behavior */
}

.timeline-link:hover,
.timeline-link:focus {
  text-decoration: none; /* Ensures no underline on hover or focus */
}

@media (max-width: 768px) {
  .container {
    height: auto;
    padding: 20px;
    margin-top: 0; /* Remove top margin since we have sticky nav */
  }

  .login-prompt {
    width: 90%;
    margin-top: 10px;
    padding: 15px;
  }

  .title {
    font-size: 2rem;
    margin-top: 1rem; /* Add some space from the nav */
  }

  .subtitle {
    font-size: 1rem;
  }

  .btn-coffee {
    width: 100%;
    margin: 10px 0;
  }

  .content {
    text-align: center;
    width: 100%;
  }

  footer {
    font-size: 0.8rem;
    padding: 10px;
  }

  /* Adjust timeline section for mobile with nav */
  .timeline-section {
    padding: 40px 0;
  }

  .timeline-items {
    gap: 20px;
  }

  .timeline-item {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .title {
    font-size: 1.8rem;
    margin-top: 0.5rem;
  }

  .subtitle {
    font-size: 0.9rem;
  }

  .login-prompt {
    padding: 10px;
    width: 95%;
  }

  .btn-coffee {
    font-size: 0.9rem;
    padding: 10px;
  }

  /* Mobile nav adjustments for very small screens */
  .mobile-nav {
    padding: 0.25rem 0.5rem;
  }

  .mobile-nav .navbar-brand {
    font-size: 1rem;
  }

  .mobile-nav .navbar-brand img {
    width: 32px;
    height: 32px;
  }

  .mobile-nav .dropdown-menu {
    font-size: 0.9rem;
  }

  .mobile-nav .dropdown-item {
    padding: 0.5rem 0.75rem;
  }
}

/* FAQ Section Styles */
.faq-section {
  padding: 70px 0;
  background-color: #f8f9fa;
}

.section-title {
  color: #212529;
  margin-bottom: 15px;
  font-weight: 700;
}

.section-subtitle {
  color: #6c757d;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: 15px;
  border: none;
  border-radius: 8px !important;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.accordion-button {
  background-color: #fff;
  color: #212529;
  font-weight: 600;
  padding: 16px 20px;
  border: none;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: #fff;
  color: #d4a373;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(212, 163, 115, 0.25);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d4a373'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 16px 20px;
  background-color: #fff;
}

.accordion-body p {
  color: #6c757d;
  margin-bottom: 0;
}
.forgot-password-link {
  color: #d4a373;
  text-decoration: underline;
  cursor: pointer;
  font-size: 0.9em;
}
.forgot-password-link:hover {
  color: #b4885c;
}

/* Features & Benefits Section */
.features-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.feature-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  text-align: center;
  margin-bottom: 20px;
}

.feature-image {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.feature-title {
  color: #d4a373;
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  padding: 8px 0;
  color: #666;
  position: relative;
  padding-left: 25px;
}

.feature-list li:before {
  content: "✓";
  color: #d4a373;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Social Proof Section Styles */
.social-proof-section {
  background-color: #f8f9fa;
}

.testimonial-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 20px auto;
  padding: 2.5rem;
  max-width: 800px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-size: 1.25rem;
  font-style: italic;
  color: #333;
  line-height: 1.6;
  margin: 0;
}

.author-name {
  font-weight: 600;
  color: #d4a373;
  margin: 0;
}

.spotlight-title {
  color: #333;
  margin-bottom: 2rem;
}

.community-logo {
  max-height: 80px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.community-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Carousel Styles */
.carousel {
  padding: 20px 0;
}

.carousel-inner {
  padding: 0 40px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 40px;
  height: 40px;
  background-color: #d4a373;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 20px;
  height: 20px;
}

.carousel-indicators {
  margin-bottom: 0;
  margin-top: 1rem;
}

.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #d4a373;
  opacity: 0.5;
  margin: 0 5px;
}

.carousel-indicators button.active {
  opacity: 1;
}

.carousel-item {
  transition: transform 0.6s ease-in-out;
}
