:root {
  --brand: #0b6e4f;
  --brand-dark: #094f39;
  --accent: #d4af37;
}

body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; color: #22282b; }

.text-brand { color: var(--brand) !important; }
.bg-brand { background-color: var(--brand) !important; }
.text-accent { color: var(--accent) !important; }
.bg-accent { background-color: var(--accent) !important; }
.btn-brand { background-color: var(--brand); border-color: var(--brand); color: #fff; }
.btn-brand:hover { background-color: var(--brand-dark); border-color: var(--brand-dark); color: #fff; }
.topbar { background-color: var(--brand-dark); }
.site-footer { background-color: var(--brand-dark); }

/* Christmas theme: gentle falling snow overlay */
.snowfall {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1040;
}
.snowfall .snowflake {
  position: absolute;
  top: -5%;
  color: #fff;
  text-shadow: 0 0 3px rgba(0,0,0,.2);
  animation-name: snow-fall;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes snow-fall {
  0% { transform: translateY(-10vh) translateX(0); }
  50% { transform: translateY(50vh) translateX(15px); }
  100% { transform: translateY(110vh) translateX(-15px); }
}
@media (prefers-reduced-motion: reduce) {
  .snowfall { display: none; }
}

.announcement-bar {
  background-color: var(--brand);
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.announcement-bar .marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee-scroll 30s linear infinite;
  will-change: transform;
}
.announcement-bar:hover .marquee-track { animation-play-state: paused; }
.announcement-bar .marquee-item {
  display: inline-block;
  padding: 0.4rem 3rem;
  font-size: 0.9rem;
}
.announcement-bar .marquee-item a { color: #fff; text-decoration: underline; }
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .announcement-bar .marquee-track { animation: none; }
}

.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 6rem 0 5rem;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.65));
}
.hero .container { position: relative; z-index: 1; }

.location-chip {
  display: inline-block; padding: .4rem 1rem; border-radius: 999px;
  background: #fff; color: #22282b; text-decoration: none; margin: .25rem;
  border: 1px solid #dee2e6; font-size: .9rem;
}
.location-chip:hover { background: var(--brand); color: #fff; border-color: var(--brand); }

.property-card { transition: transform .15s ease, box-shadow .15s ease; border: none; }
.property-card:hover { transform: translateY(-4px); box-shadow: 0 .75rem 1.5rem rgba(0,0,0,.1); }
.property-card .card-img-top { height: 200px; object-fit: cover; }

.stat-counter { font-size: 2.25rem; font-weight: 700; color: var(--brand); }

.floating-whatsapp {
  position: fixed; bottom: 24px; right: 24px; z-index: 1050;
  background: #25D366; color: #fff; width: 58px; height: 58px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; box-shadow: 0 4px 12px rgba(0,0,0,.25); text-decoration: none;
}
.floating-whatsapp:hover { color: #fff; transform: scale(1.05); }

.footer-link { color: rgba(255,255,255,.7); text-decoration: none; }
.footer-link:hover { color: #fff; }

.diaspora-step { border-left: 3px solid var(--brand); padding-left: 1rem; margin-bottom: 1.5rem; position: relative; }
.diaspora-step .step-number {
  position: absolute; left: -19px; top: 0; background: var(--brand); color: #fff;
  width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem;
}

.pricing-table th { background: var(--brand); color: #fff; }

.gallery-thumb { cursor: pointer; height: 160px; object-fit: cover; width: 100%; border-radius: .5rem; }

.admin-sidebar { min-height: 100vh; background: #101a14; }
.admin-sidebar a { color: rgba(255,255,255,.75); text-decoration: none; display: block; padding: .55rem 1rem; border-radius: .4rem; }
.admin-sidebar a:hover, .admin-sidebar a.active { background: var(--brand); color: #fff; }
