body {
  background-color: #0b0b0b;
  color: #D00700;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  overflow-y: scroll;
}

/* NAVBAR */
.navbar {
  border-bottom: 2px solid #D00700;
  position: fixed;
  width: 100%;
      z-index: 1000;
}

.nav-link {
  color: #aaa !important;
  font-weight: 600;
  border-bottom: 2px solid transparent;
}

.nav-link.active {
  color: #D00700 !important;
  border-bottom-color: #D00700;
}

/* HERO */
.hero {
  height: 90vh;
  background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.9)),
    url("https://picsum.photos/1920/1080?rooftop");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
}

.hero p {
  color: #ddd;
  font-size: clamp(16px, 3vw, 22px);
}

/* SECTION TITLES */
.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
}

/* REVIEWS */
.review-card {
  background: #111;
  border: 1px solid #D00700;
  padding: 20px;
  border-radius: 10px;
  color: #ddd;
}

/* MENU CARDS */
.menu-card {
  background: #000000;
  border-radius: 12px;
  overflow: hidden;
  transition: transform .3s;
  border: 1px solid #111;
}

.menu-card:hover {
  transform: translateY(-8px);
  border-color: #D00700;
}

.menu-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.menu-card .card-body {
  text-align: center;
}

.menu-card h5 {
  color: white;
}

.menu-card span {
  color: #D00700;
  font-weight: bold;
}

/* CONTACT */
.contact-box {
  background: #111;
  border: 1px solid #D00700;
  border-radius: 10px;
  padding: 30px;
}

.contact-box input,
.contact-box select,
.contact-box textarea {
  background: black;
  border: 1px solid #333;
  color: white;
}

.contact-box button {
  background: #D00700;
  border: none;
  font-weight: bold;
}

/* FOOTER */
footer {
  border-top: 1px solid #222;
  color: #777;
}

/* Transparent navbar ONLY on index */
.navbar.index-nav {
  background: transparent;
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

/* Solid navbar after scroll */
.navbar.scrolled {
  background: black !important;
  border-bottom: 2px solid #D00700;
}

/* Bubble glass effect */
.navbar.index-nav {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.index-hero {
  height: 100vh;
  background: linear-gradient(
      rgba(0,0,0,0.4),
      rgba(0,0,0,0.9)
    ),
    /*url("https://picsum.photos/1920/1080?rooftop");*/
    url("./imgs/home/yabangeehero.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: 1px;
  color: #D00700; /* Feraye yellow */
  text-shadow: 0 6px 20px rgba(0,0,0,0.7);
}

.hero-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: #ffffff;
  opacity: 0.9;
}

.opening-hours {
  max-width: 420px;
  margin: auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border-radius: 18px;
}

.hours-list p {
  margin: 0.5rem 0;
  opacity: 0.9;
}

#openStatus.open {
  color: #28a745;
  text-shadow: 0 0 10px rgba(40,167,69,0.6);
}

#openStatus.closed {
  color: #dc3545;
  text-shadow: 0 0 10px rgba(220,53,69,0.6);
}

.card {
  border-radius: 20px;
}

table tr td {
  font-size: 0.95rem;
}

.btn-danger {
  border-radius: 50%;
  width: 32px;
  height: 32px;
  padding: 0;
}

.table-scroll {
  max-height: 420px;        /* adjust if you want */
  overflow-y: auto;
  border-radius: 12px;
}

/* Keep header visible while scrolling */
.table-scroll thead th {
  position: sticky;
  top: 0;
  z-index: 2;
}

/* Admin + forms input styling */
.form-control,
.form-select,
textarea {
  background-color: #3a3a3a;   /* lighter gray */
  color: #f5f5f5;
  border: 1px solid #555;
}

.form-control::placeholder,
textarea::placeholder {
  color: #b0b0b0;
}

.form-control:focus,
.form-select:focus,
textarea:focus {
  background-color: #3f3f3f;
  color: #ffffff;
  border-color: #D00700;
  box-shadow: 0 0 0 0.15rem rgba(245, 196, 0, 0.3);
}


/* Disabled (optional) */
.form-control:disabled {
  background-color: #1f1f1f;
  color: #777;
}

/*events home page*/
.featured-events {
  background: linear-gradient(180deg, #000, #0c0c0c);
}

.event-row {
  position: relative;
}

.event-media {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.event-media img,
.event-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.event-media:hover img,
.event-media:hover video {
  transform: scale(1.08);
}

.event-content {
  padding: 20px;
}

.event-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #D00700;
  margin-bottom: 15px;
}

.event-content p {
  color: #ddd;
  line-height: 1.7;
  max-width: 500px;
}

.event-tag {
  display: inline-block;
  margin-top: 15px;
  padding: 6px 14px;
  background: rgba(245, 0, 0, 0.15);
  color: #D00700;
  border-radius: 30px;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  font-weight: bold;
}

.text-red {
  color: #ff140c !important;
}

.border-red { 
  --bs-border-opacity: 1;
    border-color: #ff140c !important;
}

.btn-red{
    --bs-btn-color: #ffffff;
    --bs-btn-bg: #D00700;
    --bs-btn-border-color: #D00700;
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: #d01b15;
    --bs-btn-hover-border-color: #d01b15;
    --bs-btn-focus-shadow-rgb: 217, 164, 6;
    --bs-btn-active-color: #ffffff;
    --bs-btn-active-bg: #d2322c;
    --bs-btn-active-border-color: #d01b15;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(255, 255, 255, 0.125);
    --bs-btn-disabled-color: #ffffff;
    --bs-btn-disabled-bg: #D00700;
    --bs-btn-disabled-border-color: #D00700;
}

.bg-black {
    --bs-bg-opacity: 1;
    background-color: rgb(0 0 0) !important;
}



.event-media {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 12px;
}

.event-media .preview-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

.event-media video{
    width:100%;
    border-radius:12px;
    cursor:pointer;
}

.video-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.85);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.video-modal.active{
    display:flex;
}

#modalVideo{
    width:min(90vw,900px);
    max-height:90vh;
    border-radius:10px;
}

.close-btn{
    position:absolute;
    top:20px;
    right:30px;
    font-size:42px;
    color:#fff;
    background:none;
    border:none;
    cursor:pointer;
}



/*menu*/

html{scroll-behavior:smooth}
.menu-nav{
  top: 0;
  z-index: 9999;
  background:#000;

  padding:12px 10px;
  display:flex;
  gap:10px;

  overflow-x:auto;
  white-space:nowrap;

  border-bottom:1px solid rgba(255,255,255,0.05);
}

.menu-nav::-webkit-scrollbar{
  display:none; /* Chrome/Safari */
}

.menu-nav a{
  flex:0 0 auto;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.08);
  padding:10px 16px;
  border-radius:999px;
  color:#D00700;
  text-decoration:none;
  font-size:14px;
  backdrop-filter: blur(10px);
  transition:0.25s ease;
}

.menu-nav a:hover{
  background:rgba(255,255,255,0.15);
  transform:translateY(-1px);
}

.menu-nav a:active{
  transform:scale(0.95);
}

.menu-card{
  border-radius:10px;
  padding:10px;
  text-align:center;
}

.modal{
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.9);
  justify-content:center;
  align-items:center;
}
.modal img{
  max-width:90%;
  max-height:90%;
}
.close-btn{
  position:absolute;
  top:20px;
  right:20px;
  color:#fff;
  font-size:30px;
  cursor:pointer;
}

.menu-top{
  position: relative;
  background: #000;
}







