body {
  margin: 0;
  min-height: 100vh;               /* ⬅️ FIX */
  background: url("assets/Waves.jpg") no-repeat center center;
  background-size: cover;         
  font-family: "Montserrat";
  font-weight: 500;
}
.page-wrapper {
  min-height: calc(100vh - 88px); /* navbar height */
  padding-top: 120px;
  padding-bottom: 120px;

  display: flex;
  flex-direction: column;
  align-items: center;
}
.royal-navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(180deg, #F7F2E8, #EFE5D3);
  border-bottom: 1px solid rgba(176,138,60,0.4);
}

/* GRID layout ensures true centering */
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 14px 40px;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

/* Empty spacer */
.nav-spacer {
  height: 1px;
}

/* CENTER LINKS */
.nav-links {
  display: flex;
  justify-content: center;
  gap: 36px;
}

.nav-links a {
  font-family: "Montserrat";
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #7A4A00;
  text-decoration: none;
  position: relative;
}

/* Elegant underline hover */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #B08A3C;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* REGISTER BUTTON (RIGHT) */
.nav-cta {
  justify-self: end;
  font-family: "Cinzel", serif;
  font-size: 20px;
  letter-spacing: 2px;
  padding: 10px 34px;
  color: #7A4A00;
  border: 2px solid #B08A3C;
  text-decoration: none;
  background: transparent;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: linear-gradient(135deg, #B08A3C, #E6C9A8);
  color: #4A2A00;
}


/* CENTER FRAME */
.regal-content {
  max-width: 900px;   /* ⬅️ KEY CHANGE */
  margin: 0 auto;
  text-align: center;
}


.lg1{
  height: 330px;
  margin-top: 40px;
}


.regal-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.regal-logo {
  width: 90%;
  height: auto;
  margin-top: -180px;
}
.intro {
  font-size: 30px;
  font-family: "Montserrat";
   font-weight: 500;
  margin-top: -50px;
   color: #ffffff;
}

/* QR */
.qr-wrapper {
  display: flex;
  justify-content: center;
  margin: 42px 0;
}

.qr-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: rgba(255,255,255,0.12);
  border-radius: 16px;
  backdrop-filter: blur(6px);
}

.qr-card img {
  width: 130px;
  height: 130px;
  background: #fff;
  padding: 6px;
  border-radius: 6px;
}

.qr-text span {
  font-size: 30px;
  opacity: 0.85;
  font-family: "Montserrat";
  font-weight: 500;
  color: white;
}

.qr-text strong {
  display: block;
  font-size: 30px;
  font-weight: 700;
  font-family: "Montserrat";
  color: white;
}


/* HEADINGS & TEXT */
h5{
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1.8px;
margin-top: -80px;
color: white;
font-family: "Montserrat";

}

.txt{
  font-size: 26px;
  line-height: 1.7;

  color: white;
  font-weight: 500;
  font-family: "Montserrat";
}

/* PRICING */
.pricing {
  font-size: 24px;
  font-weight: 500;
  font-family: "Montserrat";
  color: white;
}

.note {
   font-size: 22px;
  font-weight: 500;
  font-family: "Montserrat";
  color: white;
}

/* DATE */
.date-wrapper {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
    margin-top:50px;
  text-align: center;

}

/* Date styling */
.event-date {
  font-family: "Montserrat", bold;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #ffffff; /* exact poster gold */
  margin-top: -150px;
}

/* Venue */
.venue {
  font-family: "Montserrat";
  font-size: 24px;
  color: #ffffff;
  font-weight: 500;
  line-height: 1.6;
 
}
/* Ornament divider before date */
.ornament-divider {
  display: flex;
  justify-content: center;
    margin-top:-140px;
 
}
.intro1 {
    font-size: 25px;
  font-weight: 500;
  font-family: "Montserrat";
  color: white;

}
.ornament-divider img {
  width: 580px;      /* adjust if needed */
  max-width: 100%;
  height: auto;
  opacity: 0.95;     /* soft royal look */
}

/*tablet*/
@media (max-width: 1030px) {

  /* NAVBAR */
  .nav-inner {
    padding: 12px 28px;
    grid-template-columns: auto 1fr auto;
  }

  .nav-links {
    justify-content: flex-start; /* shift links left */
    gap: 26px;
  }

  .nav-links a {
    font-size: 18px;
  }

  .nav-cta {
    font-size: 18px;
    padding: 8px 26px;
  }

  /* LOGOS */
  .lg1 {
    height: 260px;
    margin-top: 30px;
  }

  .regal-logo {
    width: 85%;
    margin-top: -140px;
  }

  /* QR */
  .qr-card img {
    width: 110px;
    height: 110px;
  }

  .qr-text span,
  .qr-text strong {
    font-size: 24px;
  }

  /* TEXT */
  .intro,
  .txt,
  .pricing,
  .note,
  .intro1 {
    font-size: 22px;
  }

  h5 {
    font-size: 24px;
    margin-top: -50px;
  }

  /* DATE */
  .event-date {
    font-size: 26px;
    margin-top: -100px;
  }

  .venue {
    font-size: 20px;
  }

  .ornament-divider img {
    width: 460px;
  }
}
/* mobile*/
@media (max-width: 770px) {

  /* PAGE WRAPPER */
  .page-wrapper {
    padding-top: 100px;
    padding-bottom: 80px;
  }

  /* NAVBAR */
  .nav-inner {
    padding: 10px 18px;
    
  }

  .nav-links {
    justify-content: center;
    gap: 18px;
  }

  .nav-links a {
    font-size: 14px;
    letter-spacing: 0.5px;
  }

  .nav-cta {
    font-size: 14px;
    padding: 6px 18px;
  }

  /* LOGOS */
  .lg1 {
    height: 200px;
    margin-top: 60px;
  }

  .regal-logo {
    width: 100%;
    margin-top: -110px;
  }

  /* INTRO */
  .intro {
    font-size: 18px;
    margin-top: -20px;
  }

  /* QR */
  .qr-card {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }

  .qr-card img {
    width: 100px;
    height: 100px;
  }

  .qr-text span,
  .qr-text strong {
    font-size: 18px;
    text-align: center;
  }

  /* TEXT */
  .txt,
  .pricing,
  .note,
  .intro1 {
    font-size: 16px;
    line-height: 1.6;
    padding: 0 14px;
  }

  h5 {
    font-size: 20px;
    
  }

  /* DATE FIX (CRITICAL) */
  .date-wrapper {
    position: relative;
    margin-top: 30px;
    transform: none;
    left: auto;
  }

  .event-date {
    font-size: 20px;
    margin-top: -80px;
  }

  .venue {
    font-size: 16px;
    padding: 0 16px;
  }

  /* ORNAMENT */
  .ornament-divider {
    margin-top: -70px;
  }

  .ornament-divider img {
    width: 300px;
  }
}
