body {
  padding-top: 64px;
}

/* HERO */
.hero-section {
  margin-top: -64px; 
}

.hero-img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  filter: brightness(70%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 18%);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 2;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 600;
}

.hero-content p {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  opacity: 0.9;
}

/* SECTIONS */
.section {
  padding: 80px 0;
}

/* Default heading style (for white sections) */
.section-title {
  position: relative;
  display: inline-block;   
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: 0.4px;
  font-size: 2.4rem;   
  color: #111;  /* default dark for white bg */
}

.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  width: 60%;
  height: 4px;
  background: #ff9800;
  border-radius: 2px;
}

/* Headings on dark sections */
#event .section-title,
#gallery .section-title {
  color: #fff;
}

/* Description text */
.section-desc {
  max-width: 720px;
  margin: 24px auto 0;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  text-align: center;
}

/* DINE IN */
.dine-white {
  background: #fff;
}

/* NAVBAR LOGO */
.brand-logo {
  height: 36px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
}

/* FOOTER */
.footer-section {
  background: #121315;
  padding: 70px 0;
  color: #fff;
}

.footer-logo {
  height: 70px;
}

.footer-icons .social-icon {
  color: #1e90ff;
  font-size: 22px;
  margin: 0 12px;
  transition: 0.3s;
}

.footer-icons .social-icon:hover {
  color: #ffc107;
}

/* GALLERY */
.gallery-section {
  background: radial-gradient(circle at top, #1c232b, #0b0e12);
  padding: 90px 0;
}

.gallery-desc {
  color: #9aa4af;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1rem;
}

.gallery-desc {
  margin-top: 32px;  
}


.gallery-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  cursor: pointer;
  transition: 0.4s ease;
}

.gallery-img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0,0,0,0.6);
}

/* CONTACT */
.contact-section {
  padding: 80px 0;
  background: #fff;
}

.contact-form input,
.contact-form textarea {
  border-radius: 10px;
  padding: 12px;
}

/* MODAL */
.modal-content {
  border: none;
  background: transparent;
}

/* TENT SECTION */
.tent-section {
  background: #ffffff;  
  padding: 90px 0;
}

.tent-desc {
  max-width: 700px;
  margin: 0 auto 40px;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;}

  #tent .section-title {
  margin-bottom: 20px;  /* ⬅️ adds gap below heading */
}


.tent-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  transition: 0.4s ease;
}

.tent-img:hover {
  transform: scale(1.04);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Fix anchor offset for fixed navbar */
#tent, #contact, #gallery, #event {
  scroll-margin-top: 80px;
}

/* Wedding & Events section spacing */
#event .section-title {
  margin-bottom: 20px;
}

#event p {
  margin-top: 12px;
}

/* Main image style for Dine In & Tent */
.dine-main-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* FORCE navbar background */
.navbar,
.navbar.navbar-dark,
.navbar.bg-dark,
.navbar-dark.bg-dark {
  background-color: #121315 !important;
}

.custom-navbar {
  background-color: #121315 !important;
}

