/* style.css - Optimized for Bootstrap Integration */

/* Global typography enhancements */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9fa;
  color: #212529;
  line-height: 1.6;
}

/* Logo adjustments */
.navbar-brand img {
  height: 60px;
  width: auto;
}

/* Section spacing */
section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* Cards */
.card {
  border: none;
  border-radius: 0.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

/* Forms */
form input,
form textarea,
form select {
  border-radius: 0.375rem;
  box-shadow: none;
}

form input:focus,
form textarea:focus,
form select:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  border-color: #0d6efd;
}

/* Footer */
footer {
  font-size: 0.9rem;
}

/* Utility overrides (if needed) */
.btn-primary {
  background-color: #0d6efd;
  border-color: #0d6efd;
  border-radius: 0.375rem;
}

.btn-primary:hover {
  background-color: #0b5ed7;
  border-color: #0a58ca;
}

/* Active nav link styling */
.nav-link.active {
  font-weight: 600;
  color: #0d6efd !important;
}

/* Responsive tweaks */
@media (max-width: 576px) {
  h2 {
    font-size: 1.5rem;
  }
  .navbar-brand img {
    height: 40px;
  }
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #f8f9fa;
  color: #333;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5 {
  font-weight: 600;
  color: #222;
}

.navbar-light .navbar-nav .nav-link {
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar-light .navbar-nav .nav-link:hover {
  color: #007bff;
}

.hero-section h1 {
  font-size: 2.8rem;
  font-weight: 700;
}

.hero-section p.lead {
  font-size: 1.2rem;
}

.bg-white {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bg-white:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.btn-outline-primary {
  border-width: 2px;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: #007bff;
  color: #fff;
}

.brand-logo {
  max-height: 50px;
  object-fit: contain;
  filter: grayscale(60%);
  transition: filter 0.3s ease;
}

.brand-logo:hover {
  filter: grayscale(0%);
}

footer {
  background-color: #212529;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 767.98px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section p.lead {
    font-size: 1rem;
  }

  .row .col-md-6 img {
    margin-bottom: 1.5rem;
  }
}

/* Extra styles for About page */

.founder-card img {
  height: 280px;
  object-fit: cover;
}

.founder-card .card-body {
  padding: 1.5rem;
}

:root {
  --bg-color: #ffffff;
  --text-color: #000000;
}

[data-theme="dark"] {
  --bg-color: #121212;
  --text-color: #ffffff;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
}
