/* Keep navbar visible on top of images */
body { padding-top: 70px; }

.custom-navbar {
  background: rgba(0,0,0,0.82);
  border: 0;
}
.custom-navbar .navbar-nav > li > a { color: #fff !important; }
.custom-navbar .navbar-nav > li > a:hover { color: #c40000 !important; }
.brand-logo img { height: 34px; width: auto; margin-top: -6px; }

/* Hero text readable */
.hero-caption .hero-title { color:#fff !important; text-shadow: 0 2px 10px rgba(0,0,0,.55); }

/* Top notice bar */
.top-notice {
  background: #c40000;
  color: #fff;
  padding: 8px 0;
  text-align:center;
  font-weight: 600;
}
.top-notice p { margin: 0; }

/* section spacing */
.section-pad { padding: 70px 0; }
.section-pad-2 { padding: 70px 0 0 0; }

/* Gallery clean grid */
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 25px;
}
.gallery-grid img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius: 10px;
  cursor:pointer;
  background:#f2f2f2;
}

/* Gallery modal */
.gallery-modal-content{
  background: #000;
  position: relative;
  border-radius: 12px;
}
.gallery-close{
  position:absolute;
  right:12px;
  top:8px;
  color:#fff;
  opacity:1;
  z-index:5;
  font-size:32px;
}
#galleryCarousel .item img{
  width:100%;
  height:auto;
  max-height: 80vh;
  object-fit: contain;
  margin: 0 auto;
}

/* Menu modal */
.menu-modal-content{
  border-radius: 12px;
  overflow:hidden;
}
.menu-modal-header{
  padding: 12px 18px;
  background: #111;
  color:#fff;
}
.menu-close{
  position:absolute;
  right:12px;
  top:8px;
  color:#fff;
  opacity:1;
  z-index:5;
  font-size:32px;
}
.menu-modal-body{
  height: 80vh;
  background: #000;
}
#menuModalFrame{
  width: 100%;
  height: 100%;
}

/* Menu cards */
.menu-card{
  display:block;
  text-decoration:none !important;
  margin: 10px 0 20px;
  color:#111;
}
.menu-card img{
  width:100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #eee;
}
.menu-card span{
  display:block;
  margin-top: 10px;
  font-weight: 700;
}
.menu-card-wide{
  margin-top: 25px;
  padding: 18px;
  border: 1px solid #eee;
  border-radius: 12px;
  background:#fafafa;
}

/* Carousel arrows (Font Awesome) */
.carousel-control{ background:none !important; width:70px; }
.carousel-arrow{
  font-size: 54px;
  color: #fff;
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  text-shadow: 0 2px 12px rgba(0,0,0,.7);
}
.carousel-control.left .carousel-arrow{ left:18px; }
.carousel-control.right .carousel-arrow{ right:18px; }
.carousel-control:hover .carousel-arrow{ color:#c40000; }

/* Map wrapper */
.map-wrap iframe { display:block; }
/* Menu modal: make images fit without scrolling */
.menu-modal-body{
  height: 80vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

#menuModalImage{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

#menuModalFrame{
  width: 100%;
  height: 100%;
  display: block;
  background: #fff;
}

@media screen and (min-width: 768px) {
    .carousel-caption {

        padding-bottom: 70px!important;
    }
}
/* ===== Promo Popup ===== */
.promo-modal { width: 90%; max-width: 980px; }
.promo-modal-content {
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  position: relative;
}

.promo-close {
  position: absolute;
  right: 12px;
  top: 8px;
  color: #fff;
  opacity: 1;
  z-index: 10;
  font-size: 34px;
}

.promo-body {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 78vh;
}

.promo-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.promo-actions {
  padding: 12px 16px;
  background: #111;
  text-align: center;
}
.promo-actions .btn { margin: 0 6px; }

/* ===== Floating Toast Message ===== */
.toast-message {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #111;
  color: #fff;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,.3);
  opacity: 0;
  transform: translateY(20px);
  transition: all .4s ease;
  z-index: 9999;
}

.toast-message.show {
  opacity: 1;
  transform: translateY(0);
}

.toast-message.success {
  background: #28a745;
}

.toast-message.error {
  background: #c40000;
}
/* Navbar Phone Styling */
.nav-phone a {
  font-weight: 600;
  color: #fff !important;
}

.nav-phone a:hover {
  color: #fff !important;
}
.booking-phone {
  margin-bottom: 15px;
  font-weight: 600;
	color: #fff;
}

.booking-phone a {
  color: #fff;
  text-decoration: none;
}

.booking-phone a:hover {
  text-decoration: underline;
}