/* ===== Header Layout ===== */
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px; /* Equal left & right spacing */
}

.header-logo {
  margin-right: 40px !important; /* Space between logo and nav menu */
}

.header-nav {
  display: flex;
  align-items: center;
  flex-grow: 1;
  justify-content: space-between;
}

.header-nav .collapse {
  margin-left: 0 !important;
  flex-grow: 1;
}

#header:hover .header-body{background:var(--light);}

/*====== Left Menu ====== */
.header-left-menu li a {
  position: relative;
  display: inline-block;
  color: #333;
  padding: 8px 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.header-left-menu li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary); /* gold tone */
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1; /* keep it behind text */
  border-radius: 4px; /* optional */
}

.header-left-menu li a:hover::before {
  opacity: 1; /* adjust transparency */
}

.header-left-menu li a:hover {
  color: #fff !important;
}

/* ===== Right Menu ===== */
.header-right-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  margin-left: auto;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

/* ===== Menu Links ===== */
.header-right-menu li a {
  position: relative;
  text-decoration: none;
  color: #333;
  font-size: 15px;
  /*font-weight: 500;*/
  transition: color 0.3s ease;
}

/* Animated underline effect */
.header-right-menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #b58933;
  transition: width 0.3s ease;
}

.header-right-menu li a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: #b58933;
}

.header-right-menu li a:hover::after {
  width: 100%;
}

/* ===== Reservations link highlight ===== */
.header-right-menu li:first-child a {
  position:relative;
}

.header-right-menu li:first-child a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #b58933;
  transition: width 0.3s ease, background-color 0.3s ease;
}

.header-right-menu li:first-child a:hover {
  color: #8f6a26;
}

.header-right-menu li:first-child a:hover::after {
  width: 100%;
  background-color: #a4941f;
}

/* ===== Newsletter Icon ===== */
.header-right-menu li a.newsletter-signup::after {
  display: none; /* disable underline pseudo-element */
}

.header-right-menu li a i {
  font-size: 18px;
  color: #555;
  transition: color 0.3s ease;
}

.header-right-menu li a:hover i {
  color: #b58933;
}

.header-right-menu li a:hover{text-decoration:none;}
.header-right-menu li a.newsletter-signup:hover{text-decoration:none;}
.header-btn-collapse-nav {
  margin-left: auto !important;
  order: 3; /* ensures it's the last element on the right */
}
.header-body{height:auto !important;}

li.mobile-highlight{display:none;}

/* ===== Video Background Section ===== */
.video-background,
.video-overlay,
.top-slider-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-background {
  overflow: hidden;
  background: #000;
  z-index: 1;
}

.video-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url('/images/uploads/large/home1-1618874354.jpg') center center / cover no-repeat !important;
  z-index: 1;
}

.video-background iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  height: 100vh;
  min-width: 100%;
  min-height: 56.25vw;
  transform: translate(-50%, -50%);
  object-fit: cover;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 2;
}

.video-background iframe.loaded {
  opacity: 1;
}

.video-overlay {
  /*background: rgba(0,0,0,0.35);*/
  z-index: 3;
}

/* Foreground Text Layer */
.top-slider-container {
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-logo {
  max-width: 700px;
  width: 80%;
  opacity: 0;
  transform: scale(0.9);
  animation: fadeZoomIn 1.5s ease forwards;
}

@keyframes fadeZoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/*Modal Form*/
.btn-close{float:right;}
.modal-dialog{max-width:650px;}

/*==Food Menus==*/
.menu-item {
	height: 420px;
	overflow: hidden;
	position: relative;
	margin-bottom: 30px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	transition: transform 0.3s ease;
}

.menu-item:hover {
	transform: translateY(-10px);
}

.menu-item::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0);
	transition: background 0.3s ease;
	pointer-events: none; 
}

.menu-item:hover::after {
	background: rgba(255, 255, 255, 0.25);
}

.menu-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	transition: transform 0.5s ease;
}

.menu-item:hover .menu-bg {
	transform: scale(1.1);
}

.menu-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 20px;
	text-align: center;
}

.menu-title {
	color: white;
	font-size:1.8em;
}

/**restaurant displays**/
.restaurant-item {
	height: 420px;
	overflow: hidden;
	position: relative;
	margin-bottom: 30px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	transition: transform 0.3s ease;
}

.restaurant-item:hover {
	transform: translateY(-10px);
}

.restaurant-item::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0);
	transition: background 0.3s ease;
	pointer-events: none; 
}

.restaurant-item:hover::after {
	background: rgba(255, 255, 255, 0.25);
}

.restaurant-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	transition: transform 0.5s ease;
}

.restaurant-item:hover .restaurant-bg {
	transform: scale(1.1);
}

.restaurant-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
	display: flex;
	align-items: center;
	justify-content: center;	
	text-align: center;
}

.restaurant-title {
	color: white;
	font-size:8em;
	font-family:'Allura', cursive;
	font-weight:500;	
}

.float-image-left {
  float: left;
  margin: 0 20px 10px 0;
  border-radius: 8px;
}

.float-image-right {
  float: right;
  margin: 0 0 10px 20px;
  border-radius: 8px;
}

/*Address header in privae events*/
.address-header {
  color: #333;
}

.site-text{font-size:1.3em;}

.divider {
  width: 60px;
  height: 3px;
  background: var(--bs-primary);
  border-radius: 3px;
}

.social-link {
  font-size: 1.25rem;
  color: #444;
  background: #f8f9fa;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: #fff;
  background: var(--bs-primary);
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  text-decoration:none;
}

a.address-link:hover{color:var(--primary) !important;}

/*slider at private events*/
.owl-nav button.owl-prev:before,
.owl-nav button.owl-next:before {
    content: none !important;
}

.owl-carousel,
.owl-carousel .owl-stage-outer,
.owl-carousel .owl-stage,
.owl-carousel .owl-item,
.owl-carousel .item {
    height: 100vh; /* make carousel and its items fill the full viewport height */
}

.owl-carousel .item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ensures the image fills the area nicely */
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next {
	width: 60px !important;   /* bigger button */
    height: 60px !important;
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: rgba(255,255,255,0.7) !important;
    border: none;
    border-radius: 50% !important;
    cursor: pointer;
	color:#000 !important;
    transition: background 0.3s !important;
}

.owl-nav button.owl-prev:hover,
.owl-nav button.owl-next:hover {
    background: rgba(255,255,255,0.9) !important;
}

.owl-nav button.owl-prev {
    left: 10px !important;
}

.owl-nav button.owl-next {
    right: 10px !important;
}

.owl-nav i {
    font-size: 18px !important;
    color: #333 !important;
}

.hours-of-operation{color:var(--primary);}
.hours-of-operation h2{font-size:4.2em;margin-bottom:0px;margin-top:0px !important;}
.hours-of-operation h3{font-family: 'Montserrat', sans-serif;font-size:1em;margin:0px;font-weight:bold; text-transform:capitalize;}
.newsletter-email::placeholder {color:var(--primary);opacity: 1;}
#footer p a,#footer, #footer p, #footer div{color:#fff; font-size:1em;letter-spacing:1px;}
#footer p strong{font-weight:500;}
#footer p a:hover{text-decoration:underline !important;}
.big-box{letter-spacing:1px;border:1px solid #fff;text-align:center;font-size:1.5rem !important;}

.social-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.social-circle i {
    color:var(--primary);
    font-size: 20px;
}

.social-group {
    display: flex;
    justify-content: flex-end; 
    gap: 10px;
}

.border-primary-custom {
    border: 1px solid var(--primary);
}


@media (max-width: 1199px) {
  li.mobile-highlight{display:block;}
  li.reservations-menu a{color:#8f6a26 !important;}
}

@media (max-width: 767px) {
  .video-background iframe {
    display: none;
  }

  .video-fallback {
    background: url('/images/uploads/large/home1-1618874354.jpg') center/cover no-repeat;
  }
  
  .header-logo img {
	 content: url("/images/logo-dark.png");
  }
}