html {
  scroll-behavior: smooth;
}

/* BODY */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #ffffff;
  color: #111;
}

/* ================= HEADER ================= */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffff;
  border-bottom: 2px solid #c62828;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
}

/* LOGO */
.logo img {
  height: 52px;
}

/* DESKTOP NAV */
.nav-links a {
  margin: 0 12px;
  text-decoration: none;
  font-weight: 600;
  color: #111;
}

.nav-links a:hover {
  color: #c62828;
}

/* PAY BUTTON */
.pay-btn {
  background: #c62828;
  color: #fff !important;
  padding: 8px 14px;
  border-radius: 6px;
}

/* MENU TOGGLE */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* ================= MOBILE MENU ================= */
.mobile-menu {
  position: fixed;
  right: -100%;
  top: 0;
  width: 270px;
  height: 100%;
  background: #fff;
  padding: 22px;
  transition: .3s;
  box-shadow: -3px 0 10px rgba(0,0,0,.3);
  z-index: 2000;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  color: #111;
}

.mobile-menu a:hover {
  color: #c62828;
}
/* ===== HOMEPAGE SLIDESHOW ===== */
.slideshow {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}


/* ================= HERO SLIDESHOW ================= */
.hero {
  margin-top: 90px;
  height: 360px;
  position: relative;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s;
}

.slide.active {
  opacity: 1;
}

/* ================= SECTIONS ================= */
section {
  padding: 80px 18px;
  max-width: 1100px;
  margin: auto;
}

h1,
h2 {
  color: #c62828;
}

/* FOOTER */
footer {
  background: #111;
  color: white;
  padding: 30px;
  text-align: center;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    height: 260px;
  }
}
