

/*
NAVBAR EDITING
*/
nav {
  background-color: #1c1c1c;
  display: flex;
  justify-content: space-between; /* align items to the left */
  align-items: center;
  padding: 0.8rem 1.5rem; /* smaller padding */
  gap: 2rem; /* space between logo and links */
  position: relative;
  z-index: 99999;
}


.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;

}

.nav-toggle span {
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 0.3rem 0.6rem;
  font-size: 0.9rem;
  border-radius: 10px;
  transition: 0.3s;
  font-weight: bold;
}

.nav-links a.active {
  color: #cf2e36 !important;
  background-color: #2b2b2b;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.3);
}

.nav-links a:hover {
  background-color: #2b2b2b;
  color: #ffc61c; 
  transition: 0.3s;
}

.order-btn {
  background-color: #cf2e36; 
  color: white;
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
 transition: all 0.3s ease;
  box-shadow: none;
}

.order-btn:hover {
  background: linear-gradient(to bottom, #fcbb17, #ffc61c);
  box-shadow: 0 8px 20px rgba(218, 165, 32, 0.3);
  color: white;
}

.location-btn {
  background-color: #f6ad55;
  color: white !important;
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
 transition: all 0.3s ease;
  box-shadow: none;
}
.location-btn:hover {
  background: linear-gradient(to bottom, #fcbb17, #ffc61c);
  box-shadow: 0 8px 20px rgba(218, 165, 32, 0.3);
  color: white;
}

.logo img {
  height: 35px;
  object-fit: contain;
}


/* Mobile */
@media (max-width: 769px) {
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 30; 
    position: relative;
  }

  .nav-toggle span {
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-links {
    flex-direction: column;
    background-color: #1c1c1c;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 300px;
    border: 1px solid #333;
    border-radius: 10px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    z-index: 10;
  }

  .nav-links.show {
    max-height: 500px;
    opacity: 1;
    padding: 1rem;
  }

  .nav-links li {
    margin: 0.75rem 0;
    text-align: center;
  }

  .nav-links li + li {
    border-top: 1px solid #2c2c2c;
  }
  .logo img {
    height: 32px;
  }
  
}











/*
Footer Section
*/
.site-footer {
  background-color: #0f0f0f; /* Matches navbar */
  color: #f5f5f5;
  padding: 3rem 1.5rem;
  font-size: 0.95rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1 1 200px;
}

.footer-section h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #f69711; /* Yellow for headings */
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #f5f5f5;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #facc15;
}

.closed {
  color: #ef4444;
  font-weight: 600;
}

.location-btn {
  display: inline-block;
  background-color: #f69711;
  color: #0f0f0f;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.location-btn:hover {
  background-color: #d4800b;
  transform: scale(1.05);
  color: white !important;
}

.social-icon i {
  font-size: 1.5rem;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.3s ease;
}

.social-icon i:hover {
  transform: scale(1.15);
}

.instagram-handle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.3s ease;
}

.instagram-handle:hover {
  transform: scale(1.1);
}

.footer-hms-logo {
  width: 90px;
  margin-bottom: 1rem;
  transition: transform 0.3s;
  cursor: pointer;
}

.footer-hms-logo:hover {
  transform: scale(1.05);
}

.footer-bottom {
  text-align: center;
  padding: 1rem 0;
  color: white;
  font-size: 0.95rem;
}

/* Footer base (keep your existing footer styles) */
.site-footer { background:#0f0f0f; color:#f5f5f5; padding:3rem 1.5rem; }
.footer-container{
  max-width:1200px; margin:0 auto; display:grid; gap:2rem;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
}
.footer-section h3{ color:#f69711; margin-top:0; }
.footer-hms-logo{ width:90px; }
.site-footer a { color:inherit; text-decoration:none; }
.site-footer a:hover { text-decoration:underline; }
.closed{ color:#ef4444; font-weight:600; }

/* Small, centered legal note */
.legal-note{
  max-width:820px;
  margin: 0.75rem auto 0;           /* tight spacing, centered */
  padding: .5rem 1rem;
  text-align: center;
  font-size: .85rem;                 /* smaller than body */
  line-height: 1.5;
  color: #cfd4db;                    /* soft, readable on dark bg */
  opacity: 0.95;
}

/* Footer bottom */
.site-footer .footer-bottom{
  text-align:center;
  margin-top: .8rem;
  padding-top: .8rem;
  border-top: 1px solid rgba(255,255,255,.08);
  color:#cfd4db;
  font-size:.9rem;
}

/* Responsive tweak */
@media (max-width:640px){
  .legal-note{ font-size:.82rem; }
}

