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;
}
.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;
}



/* Frame image 
.regal-frame {
  width: 1200px;
  aspect-ratio: 2 / 3;

  background: url("assets/Waves.jpg") no-repeat center;
  background-size: contain;

  position: relative;
}*/

/* Inner content placement */
.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;
}

.regal-content p:last-of-type {
  margin-bottom: -50px;   /* ⬅️ pulls divider up */
}

.regal-content p {
  font-size: 30px;
  max-width: 100%;
  color: white;
}

.intro {
  font-size: 30px;
  font-family: "Montserrat";
   font-weight: 500;
  margin-top: -50px;
   color: #ffffff;
}

.date-wrapper {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  margin-top: -120px;

}

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

/* Venue */
.venue {
  font-family: "Montserrat";
  font-size: 20px;
  color: #ffffff;
  line-height: 1.6;
 
}
/* Ornament divider before date */
.ornament-divider {
  display: flex;
  justify-content: center;
    margin-top:-100px;
 
}

.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 slightly 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;
  }

  /* TEXT */
  .regal-content p,
  .intro {
    font-size: 24px;
  }

  /* ORNAMENT */
  .ornament-divider img {
    width: 480px;
  }
}

/*mobile*/
@media (max-width: 770px) {

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

  /* LINKS STACK OR CENTER */
  .nav-links {
    justify-content: center;
    gap: 18px;
  }

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

  /* REGISTER BUTTON */
  .nav-cta {
    font-size: 14px;
    padding: 6px 18px;
  }

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

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

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

  .regal-content p {
    font-size: 18px;
  }

  /* DATE & VENUE */
  .date-wrapper {
    position: relative;
    margin-top: 30px;
  }

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

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

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

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

  /* IMPORTANT: prevent content cut */
  .regal-content p:last-of-type {
    margin-bottom: 0;
  }
}
