:root {
--gmdz-orange:#F47A1F;
--gmdz-red: #A63A2B;
--gmdz-dark:#0b0b0c;
--gmdz-default: #404040;
--gmdz-peach: #d4c8b2;
--gmdz-brown: #C47C4E;
--gmdz-gray: #2B2B2B;
--gmdz-lg: #E0E0E0;

}

/* Background Colors */
.bg-red { background-color: #A63A2B !important; }
.bg-orange { background-color: #F47A1F !important; }
.bg-dark { background-color: #0b0b0c !important; }
.bg-default { background-color: #404040 !important; }
.bg-peach { background-color: #d4c8b2 !important; }
.bg-brown { background-color: #C47C4E !important; }
.bg-gray { background-color: #2B2B2B !important; }
.bg-lg { background-color: #E0E0E0 !important; }

/* Text Colors */
.text-dark { color: #0b0b0c !important; }
.text-orange { color: #F47A1F !important; }
.text-red { color: #FF000D !important; }
.text-peach { color: #d4c8b2 !important; }
.text-lg { color: #E0E0E0 !important; }

.border-orange {
  border-color: #F47A1F !important;
}


/* Scroll */
.scroll-effect {
  opacity: 0;
  transform: scale(0.8) translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.scroll-effect.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Font */
@font-face {
  font-family: 'gmdz';
  src: url('../fonts/BebasNeue-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.gmdz-font {
  font-family: 'gmdz', serif;
}

/* Lazy Placeholder */
.lazy-portrait {
  background: url('../images/placeholder.jpg') center center no-repeat;
  background-size: cover;  
  min-width: 180px; 
  min-height: 180px;   
}

/* Nav Bar Stuff */
.nav-link {
  color: #fff !important;
  font-weight: bold;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.nav-link:hover {
  color: #F47A1F !important;
}

.nav-link.active,
.nav-link.active:focus,
.nav-link.active:hover {
  color: #F47A1F !important;
  border-bottom: 2px solid #F47A1F; 
}

.custom-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255,255,255,1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Hero Section Stuff */
.hero-section {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  height: 92vh;
  overflow: hidden;
  background: black;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Mobile Hero Stuff */
@media (max-width: 768px) and (orientation: portrait) {
  .hero-section {
    height: auto;
    aspect-ratio: 16 / 9;
  }
  .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* Bg-Con Variants */
.bg-con {
  padding: 1.5rem; 
  max-width: 90%;  
  background-color: rgba(0, 0, 0, 0.5); 
}

.bg-con1 {
  padding: 1.25rem 1.5rem;
  width: 100%;                     
  margin: 0 auto;          
  background-color: #ffff;
  border: 2px solid #141414;  
  border-radius: 12px;       
  overflow: hidden;     
  display: flex;        
  flex-direction: column;
  justify-content: center;
  text-align: center;
  box-shadow: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bg-con2 {
  padding: 1.25rem 1.5rem;
  width: 100%;                
  margin: 0 auto;          
  background-color: #fff;
  border: 2px solid #141414;  
  border-radius: 12px;       
  overflow: hidden;     
  display: flex;        
  flex-direction: column;
  justify-content: center;
  text-align: center;
  box-shadow: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Gourmandize Buttons + Links */
.btn-gmdz {
  background-color: #c9651a;
  color: #fff;
  text-decoration: none;
  box-shadow: none;
  transition: all 0.3s ease;
}

.btn-gmdz:hover {
  background-color: #F47A1F;
}

.btn-gmdz:link, .btn-gmdz:active {
  background-color: #F47A1F;
  text-decoration: none;
}

.location-btn {
  background-color: #c9651a;
  color: #fff;
  text-decoration: none;
  box-shadow: none;
  transition: all 0.3s ease;
  border: none;
}

.location-btn:hover {
  background-color: #F47A1F;
  color: #fff;
}

.location-btn.active {
  background-color: #F47A1F;
  color: #fff;
  border: none;
}

.location-img-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9; 
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.location-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.big-img {
  width: 80%;
  height: 475px;  
  object-fit: cover; 
}

.gmdz-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-left: 4px solid #ff6b35;
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  flex-wrap: wrap;
}

.gmdz-item img {
  height: 80px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
}

/* Menu Buttons [CURRENTLY NOT BEING USED] */
.btn-menu {
  background-color: #C47C4E;
  color: #fff;
  border: 2px solid #141414;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  transition: 0.3s;
  box-shadow: none;
}
.btn-menu:hover,
.btn-menu.active {
  background-color: #F47A1F;
  transform: scale(1.05);
  box-shadow: none;
}

.menu-category {
  display: block;
}



.menu-left {
  flex: 1;
  text-align: left;
  padding-right: 1rem;
}

@media (max-width: 768px) {
  .gmdz-item {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    border-left: none;
    border-top: 4px solid #ff6b35;
  }

  .gmdz-item img {
    width: 100%;
    max-width: 280px;
    height: auto;
    margin-top: 0.8rem;
    align-self: center;
  }
}

/* === Mobile Responsive Styles === */
@media (max-width: 768px) {
  .gmdz-item {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    border-left: none;
    border-top: 4px solid #ff6b35;
  }

  .menu-left {
    padding-right: 0;
  }

  .gmdz-item img {
    width: 100%;
    max-width: 280px;
    height: auto;
    margin-top: 0.8rem;
    align-self: center;
  }

  .menu-left h5 {
    font-size: 1rem;
  }

  .menu-left p {
    font-size: 0.9rem;
  }
}

