/* Global Styles */
body {
  font-family: 'Georgia', serif;
  background-color: #ffffff;
  color: #333;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

.bg-maroon {
  background-color: #800000;
}

.text-gold {
  color: #d4af37 ;
}

.btn-gold {
  background-color: #d4af37;
  color: #800000;
  border: none;
}

.btn-gold:hover {
  background-color: #c19d2c;
  color: #fff;
}

/* Navbar Styling */
.navbar {
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Hero Banner Section */
.hero {
  height: 90vh;
  background: url('../images/banner.jpg') center center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}


.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(128, 0, 0, 0.6); /* maroon overlay */
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
}

.hero p {
  font-size: 1.2rem;
}
.text-maroon {
  color: #800000;
}


/* Footer */
footer {
  background-color: #800000;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
}
html {
  scroll-behavior: smooth;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}
/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1050;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  border: 4px solid #d4af37;
  border-radius: 12px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

