/* BuildMySwim Modern Theme - new-style.css */
body {
  background: #f8fafc;
  color: #222;
  font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

/* Navbar */
.custom-navbar {
  background: linear-gradient(90deg, #0a2342 0%, #1e3a5c 100%);
  border-bottom: none !important;
  box-shadow: none !important;
  min-height: 80px;
}
.custom-navbar .navbar-brand span {
  color: #111 !important;
}

/* Section backgrounds */
.hero-section, .pricing-section {
  background: rgba(10,35,66,0.7);
  width: 100vw;
}
.about-section {
  background: rgba(255,127,17,0.85);
  width: 100vw;
}

/* Section containers */
.section-content {
  padding: 2rem;
  border-radius: 1rem;
}

/* Buttons */
.custom-btn {
  background: #ff7f11;
  color: #fff !important;
  border-radius: 2rem;
  font-weight: 700;
  padding: 0.5rem 1.5rem;
  margin-left: 0.5rem;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  opacity: 1 !important;
  transition: background 0.2s, color 0.2s, border 0.2s;
}
.custom-btn.hero-btn, .custom-btn.pricing-btn {
  background: #ff7f11;
  color: #fff !important;
  border: 2px solid #fff;
}
.custom-btn.about-btn {
  background: #0a2342;
  color: #fff !important;
  border: 2px solid #fff;
}
.custom-btn:hover, .custom-btn:focus {
  background: #ffae42;
  color: #0a2342 !important;
  border: 2px solid #0a2342;
}
.custom-btn.hero-btn:focus, .custom-btn.hero-btn:hover {
  background: #0a2342;
  color: #fff !important;
  border: 2px solid #fff;
}
.custom-btn.about-btn:focus, .custom-btn.about-btn:hover {
  background: #ff7f11;
  color: #fff !important;
  border: 2px solid #fff;
}

/* Cards */
.card {
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.10);
}
.card-header {
  border-radius: 1rem 1rem 0 0;
}

/* Images */
.img-fluid.rounded-circle {
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

/* Footer */
footer {
  background: #0a2342;
  color: #fff;
}

@media (max-width: 768px) {
  .section-content {
    padding: 1rem;
  }
  .custom-btn {
    padding: 0.5rem 1rem;
    font-size: 1rem;
  }
}
