<style>
/* =====================
   GLOBAL
===================== */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f5f6f8;
  color: #333;
}

/* =====================
   HEADER (UPDATED)
===================== */
.header {
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  color: #fff;
  padding: 28px 20px;
  text-align: center;
}

.header h1 {
  margin: 0;
  font-size: 34px;
}

.header p {
  margin-top: 6px;
  font-size: 15px;
  opacity: 0.9;
}

/* =====================
   NAVIGATION
===================== */
/* =========================
   NAVBAR STYLE (FINAL)
========================= */
.main-header {
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1300px;
  margin: auto;
  padding: 1px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* DESKTOP MENU */
.nav-menu {
  display: flex;
  gap: 28px;
}

.nav-menu a {
  text-decoration: none;
  color: #111;
  font-size: 15px;
  font-weight: 500;
  position: relative;
}

/* Hover underline effect */
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #e67e22;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #111;
  margin: 4px 0;
  transition: 0.3s;
}

/* =========================
   MOBILE NAVBAR FIX (FINAL)
========================= */
@media (max-width: 900px) {

  /* Hide menu by default */
  .nav-menu {
    display: none !important;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 25px 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  }

  /* Show only when active */
  .nav-menu.active {
    display: flex !important;
  }

  /* Always show hamburger */
  .hamburger {
    display: flex !important;
  }

  /* Prevent page content pushing menu */
  body {
    overflow-x: hidden;
  }
}

/* =====================
   HERO
===================== */
.hero {
  height: 70vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero h2 {
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  padding: 22px 36px;
  border-radius: 12px;
  font-size: 32px;
  text-align: center;
}

/* =====================
   CONTENT SECTION
===================== */
.section {
  max-width: 1100px;
  margin: 50px auto;
  padding: 50px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

/* =====================
   IMAGE SHOWCASE
===================== */
.home-showcase {
  padding: 50px 0;
}

.showcase-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  padding: 0 20px;
}

.showcase-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.4s ease;
}

.showcase-item img:hover {
  transform: scale(1.06);
}

/* =====================
   SIGNATURE FEATURES (UPDATED)
===================== */
.features {
  background: linear-gradient(to bottom, #f7f7f7, #ececec);
  padding: 80px 20px;
}

.features-title {
  text-align: center;
  color: #2a5298;
  font-size: 40px;
  margin-bottom: 50px;
  font-family: Georgia, serif;
}

.features-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 35px 30px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
}

.feature-card .icon {
  font-size: 34px;
  color: #d4af37;
  margin-bottom: 14px;
}

.feature-card h3 {
  color: #222;
  font-size: 20px;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #666;
}

/* =====================
   FORMS
===================== */
.form {
  display: grid;
  gap: 12px;
}

.form input,
.form select,
.form textarea {
  padding: 12px;
  font-size: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.form button {
  padding: 14px;
  background: #2a5298;
  color: #fff;
  border: none;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
}

.form button:hover {
  background: #1e3c72;
}

/* MARRIAGE HALL HERO */
.hall-hero {
  height: 65vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hall-hero-overlay {
  background: rgba(0,0,0,0.55);
  color: #fff;
  padding: 40px 60px;
  border-radius: 14px;
  text-align: center;
}

.hall-hero-overlay h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.hall-hero-overlay p {
  font-size: 16px;
  opacity: 0.9;
}

/* INFO */
.hall-info ul {
  list-style: disc;
  padding-left: 20px;
  font-size: 16px;
}

/* GALLERY */
.hall-gallery-section {
  padding: 70px 20px;
  background: #f5f6f8;
}

.gallery-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  color: #2a5298;
}

.hall-gallery {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.hall-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.hall-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hall-card:hover img {
  transform: scale(1.1);
}

.hall-card span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 15px;
  text-align: center;
}

/* HOTEL HERO */
.hotel-hero {
  min-height: 70vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hotel-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.hotel-hero-overlay {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 40px 60px;
  background: rgba(0,0,0,0.35);
  border-radius: 14px;
}

/* ROOMS */
.hotel-rooms {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  font-size: 36px;
  color: #2a5298;
  margin-bottom: 60px;
}

.room-row {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 70px;
}

.room-row.reverse {
  flex-direction: row-reverse;
}

.room-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.room-content h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.room-content p {
  margin-bottom: 15px;
  color: #555;
}

.room-content ul {
  padding-left: 18px;
  margin-bottom: 15px;
}

.room-price {
  font-size: 20px;
  font-weight: bold;
  color: #2a5298;
}

/* STAY EXPERIENCE */
.stay-experience {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 70px 20px;
  background: #f5f6f8;
}

.stay-content {
  flex: 1;
}

.stay-content h2 {
  font-size: 34px;
  margin-bottom: 12px;
}

/* STAY EXPERIENCE IMAGE SIZE FIX */
.stay-image img {
  width: 100%;
  max-width: 420px;      /* controls image size */
  border-radius: 16px;
  display: block;
  margin: 0 auto;        /* centers image */
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .room-row,
  .room-row.reverse,
  .stay-experience {
    flex-direction: column;
  }

  .hotel-hero-overlay {
    padding: 28px 22px;
  }
}

/* ===== ROYAL PARADISE FOOTER ===== */

.footer{
background:#0b2c4d;
color:#ccc;
padding-top:60px;
padding-bottom:0;
margin:0;
}

.footer-container{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr 1fr 1fr;
gap:40px;
padding:0 20px 40px;
}

.footer-col {
}

.footer-col h3{
color:#d4af37;
margin-bottom:15px;
font-size:21px;
}

.contact p{
margin-bottom:10px;
font-size:14px;
line-height:1.6;
}

/* center logo */

.center{
text-align:center;
}

.center img{
height: 100px;px;
margin-bottom:20px;
}

.tagline{
color:#aaa;
margin-bottom:20px;
}

/* social icons */

.social-icons a{
display:inline-flex;
align-items:center;
justify-content:center;
width:40px;
height:40px;
margin:0 6px;
background:#0b2c4d;
border-radius:50%;
color:#fff;
font-size:16px;
transition:0.3s;
}

.social-icons a:hover{
background:#d4af37;
color:#000;
}

/* links */

.links a{
display:block;
color:#e6e6e6;
text-decoration:none;
margin-bottom:10px;
font-size:16px;
}

.links a:hover{
color:#d4af37;
}

.footer-bottom{
background:#111;
text-align:center;
padding:15px;
font-size:13px;
border-top:1px solid #222;
color:#aaa;
}

/* NEW STYLES FOR MARRIAGE HALL PAGE */

.about-hall h2 {
  color: #2a5298;
  margin-bottom: 20px;
}

.about-hall p {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
}

.amenities {
  text-align: center;
}

.amenities h2 {
  color: #2a5298;
  margin-bottom: 40px;
}

.amenities-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.amenity {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.amenity:hover {
  transform: translateY(-5px);
}

.amenity i {
  font-size: 40px;
  color: #d4af37;
  margin-bottom: 15px;
}

.amenity h3 {
  color: #333;
  margin-bottom: 10px;
}

.amenity p {
  color: #666;
  line-height: 1.5;
}

.packages h2 {
  text-align: center;
  color: #2a5298;
  margin-bottom: 40px;
}

.package-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.package-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s;
}

.package-card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.package-card h3 {
  color: #2a5298;
  margin-bottom: 10px;
}

.package-card p {
  color: #666;
  margin-bottom: 20px;
}

.package-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.package-card li {
  padding: 5px 0;
  color: #555;
}

.price {
  font-size: 24px;
  font-weight: bold;
  color: #d4af37;
}

.cta {
  text-align: center;
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  color: #fff;
  padding: 60px 30px;
}

.cta h2 {
  margin-bottom: 20px;
  font-size: 32px;
}

.cta p {
  font-size: 18px;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  background: #d4af37;
  color: #000;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background: #b8952a;
}

/* mobile */

@media(max-width:900px){

.footer-container{
grid-template-columns:1fr;
text-align:center;
}

}

/* ===== ROYAL PARADISE FOOTER for index home ===== */

.footerhome{
background:#0b2c4d;
color:#ccc;
padding-top:60px;
padding-bottom:0;
margin:0;
}

.footer-containerhome{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr 1fr 1fr;
gap:40px;
padding:0 20px 40px;
}

.footer-colhome {
}

.footer-colhome h3{
color:#d4af37;
margin-bottom:15px;
font-size:21px;
}

.contacthome p{
margin-bottom:10px;
font-size:14px;
line-height:1.6;
}

/* center logo */

.centerhome{
text-align:center;
}

.centerhome img{
height:80px;
margin-bottom:15px;
}

.taglinehome{
color:#aaa;
margin-bottom:20px;
}

/* social icons */

.social-iconshome a{
display:inline-flex;
align-items:center;
justify-content:center;
width:40px;
height:40px;
margin:0 6px;
background:#0b2c4d;
border-radius:50%;
color:#fff;
font-size:16px;
transition:0.3s;
}

.social-iconshome a:hover{
background:#d4af37;
color:#000;
}

/* links */

.linkshome a{
display:block;
color:#111;
text-decoration:none;
margin-bottom:10px;
font-size:16px;
}

.linkshome a:hover{
color:#d4af37;
}

.footer-bottomhome{
background:#111;
text-align:center;
padding:15px;
font-size:13px;
border-top:1px solid #222;
color:#aaa;
}

/* mobile */

@media(max-width:900px){

.footer-containerhome{
grid-template-columns:1fr;
text-align:center;
}

}

/* NEW STYLES FOR RESTAURANT PAGE */

.restaurant-hero {
  height: 65vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.restaurant-hero-overlay {
  background: rgba(0,0,0,0.55);
  color: #fff;
  padding: 40px 60px;
  border-radius: 14px;
  text-align: center;
}

.restaurant-hero-overlay h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.restaurant-hero-overlay p {
  font-size: 16px;
  opacity: 0.9;
}

.about-restaurant h2 {
  color: #2a5298;
  margin-bottom: 20px;
}

.about-restaurant p {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
}

.specialties h2 {
  text-align: center;
  color: #2a5298;
  margin-bottom: 40px;
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.specialty-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.specialty-card:hover {
  transform: translateY(-5px);
}

.specialty-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.specialty-card h3 {
  color: #2a5298;
  margin-bottom: 10px;
}

.specialty-card p {
  color: #666;
  line-height: 1.5;
}

.restaurant-gallery-section {
  padding: 70px 20px;
  background: #f5f6f8;
}

.restaurant-gallery {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.1);
}

.gallery-card span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 15px;
  text-align: center;
}

/* RESPONSIVE FOR RESTAURANT */
@media (max-width: 900px) {
  .restaurant-hero-overlay {
    padding: 28px 22px;
  }

  .specialties-grid,
  .restaurant-gallery {
    grid-template-columns: 1fr;
  }
}
</style>