/* Import Professional Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Global Typography */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1f2937;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
}

p {
  color: #4b5563;
  margin-bottom: 1rem;
}

/* Product Cards - Equal Heights */
.product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
}

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

.product-card .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

.product-card .card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.75rem;
  min-height: 2.5rem;
}

.product-card .card-text {
  flex: 1;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: #6b7280;
}

.product-card .text-primary {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #2563eb !important;
  margin-bottom: 0.5rem;
}

/* Card Images */
.product-card img.card-img-top {
  height: 200px;
  object-fit: cover;
  border-radius: 0;
}

/* Row Spacing */
.product-grid {
  margin-bottom: 3rem;
}

.product-grid .col {
  margin-bottom: 1.5rem;
}

/* Section Headers */
.section-header {
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.0625rem;
  color: #6b7280;
  line-height: 1.7;
}

/* Hero Section */
.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1rem;
  line-height: 1.7;
}

/* Buttons */
.btn {
  font-weight: 500;
  padding: 0.625rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #98121f;
  border-color: #98121f;
}

.btn-primary:hover {
  background: #7a0e18;
  border-color: #7a0e18;
  transform: translateY(-2px);
}

.btn-outline-primary {
  border-width: 2px;
  font-weight: 600;
}

/* Team Cards */
.team-card {
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-4px);
}

.team-card h5 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.team-card .text-muted {
  font-size: 0.875rem;
  color: #6b7280 !important;
}

/* Navbar */
.navbar-brand span {
  font-weight: 600;
  font-size: 1.25rem;
  color: #111827;
}

.nav-link {
  font-weight: 500;
  transition: color 0.3s ease;
}

/* Footer */
footer a {
  font-weight: 500;
  transition: opacity 0.3s ease;
}

footer a:hover {
  opacity: 0.8;
}

/* Responsive Typography */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-content h1 {
    font-size: 2.25rem;
  }

  .section-header h2 {
    font-size: 1.875rem;
  }
}

/* Utility Classes */
.text-clean {
  background: none !important;
  color: #4b5563 !important;
}
