/*

custom CSS

*/

/* ========================================= */
/*           GALLERY SECTION                 */
/* ========================================= */

.gallery-section {
  padding: 80px 0;
  background: #ffffff;
}

.gallery-header {
  text-align: center;
  margin-bottom: 50px;
}

.gallery-title {
  font-size: 2em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #252525;
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
  margin: 0;
}

.gallery-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background-color: #ce3232;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-item {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #111;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* Tablet: 2 columns */
@media screen and (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

/* Mobile: 1 column full-width */
@media screen and (max-width: 600px) {
  .gallery-section {
    padding: 50px 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .gallery-title {
    font-size: 1.5em;
    letter-spacing: 2px;
  }
}

.first-word-uppercase-p::first-letter {
  font-size: 60px;
  color: #e80222;
  font-weight: bold;
  line-height: .75;
}

/* ========================================= */
/*          LOCATION GATEWAY OVERLAY         */
/*          Pantone 2026 Aesthetics          */
/* ========================================= */

:root {
  /* Pantone 2026 Colors */
  --pantone-charcoal: #252C2A;
  --pantone-moss: #3A4E48;
  --pantone-sand: #E8E5DF;
  --pantone-salmon: #D88E83;
  --glass-bg: rgba(37, 44, 42, 0.75);
  --glass-card: rgba(232, 229, 223, 0.05);
  --glass-border: rgba(232, 229, 223, 0.1);
}

.location-gateway-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99999;
  /* Above everything */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* When visible */
.location-gateway-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.gateway-content {
  text-align: center;
  max-width: 900px;
  width: 90%;
  padding: 40px;
  color: var(--pantone-sand);
  font-family: 'Montserrat', sans-serif;
  animation: slideUpFade 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.gateway-title {
  font-size: 3.5rem;
  font-weight: 300;
  margin-bottom: 10px;
  color: var(--pantone-sand);
  letter-spacing: 2px;
}

.gateway-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 1px;
  color: rgba(232, 229, 223, 0.7);
  margin-bottom: 50px;
}

.gateway-cards {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.location-card {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  background: var(--glass-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.location-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(232, 229, 223, 0.08);
  border-color: rgba(232, 229, 223, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-image-wrapper {
  height: 200px;
  overflow: hidden;
}

.card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.location-card:hover .card-image-wrapper img {
  transform: scale(1.08);
}

.card-info {
  padding: 30px 20px;
}

.card-info h3 {
  font-size: 2rem;
  margin: 0 0 10px 0;
  font-weight: 400;
  color: var(--pantone-sand);
}

.card-info p {
  font-size: 1rem;
  color: rgba(232, 229, 223, 0.7);
  margin-bottom: 25px;
  line-height: 1.5;
}

.select-btn {
  display: inline-block;
  padding: 12px 30px;
  background: transparent;
  border: 1px solid var(--pantone-salmon);
  color: var(--pantone-salmon);
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.location-card:hover .select-btn {
  background: var(--pantone-salmon);
  color: #fff;
  box-shadow: 0 4px 15px rgba(216, 142, 131, 0.4);
}

/* Change Location Button in Navbar */
.change-location-btn {
  cursor: pointer;
  color: #d9d9d9 !important;
  font-weight: 500;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.change-location-btn:hover {
  opacity: 1;
  color: #fff !important;
}

/* Animations */
@keyframes slideUpFade {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 768px) {
  .gateway-title {
    font-size: 2.5rem;
  }

  .gateway-cards {
    gap: 20px;
  }

  .location-card {
    min-width: 100%;
  }
}

/* ========================================= */
/*           MENU SECTION                    */
/* ========================================= */

.menu-section {
  background: #1a1a1a;
  padding: 100px 0 80px;
}

.menu-header {
  text-align: center;
  margin-bottom: 60px;
}

.menu-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #ce3232;
  margin: 0 0 16px;
}

.menu-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.4em;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0;
  padding-bottom: 20px;
  position: relative;
  display: inline-block;
}

.menu-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: #ce3232;
}

.menu-cards-row {
  margin-top: 10px;
}

.menu-card {
  margin-bottom: 30px;
  position: relative;
}

.menu-card-inner {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  background: #111;
}

.menu-card-inner img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.menu-card:hover .menu-card-inner img {
  transform: scale(1.03);
}

.menu-card-label {
  margin-top: 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
}

/* ========================================= */
/*       UNIFIED LOCATIONS SECTION           */
/*   Uses site-native Montserrat + #ce3232   */
/* ========================================= */

.loc-section {
  background: #f9f9f9;
  padding: 100px 0;
}

/* Section Title */
.loc-section .section-title {
  padding-bottom: 50px;
}

.loc-section .section-title h2 {
  font-size: 2em;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #252525;
}

/* Each location row */
.loc-row {
  display: flex;
  align-items: flex-start;
  padding: 50px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.loc-row:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* City name column */
.loc-city-col {
  flex: 0 0 30%;
  padding-right: 40px;
}

.loc-city {
  font-size: 2.2em;
  font-weight: 700;
  color: #252525;
  margin: 0;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.loc-city::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: #ce3232;
}

/* Details column */
.loc-details-col {
  flex: 1;
}

/* Info grid: Address & Hours side-by-side */
.loc-info-grid {
  display: flex;
  gap: 60px;
  margin-bottom: 30px;
}

.loc-info-block {
  min-width: 180px;
}

.loc-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #353535;
  margin-bottom: 12px;
}

.loc-value {
  font-size: 15px;
  font-weight: normal;
  line-height: 26px;
  color: #757575;
  margin: 0;
}

/* Phone link styling */
.loc-phone-link {
  font-size: 16px;
  font-weight: 700;
  color: #252525;
  transition: color 0.3s;
}

.loc-phone-link:hover {
  color: #ce3232;
}

/* Order block — vertically center the button */
.loc-order-block {
  display: flex;
  align-items: flex-end;
}

/* CTA Button — matches site's .section-btn */
.loc-btn {
  display: inline-block;
  background: #ce3232;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 30px;
  border: 0;
  transition: all 0.4s;
  text-decoration: none;
}

.loc-btn:hover {
  background: #292929;
  color: #ffffff;
}

/* Relocated Footer / Copyright */
.loc-copyright-row {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.loc-copyright-row p {
  font-size: 13px;
  color: #757575;
  margin: 0;
}

.loc-copyright-row a {
  color: #252525;
  font-weight: 500;
  transition: color 0.3s;
}

.loc-copyright-row a:hover {
  color: #ce3232;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .loc-row {
    flex-direction: column;
  }

  .loc-city-col {
    flex: 0 0 auto;
    padding-right: 0;
    margin-bottom: 30px;
  }

  .loc-info-grid {
    flex-direction: column;
    gap: 25px;
  }
}