:root {
  --brand-teal: #0d7377;
  --brand-orange: #ff8c42;
  --brand-sunset-1: #ff6b6b;
  --brand-sunset-2: #ffa751;
  --brand-navy: #14213d;
  --brand-cream: #fff8f0;
  --radius-lg: 20px;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--brand-cream);
  color: var(--brand-navy);
}

h1, h2, h3, h4, h5, .brand-font {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

/* ---------- Buttons ---------- */
.btn-gradient {
  background: linear-gradient(135deg, var(--brand-sunset-1), var(--brand-sunset-2));
  border: none;
  color: #fff;
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 107, .35);
  color: #fff;
}

/* ---------- Auth pages ---------- */
.auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
}
.auth-visual {
  background: linear-gradient(160deg, var(--brand-teal), var(--brand-navy));
  position: relative;
  overflow: hidden;
  color: #fff;
}
.auth-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(255,255,255,.08) 0, transparent 40%),
                     radial-gradient(circle at 80% 70%, rgba(255,140,66,.25) 0, transparent 45%);
}
.auth-visual .content {
  position: relative;
  z-index: 2;
}
.auth-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(20, 33, 61, .08);
}
.brand-badge {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-sunset-1), var(--brand-sunset-2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
}
.form-control:focus {
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 .2rem rgba(255, 140, 66, .15);
}
.toggle-password { cursor: pointer; }

/* ---------- Dashboard ---------- */
.navbar-travel {
  background: rgba(20, 33, 61, .96);
  backdrop-filter: blur(6px);
}
.navbar-travel .nav-link,
.navbar-travel .navbar-brand { color: #fff !important; }

.hero-dashboard {
  background: linear-gradient(120deg, var(--brand-teal) 0%, var(--brand-navy) 60%, #0a1128 100%);
  color: #fff;
  border-radius: 0 0 40px 40px;
  position: relative;
  overflow: hidden;
}
.hero-dashboard::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255,140,66,.35), transparent 70%);
  border-radius: 50%;
}

.search-card {
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 15px 40px rgba(0,0,0,.15);
}

.stat-pill {
  background: rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 14px 18px;
}

.dest-card {
  border-radius: 18px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(20,33,61,.15) !important;
}
.dest-img-wrap { position: relative; }
.dest-img-wrap img { height: 190px; object-fit: cover; width: 100%; }
.dest-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: linear-gradient(135deg, var(--brand-sunset-1), var(--brand-sunset-2));
  color: #fff;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
}
.dest-rating {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(20,33,61,.85);
  color: #ffd166;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 600;
}

.user-avatar-circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-sunset-1), var(--brand-sunset-2));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}

.sidebar-profile {
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 10px 30px rgba(20,33,61,.06);
}

.section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}
.section-title::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 60px; height: 4px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--brand-sunset-1), var(--brand-sunset-2));
}

@media (max-width: 767.98px) {
  .auth-visual { display: none; }
}
