:root {
  --rec-primary: #6f1d1b; /* burgundy */
  --rec-secondary: #1f1f1f; /* charcoal */
  --rec-accent: #f2c94c; /* yellow */
  --rec-light: #f7f7f7;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--rec-secondary);
  background: #fff;
}

.navbar-rec {
  background: #fff;
  border-bottom: 1px solid #eee;
}

.navbar-rec .nav-link {
  font-weight: 600;
}

.navbar-nav {
  align-items: center;
}

.navbar-collapse .d-flex {
  min-height: 40px;
}

.btn-rec.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.btn-rec {
  background: var(--rec-primary);
  color: #fff;
  border: 0;
  border-radius: 0.5rem;
  padding: 0.75rem 1.25rem;
}

.btn-rec:hover {
  background: #5b1615;
  color: #fff;
}

.btn-rec-outline {
  border: 2px solid var(--rec-primary);
  color: var(--rec-primary);
  background: transparent;
  border-radius: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-rec-outline:hover {
  background: var(--rec-primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-rec-secondary {
  background: #f0f0f0;
  color: var(--rec-primary);
  border: 0;
  border-radius: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-rec-secondary:hover {
  background: #e0e0e0;
  color: var(--rec-primary);
}

.section-pad {
  padding: 80px 0;
}

.hero {
  background: var(--rec-light);
  border-bottom: 1px solid #eee;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
}

.badge-accent {
  background: var(--rec-accent);
  color: #000;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
}

.card-rec {
  border: 1px solid #eee;
  border-radius: 1rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.footer {
  background: #0f0f0f;
  color: #fff;
}

.footer a { color: #fff; text-decoration: none; }

.sidebar {
  min-height: 100vh;
  background: #101010;
  color: #fff;
}

.sidebar a {
  color: #ddd;
  text-decoration: none;
  display: block;
  padding: 0.75rem 1rem;
}

.sidebar a.active,
.sidebar a:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.topbar {
  border-bottom: 1px solid #eee;
  background: #fff;
}

.table thead th {
  font-weight: 700;
}

.form-control, .form-select {
  border-radius: 0.5rem;
}

.alert-rec {
  border-left: 4px solid var(--rec-primary);
  background: #fff9f9;
}

.swiper {
  padding-bottom: 40px;
}

.swiper-slide .card-rec {
  height: 100%;
}

/* Hover effect for cards */
.hover-lift {
  transition: all 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(111, 29, 27, 0.15) !important;
}

/* Swiper navigation buttons */
.swiper-button-next, .swiper-button-prev {
  background: var(--rec-primary);
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
  background: #5b1615;
  transform: scale(1.1);
}

.swiper-pagination-bullet {
  background: #ddd;
  opacity: 1;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: var(--rec-primary);
  width: 30px;
  border-radius: 10px;
}

/* Navigation responsive improvements */
@media (max-width: 991px) {
  .navbar-nav {
    align-items: flex-start;
    margin-bottom: 1rem;
  }
  
  .navbar-nav .nav-item {
    width: 100%;
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 0;
  }
  
  .navbar-collapse .d-flex {
    flex-direction: column;
    width: 100%;
  }
  
  .navbar-collapse .d-flex .btn {
    width: 100%;
    text-align: center;
  }
}

@media (min-width: 992px) {
  .navbar-nav {
    gap: 0.5rem;
  }
}
