body {
  background-color: #0b0b0b;
  color: #f5c400;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  overflow-y: scroll;
}

/* NAVBAR */
.navbar {
  border-bottom: 2px solid #f5c400;
  position: fixed;
  width: 100%;
      z-index: 1000;
}

.nav-link {
  color: #aaa !important;
  font-weight: 600;
  border-bottom: 2px solid transparent;
}

.nav-link.active {
  color: #f5c400 !important;
  border-bottom-color: #f5c400;
}

/* 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 #f5c400;
  padding: 20px;
  border-radius: 10px;
  color: #ddd;
}

/* MENU CARDS */
.menu-card {
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  transition: transform .3s;
  border: 1px solid #222;
}

.menu-card:hover {
  transform: translateY(-8px);
  border-color: #f5c400;
}

.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: #f5c400;
  font-weight: bold;
}

/* CONTACT */
.contact-box {
  background: #111;
  border: 1px solid #f5c400;
  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: #f5c400;
  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 #f5c400;
}

/* 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/hero.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: #f5c400; /* 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: #f5c400;
  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: #f5c400;
  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,196,0,0.15);
  color: #f5c400;
  border-radius: 30px;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}








