/* General Reset */
body {
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

/* Navbar */
.navbar {
  padding: 15px 0;
}
.navbar-brand {
  font-size: 1.5rem;
  letter-spacing: 1px;
}
.navbar .nav-link {
  margin-left: 20px;
  transition: color 0.3s ease;
}
.navbar .nav-link:hover {
  color: #dc3545; /* Bootstrap red */
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.hero .swiper {
  height: 100%;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55); /* adjust 0.55 for lighter/darker */
  z-index: 5; /* sits above images but below text */
}
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;   /* makes sure text is above the swiper images */
  text-align: center;
}
.hero img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero-text h1 {
  font-size: 2.8rem;
  font-weight: 700;
}
.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* About Teaser */
section h2 {
  font-size: 2rem;
}
section p {
  max-width: 700px;
  margin: auto;
  font-size: 1rem;
}

/* Footer */
footer {
  font-size: 0.9rem;
}
