/* Rental Clothes — professional business theme */
:root {
  --rc-primary: #0f3460;
  --rc-primary-light: #16213e;
  --rc-accent: #e94560;
  --rc-accent-hover: #d63d56;
  --rc-gold: #c9a227;
  --rc-bg: #f8fafc;
  --rc-surface: #ffffff;
  --rc-text: #1e293b;
  --rc-muted: #64748b;
  --rc-border: #e2e8f0;
  --rc-shadow: 0 4px 24px rgba(15, 52, 96, 0.08);
  --rc-radius: 12px;
  --font-display: "DM Sans", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--rc-text);
  background: var(--rc-bg);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.navbar-rc {
  background: linear-gradient(135deg, var(--rc-primary) 0%, var(--rc-primary-light) 100%) !important;
  box-shadow: var(--rc-shadow);
  padding: 0.75rem 0;
}

.navbar-rc .navbar-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: #fff !important;
  letter-spacing: -0.03em;
}

.navbar-rc .nav-link {
  color: rgba(255, 255, 255, 0.88) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.navbar-rc .nav-link:hover,
.navbar-rc .nav-link.active {
  background: rgba(255, 255, 255, 0.12);
  color: #fff !important;
}

.btn-rc-primary {
  background: var(--rc-accent);
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 0.55rem 1.25rem;
  border-radius: 10px;
  transition: background 0.2s, transform 0.15s;
}

.btn-rc-primary:hover {
  background: var(--rc-accent-hover);
  color: #fff;
  transform: translateY(-1px);
}

.btn-rc-outline {
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: #fff;
  background: transparent;
  font-weight: 600;
  border-radius: 10px;
}

.btn-rc-outline:hover {
  background: #fff;
  color: var(--rc-primary);
}

/* Hero */
.hero-landing {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0f3460 0%, #16213e 45%, #1a1a2e 100%);
  color: #fff;
  overflow: hidden;
}

.hero-landing::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.9;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(233, 69, 96, 0.25);
  border: 1px solid rgba(233, 69, 96, 0.5);
  color: #fecdd3;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat strong {
  display: block;
  font-size: 1.75rem;
  font-family: var(--font-display);
  color: var(--rc-gold);
}

.hero-stat span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

/* Cards */
.card-rc {
  border: 1px solid var(--rc-border);
  border-radius: var(--rc-radius);
  box-shadow: var(--rc-shadow);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  background: var(--rc-surface);
  height: 100%;
}

.card-rc:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(15, 52, 96, 0.12);
}

.card-rc img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  background: #f1f5f9;
}

.card-rc .card-body {
  padding: 1.25rem;
}

.price-tag {
  color: var(--rc-accent);
  font-weight: 800;
  font-size: 1.15rem;
}

.section-title {
  margin-bottom: 0.5rem;
}

.section-sub {
  color: var(--rc-muted);
  margin-bottom: 2rem;
}

.bg-section {
  background: var(--rc-surface);
  border-top: 1px solid var(--rc-border);
  border-bottom: 1px solid var(--rc-border);
}

.footer-rc {
  background: var(--rc-primary-light);
  color: rgba(255, 255, 255, 0.75);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.footer-rc a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.footer-rc a:hover {
  color: #fff;
}

/* Forms */
.form-control:focus,
.form-select:focus {
  border-color: var(--rc-primary);
  box-shadow: 0 0 0 0.2rem rgba(15, 52, 96, 0.15);
}

/* Category pills */
.pill-cat {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #fff;
  border: 1px solid var(--rc-border);
  border-radius: 999px;
  font-weight: 600;
  color: var(--rc-primary);
  text-decoration: none;
  transition: all 0.2s;
}

.pill-cat:hover {
  border-color: var(--rc-accent);
  color: var(--rc-accent);
}

/* Search bar */
.search-hero .form-control {
  border-radius: 12px 0 0 12px;
  border: none;
  padding: 0.85rem 1.25rem;
}

.search-hero .btn {
  border-radius: 0 12px 12px 0;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (max-width: 991px) {
  .hero-landing {
    min-height: auto;
    padding: 4rem 0;
  }
}
