* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  color: #fff;

  background-image: url('header-bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed; /* 👈 Makes background move on scroll */
  background-position: center center;
}


@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ✅ NAVIGATION */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

nav .logo {
  font-family: 'Cinzel', serif;
  font-size: 24px;
  color: #ff9966;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: white;
}

/* ✅ RESPONSIVE NAV */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    align-items: center;
    width: 100%;
    display: none;
    padding: 20px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}

/* ✅ HERO */
.hero-header {
  background-image: url('header-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll; /* ⬅️ Makes it move with page scroll */

  position: relative;
  z-index: 1;

  padding-top: 100px;
  min-height: 100vh;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  color: white;
  isolation: isolate; /* Keeps overlay behind text */
}

.hero-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* ⬅️ Faded dark overlay */
  z-index: -1;
}


.hero-header h1 {
  font-size: 48px;
  font-family: 'Cinzel', serif;
  color: #ff9966;
}

.hero-header span {
  color: #ff5e62;
}

.hero-header p {
  margin-top: 15px;
  font-size: 20px;
  color: #eee;
  font-style: italic;
}

/* ✅ SECTIONS */
.section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}

.section h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.card {
  background-color: #1e1e1e;
  padding: 20px;
  flex: 1 1 300px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 94, 98, 0.3);
}

.card h3 {
  margin-top: 0;
  color: #ff9966;
}

/* ✅ GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.gallery img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

/* ✅ CONTACT */
.contact-section {
  text-align: center;
  padding: 80px 20px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  margin-top: 50px;
}

.contact-section h2 {
  font-size: 36px;
  font-family: 'Cinzel', serif;
  color: #ff9966;
  margin-bottom: 15px;
}

.contact-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-btn {
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.3);
}

.contact-btn.whatsapp {
  background-color: #25D366;
}

.contact-btn.email {
  background-color: #ff5e62;
}

.contact-btn:hover {
  opacity: 0.85;
}

/* ✅ FOOTER */
footer {
  background-color: #000;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: #aaa;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
}

.lightbox .close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.nav-btn {
  position: absolute;
  top: 50%;
  font-size: 40px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  padding: 10px;
  user-select: none;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 5px;
}

.nav-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.prev {
  left: 30px;
}

.next {
  right: 30px;
}
.background-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* adjust darkness */
  z-index: -1; /* behind everything */
}
