/* Custom Modern Minimalistic Overrides */

/* Base styles */
body {
  font-family: -apple-system, system-ui, "Segoe UI", Roboto, Arial, "Noto Sans", sans-serif;
  color: #2d3436;
  background-color: #fff;
  line-height: 1.5;
}

/* Navigation overrides */
.navbar {
  border-bottom: 1px solid #ddd;
  padding: 1rem 20px;
  background: #fff;
  box-shadow: none;
  transition: box-shadow 0.3s ease;
}

.navbar-scrolled {
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d3436;
}

.navbar-nav .nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: #2d3436;
  margin-left: 1rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #1E88E5;
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

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

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  align-self: center;
}

.hero p {
  font-size: 1.25rem;
}

/* Example Boxes (for custom content blocks) */
.example-box {
  background: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 0.25rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.example-box img {
  max-width: 100%;
  border-radius: 0.25rem;
  margin-bottom: 0.5rem;
}

.example-box h3 {
  font-size: 1.25rem;
  margin: 0.5rem 0;
}

.example-box p {
  font-size: 1rem;
  margin: 0.5rem 0;
}

/* Card Component */
.card {
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Button Overrides */
.btn-outline-primary {
  border: 2px solid #2d3436;
  color: #2d3436;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-outline-primary:hover {
  background: #2d3436;
  color: #fff;
}

.btn-accent {
  background: #1E88E5;
  color: #fff;
  border: none;
  transition: background 0.3s ease;
}

.btn-accent:hover {
  background: #c0392b;
}

/* Accordion overrides */
.accordion .accordion-header {
  background: #f8f9fa;
  font-weight: 600;
}

.accordion-button {
  background: #f8f9fa;
  font-weight: 600;
  color: #2d3436;
}

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

/* Footer */
.footer {
  background: #2d3436;
  color: #fff;
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 0.875rem;
}

/* Utility */
.text-center {
  text-align: center;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Quick Link Hover Effect */
.quick-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.quick-link .example-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quick-link:hover .example-box {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
