@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&family=Source+Sans+3:wght@400;500;600;700&display=swap');

:root {
  --primary: #18253c;
  --secondary: #70b85d;
  --surface: #f3f6fb;
  --text: #1f2937;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  background-color: var(--surface);
  color: var(--text);
}

h1,
h2,
h3,
h4 {
  font-family: 'Libre Baskerville', serif;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition:
    opacity 0.9s ease-in-out,
    transform 6s ease-in-out;
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(24, 37, 60, 0.45), rgba(24, 37, 60, 0.68));
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide-1 {
  background-image: url('../images/naivasha_view.jpg');
}

.hero-slide-2 {
  background-image: url('../images/Lake_Naivasha_Country_club-768x436.jpg');
}

.hero-slide-3 {
  background-image: url('../images/SAWELA-LODGE.jpg');
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-dot {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 9999px;
  border: 1px solid rgb(255 255 255 / 0.65);
  background-color: rgb(255 255 255 / 0.3);
  transition: all 0.25s ease;
}

.hero-dot:hover,
.hero-dot.active {
  background-color: var(--secondary);
  border-color: var(--secondary);
  transform: scale(1.15);
}

.inner-banner {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.banner-home {
  background-image:
    linear-gradient(rgba(24, 37, 60, 0.35), rgba(24, 37, 60, 0.72)),
    url('https://images.unsplash.com/photo-1513875528455-1f4cf3f5f6af?auto=format&fit=crop&w=2000&q=80');
}

.banner-about {
  background-image:
    linear-gradient(rgba(24, 37, 60, 0.36), rgba(24, 37, 60, 0.74)),
    url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=2000&q=80');
}

.banner-venues {
  background-image:
    linear-gradient(rgba(24, 37, 60, 0.36), rgba(24, 37, 60, 0.74)),
    url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3?auto=format&fit=crop&w=2000&q=80');
}

.banner-travel {
  background-image:
    linear-gradient(rgba(24, 37, 60, 0.36), rgba(24, 37, 60, 0.74)),
    url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=2000&q=80');
}

.banner-destination {
  background-image:
    linear-gradient(rgba(24, 37, 60, 0.36), rgba(24, 37, 60, 0.74)),
    url('https://images.unsplash.com/photo-1516026672322-bc52d61a55d5?auto=format&fit=crop&w=2000&q=80');
}

.banner-hotels {
  background-image:
    linear-gradient(rgba(24, 37, 60, 0.36), rgba(24, 37, 60, 0.74)),
    url('https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=2000&q=80');
}

.banner-contact {
  background-image:
    linear-gradient(rgba(24, 37, 60, 0.36), rgba(24, 37, 60, 0.74)),
    url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?auto=format&fit=crop&w=2000&q=80');
}

.text-primary {
  color: var(--primary);
}

.text-secondary {
  color: var(--secondary);
}

.bg-primary {
  background-color: var(--primary);
}

.bg-secondary {
  background-color: var(--secondary);
}

.border-secondary {
  border-color: var(--secondary);
}

.nav-link {
  color: #374151;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--secondary);
  transform: translateY(-2px);
}

.nav-link.active-link {
  color: var(--primary);
  font-weight: 700;
}

.nav-link.active-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 3px;
  border-radius: 999px;
  background-color: var(--secondary);
}

.mobile-menu-link {
  color: #374151;
  transition: color 0.2s ease;
}

.mobile-menu-link:hover {
  color: var(--secondary);
}

.brand-logo {
  height: 48px;
  width: auto;
}

.card-hover {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

.section-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.section-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 35px -25px rgb(24 37 60 / 0.8);
}

.cta-gradient {
  background: linear-gradient(120deg, #18253c 0%, #1f3152 55%, #70b85d 100%);
}

.content-area p + p,
.content-area p + ul,
.content-area ul + p,
.content-area h2,
.content-area h3 {
  margin-top: 1.25rem;
}

.content-area ul {
  list-style: disc;
  padding-left: 1.5rem;
}

.content-area a {
  color: var(--primary);
  text-decoration: underline;
}

.page-sidebar .widget ul {
  list-style: none;
  padding-left: 0;
}

.page-sidebar .widget li + li {
  margin-top: 0.75rem;
}

.page-sidebar .widget a {
  color: var(--primary);
  transition: color 0.2s ease;
}

.page-sidebar .widget a:hover {
  color: var(--secondary);
}

.page-sidebar .widget p + p {
  margin-top: 0.75rem;
}

@media (max-width: 1023px) {
  .nav-link.active-link::after {
    display: none;
  }
}

@media (max-width: 767px) {
  .inner-banner {
    height: 300px;
  }
}
