/**
 * Voyadest – Custom CSS
 * Projeye özgü stiller buraya eklenir.
 * Bootstrap ve tema üzerine yazar.
 */

:root {
  --vd-primary:  #2563EB;
  --vd-accent:   #F59E0B;
}

/* ── Layout ───────────────────────────────────────────────────── */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main, section:last-of-type {
  flex: 1;
}

/* ── Typography ──────────────────────────────────────────────── */
.fw-semibold { font-weight: 600; }

/* ── Cards ───────────────────────────────────────────────────── */
.card { transition: box-shadow .2s ease; }
.card:hover { box-shadow: 0 .5rem 1.5rem rgba(0,0,0,.10) !important; }

/* ── Star rating ─────────────────────────────────────────────── */
.star-rating               { direction: rtl; display: inline-flex; }
.star-rating input         { display: none; }
.star-rating label         { font-size: 1.8rem; color: #d1d5db; cursor: pointer; line-height: 1; }
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label { color: var(--vd-accent); }

/* ── Badges ──────────────────────────────────────────────────── */
.bg-primary-subtle  { background-color: #EFF6FF; }
.bg-success-subtle  { background-color: #ECFDF5; }
.bg-warning-subtle  { background-color: #FFFBEB; }

/* ── Hero section ────────────────────────────────────────────── */
.py-6 { padding-top: 5rem; padding-bottom: 5rem; }

/* ── Navbar active ───────────────────────────────────────────── */
.navbar .nav-link.active,
.navbar .nav-link:hover { color: var(--vd-primary) !important; }
