body {
  font-family: "Poppins", sans-serif;
  background-color: #fff;
  margin: 0;               /* ❌ Removed margin-top gap */
  padding: 0;
}

.text-maroon {
  color: #5b1818;
}

:root {
  --maroon: #5b1818;
  --gold: #f1b81b;
}

/* ================= SLIDER ================= */
.perfect-slider {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  max-height: 700px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;           /* ✅ Removed top space */
  padding: 0;
}

.perfect-slide {
  display: none;
  width: 100%;
  height: 100%;
  text-align: center;
  margin: 0;           /* ✅ Ensure no margin on slides */
  padding: 0;
}

.perfect-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Keeps full image visible */
  background-color: #f9f3e4;
  display: block;
  margin: 0;
  padding: 0;
}

.perfect-slide.active {
  display: block;
}

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: rgba(0,0,0,0.4);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 5px;
  z-index: 10;
  transition: background 0.3s;
}

.slider-btn:hover {
  background: rgba(0,0,0,0.7);
}

.prev { left: 15px; }
.next { right: 15px; }

/* Responsive Slider */
@media (max-width: 768px) {
  .perfect-slider {
    max-height: 400px;
  }
  .slider-btn {
    font-size: 1.5rem;
    padding: 0.4rem 0.8rem;
  }
}

/* ================= HERO IMAGE ================= */
.hero-img {
  height: 90vh;
  object-fit: cover;
  filter: brightness(75%);
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.4);
  bottom: 20%;
  position: absolute;
}

/* ================= BUTTONS ================= */
.text-maroon { color: #5b1818; }

.btn-maroon {
  background-color: #5b1818;
  color: #fff;
  border: none;
}
.btn-maroon:hover {
  background-color: #741f1f;
}

.btn-outline-maroon {
  border: 1px solid #5b1818;
  color: #5b1818;
}
.btn-outline-maroon:hover {
  background-color: #5b1818;
  color: #fff;
}

/* ================= FOOTER ================= */
footer {
  letter-spacing: 0.5px;
  margin-top: 0 !important;  /* ✅ No space before footer */
  padding-top: 0 !important;
}

/* ================= FIXED NAVBAR COMPATIBILITY ================= */
.navbar.fixed-top + * {
  margin-top: 0 !important;  /* ✅ Prevent Bootstrap’s auto offset */
}


