:root {
  --brand: #0e7c66;
  --brand-dark: #0a5a4b;
}

body {
  font-family: 'Poppins', sans-serif;
}

.navbar-brand { letter-spacing: 1px; }
.navbar-logo {
  height: 42px;
  width: 42px;
  object-fit: cover;
  border-radius: 50%;
}
.hero-logo {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,.85);
  box-shadow: 0 6px 20px rgba(0,0,0,.35);
}
.hero {
  background: linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
              url('https://images.unsplash.com/photo-1503220317375-aaad61436b1b?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  color: #fff;
  padding: 7rem 1rem;
  text-align: center;
}

.hero h1 { font-weight: 700; font-size: 2.8rem; }
.hero p { font-size: 1.2rem; opacity: .95; }

.btn-brand {
  background: var(--brand);
  color: #fff;
  border: none;
}
.btn-brand:hover { background: var(--brand-dark); color: #fff; }

.card-dest {
  border: none;
  border-radius: .75rem;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  transition: transform .2s ease, box-shadow .2s ease;
  height: 100%;
}
.card-dest:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,.14);
}
.card-dest img { height: 210px; object-fit: cover; width: 100%; }

.price-tag {
  font-weight: 700;
  color: var(--brand);
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.3);
  z-index: 1000;
}
.whatsapp-float:hover { background: #1ebe57; }

section { padding: 3.5rem 0; }
