/* 
** Extra small devices (portrait phones, less than 576px)
** No media query for `xs` since this is the default in Bootstrap
** Small devices (landscape phones, 576px and up) - @media (min-width: 576px) { ... }
** Medium devices (tablets, 768px and up) - @media (min-width: 768px) { ... }
** Large devices (desktops, 992px and up) - @media (min-width: 992px) { ... }
** Extra large devices (large desktops, 1200px and up) - @media (min-width: 1200px) { ... } 
*/

/* -----Variables----- */
:root {
  --primary-color: #000000;
  --secondary-color: #FFFFFF;
  --tertiary-color: #666666;
  --accent-color: rgb(255, 115, 0);
  --primary-font: 'Raleway', sans-serif;
  --secondary-font: 'Source Sans Pro', sans-serif;
  --e1font: 'Montserrat', sans-serif;
}

/* -----Reset----- */
* { padding: 0; margin: 0; }

body {
  font-family: var(--primary-font);
  text-align: center;
}
/* targets all img sizes, without this all images will be huge */
img { width: 100%; }
/* menu table images: fixed 150x150, never stretch */
.menu-td-img img { width: 150px !important; height: 150px !important; max-width: 150px !important; min-width: 150px !important; object-fit: cover !important; display: block !important; }

/* targets all font-awesome icons */
i {
  font-size: 1rem;
  padding: 0;
  margin: 0;
}
i:hover { color: var(--accent-color); }

/* --Animations-- */
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes fadeOut {
  0% { opacity: 1; }
  100% { opacity: 0; }
}

/* --Back to top icon-- */
#back-to-top {
  position: fixed;
  bottom: 35px;
  right: 35px;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--secondary-color);
  border-radius: 50%;
  border: 2px solid rgb(115, 50, 0);
  z-index: 5;
  opacity: 0;
  animation: fadeOut 150ms linear forwards;
}
#back-to-top.scrolled {
  animation: fadeIn 250ms linear forwards;
}
@media screen and (max-width: 767px) {
  #back-to-top a {
    bottom: 15px;
    right: 15px;
  }
}
#back-to-top i {
  color: var(--accent-color);
  font-size: 1rem;
  margin: 0;
  padding: 0;
  line-height: normal;
}

/*
** -Header container that holds nav (id=menu-nav),
** which contains the logo div (id=logo-container),
** toggler and  nav links (id="navbarNav) 
*/

#main-header {
  z-index: 2; /* used only with "absolute" and "fixed" position. remove if normal header bar and replace with "margin-top"*/
  -webkit-animation: fadeIn .5s linear 1s forwards;
          animation: fadeIn .5s linear 1s forwards;
  opacity: 0; /* starting property before the animation */
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#menu-nav { padding: 2rem 0; }

/* moves #main-header on smaller screens */
@media screen and (max-width: 767px){
  #main-header { top: 5px; }
  #menu-nav { flex-direction: column; }
}
#header-content {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 575px) {
  #header-content { flex-direction: column; }
}

/* <div> that contains the .navbar-brand and logo */
/* we add margin to this container because we have the flex set to column,
meaning the logo-container <div> will sit above the links <ul>.
if using normal flex, remove the bottom margin */
#logo-container { font-family: var(--secondary-font); }

#splash-text-container { align-self: center; }

.navbar-brand { padding-top: 0; }

/* if using an image for the logo, then control the width with the below property */
.logo-image { max-width: 225px; }

@media screen and (max-width: 767px){
  #logo-container { margin-bottom: 2rem; }
  .logo-image { max-width: 150px; }
}

/* #top-menu is the id of the <ul> inside the navbarNav <div>. 
the a tag contains the text, unless the text is placed into another container */
#top-menu a {
  color: var(--secondary-color);
  font-size: .75rem;
  padding: .25rem 1rem;
}
#top-menu a:hover { color: var(--accent-color); }

/* Remove bootstrap toggler border */
.navbar-toggler { border: 0; }

/* if using a span with text or a different icon,
in this case, we are using bold text */
.navbar-toggler-icon .bold {
  font-family: var(--secondary-font);
  margin-bottom: 0;
  text-decoration: underline;
  color: var(--secondary-color);
}

/* --Background images for sections. #splash height uses javascript.  -- */
#splash {
  background-image: url("images/S__49766407.jpg"); /* must use background-image if also adding a background-color */
}
/* End background images for sections */

#splash {
  overflow: hidden;
  /* setting both background color and image, so need to use individual elements */
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

/*  below is part of the js workaround for vertical height
using height calc on mobile browsers */
#splash.desktop {
  /* Setting the minimum height will keep the nav bar and the splash content 
  from overlapping if the viewport height shrinks too much.*/
  min-height: 25rem; /* 400px */
  height: 100vh;
}
#splash.desktop .splash-overlay {
  min-height: 25rem; /* 400px */
}
#splash.mobile {
  height: calc(var(--vh, 1vh) * 100);
}
/*  end the js workaround for vertical height */

#splash-content {
  color: #FFFFFF;
  -webkit-animation: fadeIn 1s ease-out 1.25s forwards;
          animation: fadeIn 1s ease-out 1.25s forwards;
  opacity: 0;
}

/* using .heading, .text, .subheading and .subtext instead of targeting the h1 and p tags */
.splash-heading {
  font-weight: 200;
}
@media screen and (max-width: 575px) {
  .splash-heading {
    font-size: 2rem;
    letter-spacing: 3px;
  }
}
.splash-text {
  font-size: .75rem;
  margin-bottom: .85rem;
  letter-spacing: 2px;
}
.splash-text:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 575px) {
  .splash-text {
    letter-spacing: 1px;
  }
}
/* All main h tags in the sections */
.section-heading { margin-bottom: 2rem; }

/* All sub h tags in the sections */
.section-subheading { margin-bottom: 1.5rem; }

/* All sub h tags in the sections */
.section-subtext { margin-bottom: 1.25rem; }


#menu .section-heading { margin-top: 3rem; margin-bottom: 3.5rem; }

/* --Profile or About section */
.about-img {
  max-width: 250px;
  margin-bottom: 1.5rem;
}

/* --Gallery or Portfolio section-- */

#taste .section-heading {
  margin-bottom: 0;
}

.gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.gallery > div {
  flex-basis: 30%;
  flex-grow: 0;
  padding: 1rem;
}
.gallery p { margin-top: 1rem; }

@media screen and (max-width: 767px) {
  .gallery > div {
    flex-basis: 50%;
    padding: 1rem;
  }
}
@media screen and (max-width: 575px) {
  .gallery > div {
    flex-basis: 100%;
    padding: 1rem;
  }
}

.gallery-2x2 > div {
  flex-basis: 45% !important;
  flex-grow: 0;
  padding: 1rem;
}
@media screen and (max-width: 767px) {
  .gallery-2x2 > div {
    flex-basis: 45% !important;
  }
}
@media screen and (max-width: 575px) {
  .gallery-2x2 > div {
    flex-basis: 100% !important;
  }
}

.btn-google-review {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.4rem;
  border-radius: 6px;
  border: 2px solid #4285F4;
  color: #4285F4;
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
  letter-spacing: .5px;
}
.btn-google-review:hover {
  background-color: #4285F4;
  color: #fff;
  text-decoration: none;
}
.btn-google-review i { font-size: 1rem; }

/* --Reviews Section-- */
.reviews-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.review-card {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1.5rem;
  flex-basis: 45%;
  flex-grow: 0;
  text-align: left;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
@media screen and (max-width: 767px) {
  .review-card { flex-basis: 100%; }
}
.review-stars {
  color: #f5a623;
  font-size: 1rem;
  margin-bottom: .5rem;
  letter-spacing: 2px;
}
.review-text {
  font-size: .85rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: .75rem;
}
.review-author {
  font-size: .75rem;
  font-weight: 600;
  color: #888;
  margin-bottom: 0;
}


/* --Order Buttons-- */
.nav-order {
  color: var(--accent-color) !important;
  font-weight: 600 !important;
  border: 1px solid var(--accent-color);
  border-radius: 4px;
  padding: 4px 12px !important;
}
.nav-order:hover {
  background-color: var(--accent-color);
  color: #fff !important;
}
.order-buttons {
  margin-top: 1.25rem;
}
.order-buttons > p {
  margin-bottom: .75rem;
  font-size: .85rem;
}
.order-btn-row {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}
.btn-order {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .65rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  flex: 1;
  min-width: 140px;
}
.btn-order:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  text-decoration: none;
}
.btn-order-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.3;
}
.btn-order-sub {
  font-size: .62rem;
  font-weight: 400;
  opacity: 0.85;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.btn-order-main {
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .3px;
}
.btn-clover {
  background-color: #2E8B57;
  color: #fff;
}
.btn-clover:hover { color: #fff; }
.btn-ubereats {
  background-color: #000;
  color: #fff;
}
.btn-ubereats:hover { color: #fff; }


#location { color: var(--primary-color); }
#location i {
  font-size: 1rem;
  margin-bottom: 0;
}
#location .hours { margin-bottom: 0 }
.location-info { text-align: left; }
#location ul {
  list-style: none;
  padding-left: 1.3rem;
}

/* --Footer Section-- */
footer { font-size: .75rem; }

#footer-review {
  padding: 1.5rem 0 .5rem;
  background-color: #eeeeee;
  text-align: center;
}
.btn-leave-review {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1.4rem;
  border-radius: 6px;
  border: 2px solid #4285F4;
  color: #4285F4;
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
  letter-spacing: .5px;
}
.btn-leave-review:hover {
  background-color: #4285F4;
  color: #fff;
  text-decoration: none;
}
.btn-leave-review i { font-size: .9rem; }

#footer-bottom {
  padding: 2rem 0;
  background-color: #eeeeee;
}
.copyright, .e1creative {
  margin-bottom: .5rem;
}
.e1creative { font-family: var(--e1font); }
.e1creative a {
  font-size: .65rem;
  font-weight: 400;
  text-decoration: none;
  color:#aaa;
}
.e1creative a:hover { color: #000; }
.e1creative .bold { font-weight: 600; }

/* --Utilities-- */
.bold { font-weight: 600; }
.left { text-align: left; }
/* pads the div that this is added to */
.container-padding{
  padding: 3rem;
}
@media screen and (max-width: 767px){
  .container-padding{
    padding: 1.5rem;
  }
}
@media screen and (max-width: 575px){
  .container-padding{
    padding: 1rem;
  }
}
/* use for column divs with no specific name classes */
.mb { margin-bottom: 1.5rem; }
.column { margin-bottom: 2rem; }

.bg-black {
  background-color: #000000;
  color: #FFFFFF;
}
.bg-white { color: #000000; }
.bg-mid { background-color: rgba(185, 185, 185, 0.2) }

/* add the following classes to an empty div inside the div you want to overlay.  must be the first child */
.bg-overlay-black {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.7);
}
.bg-overlay-white {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255,255,255,.8);
}
.overlay-content { z-index: 1; }
/* --Menu Items-- */
.menu-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 1.5rem;
}
.menu-td-img {
  width: 150px;
  min-width: 150px;
  max-width: 150px;
  vertical-align: top;
  padding-right: 1rem;
}
.menu-td-img img {
  width: 150px !important;
  height: 150px !important;
  min-width: 150px !important;
  max-width: 150px !important;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}
.menu-td-text { vertical-align: top; }
.menu-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .25rem;
  color: var(--primary-color);
}
.menu-size {
  font-size: .72rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: .35rem;
}
.menu-desc {
  font-size: .78rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 0;
}
@media screen and (max-width: 575px) {
  .menu-table, .menu-table tbody, .menu-table tr, .menu-table td { display: block; width: 100%; }
  .menu-td-img { margin-bottom: .75rem; }
  .menu-td-img img { width: 100% !important; max-width: 100% !important; height: 200px !important; }
}

/* --Secret Weapons-- */
.weapons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 991px) {
  .weapons-grid { grid-template-columns: 1fr 1fr; }
}
@media screen and (max-width: 575px) {
  .weapons-grid { grid-template-columns: 1fr; }
}
.weapon-card {
  background: #fff;
  border-radius: 8px;
  padding: 1.25rem;
  border: 1px solid #e0e0e0;
  border-top: 3px solid var(--accent-color);
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.weapon-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: .5rem;
}
.weapon-desc {
  font-size: .78rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 0;
}

/* --Steak Sauces-- */
.sauces-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}
@media screen and (max-width: 575px) {
  .sauces-grid { grid-template-columns: 1fr; }
}
.sauce-card {
  background: #fff;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--accent-color);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.sauce-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .15rem;
  color: var(--primary-color);
}
.sauce-sub {
  font-size: .75rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: .4rem;
  letter-spacing: .5px;
}
.sauce-desc {
  font-size: .78rem;
  line-height: 1.65;
  color: #555;
  margin-bottom: 0;
}

/* --Dynamic Google Reviews-- */
.google-rating-bar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.google-rating-score {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.rating-big {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}
.rating-stars-lg .star { font-size: 1.3rem; }
.star.filled { color: #fbbc04; }
.star.empty { color: #ddd; }
.rating-count-text { font-size: .75rem; color: #888; }
.reviews-loading {
  text-align: center;
  padding: 2rem;
  color: #888;
  font-size: .85rem;
  width: 100%;
}
.review-card-dynamic {
  flex-basis: 45%;
}
.review-header {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .5rem;
}
.review-avatar {
  width: 36px !important;
  height: 36px !important;
  max-width: 36px !important;
  min-width: 36px !important;
  border-radius: 50%;
  object-fit: cover;
}
.review-avatar-placeholder {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: .9rem;
  flex-shrink: 0;
}
.review-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.review-author-name {
  font-size: .82rem;
  font-weight: 700;
  color: var(--primary-color);
}
.review-author-link { text-decoration: none; }
.review-when {
  font-size: .7rem;
  color: #999;
}
.review-google-icon { color: #4285F4; font-size: .9rem; }
.review-stars-row {
  margin-bottom: .4rem;
}
.review-stars-row .star { font-size: .9rem; }

/* --Lang Switcher-- */
@media screen and (max-width: 575px) {
  #lang-switcher { top: 8px; right: 8px; }
  .lang-btn { padding: 2px 5px; font-size: .55rem; }
}
