:root {
  --dark-navy: #203046;
  --light-bg: #f9fbfb;
  --primary-blue: #3C2CE7;
  --text-dark: #333;
  --text-muted: #6c757d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* Navigation */
.navbar {
  background: rgba(32, 48, 70, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  color: white !important;
  font-size: 1.5rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.nav-link:hover {
  color: white !important;
}

.btn-primary {
  background: var(--primary-blue);
  border: none;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #2c8dc7;
  transform: translateY(-2px);
}

/* Categories Section */
.categories-section {
  background: white;
  padding: 80px 0 60px 0;
  min-height: calc(100vh - 200px);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 0;
}

.page-header {
  padding-top: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 40px;
}

.see-all-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.see-all-link:hover {
  color: #2c8dc7;
}

.category-card {
  height: 180px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 20px;
  display: flex;
  align-items: flex-end;
}

.category-title {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
  background: var(--light-bg);
  border-top: 1px solid #e0e0e0;
}

.footer h6 {
  color: var(--dark-navy);
}

.footer a {
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-blue) !important;
}

.footer .bi-camera-fill {
  color: var(--primary-blue);
}

/* Responsive */
@media (max-width: 991px) {
  .category-card {
    height: 150px;
  }
}

@media (max-width: 767px) {
  body {
    padding-top: 70px;
  }

  .category-card {
    height: 120px;
  }

  .category-title {
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 1.5rem;
  }
}

