* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* Common Header Styles */
.header {
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

/* Add padding to body to account for fixed header */

main {
  margin-top: 110px !important;
}

.logo {
  height: 110px;
}

.logo img {
  height: 100%;
  width: auto;
  display: block;
}

/* Desktop Navigation */
.nav-desktop {
  display: none;
}

.nav-desktop ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav-desktop a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: #904141;
}

/* Hamburger Menu */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  position: relative;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #904141;
  transition: all 0.3s ease;
  border-radius: 2px;
  transform-origin: center;
  position: relative;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Navigation */
.nav-mobile {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.nav-mobile.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.nav-mobile ul {
  list-style: none;
  margin: 0;
  padding: 1rem 0;
}

.nav-mobile li {
  border-bottom: 1px solid #f0f0f0;
}

.nav-mobile li:last-child {
  border-bottom: none;
}

.nav-mobile a {
  display: block;
  padding: 1rem 1.5rem;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-mobile a:hover,
.nav-mobile a.active {
  color: #904141;
  background: #f9f9f9;
}

footer {
  background-color: rgb(6, 5, 5);
  margin-top: 60px;
  padding: 12px 24px 6px 24px !important;
  color: white;
}

footer h2 {
  color: #904141 !important;
  font-size: 28px;
  font-weight: 800 !important;
}
footer h3 {
  margin-bottom: 6px;
  color: white !important;
  font-weight: 700 !important;
}

.social-media-footer {
  margin: 20px 0;
  display: flex;
  gap: 20px;
}

.social-media-footer .icon-frame {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #0b0521;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.social-media-footer .icon-frame:hover {
  background-color: #904141;
}

.social-media-footer .icon-frame svg {
  width: 24px;
  height: 24px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  justify-content: end;
}
.address {
  margin-top: 0;
}

.quick-links .links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quick-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  /* padding: 0.5rem 0; */
}

.quick-links a:hover {
  color: white;
  text-decoration: underline;
}

.closing-text {
  text-align: center;
  font-size: 12px;
  margin-top: 1.3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
/* Tablet Styles */
@media (min-width: 768px) and (max-width: 1023px) {
  .header {
    padding: 0 24px !important;
  }

  main {
    margin-top: 60px !important;
  }

  body {
    padding-top: 90px;
  }

  /* Footer Tablet Layout */
  footer {
    padding: 3rem 2rem 1.5rem;
  }

  .quick-links .links {
    flex-direction: row;
    justify-content: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .social-media-footer {
    justify-content: center;
  }
}

/* Desktop Styles */
@media (min-width: 1024px) {
  .header {
    padding: 0 24px;
  }

  main {
    margin-top: 0 !important;
  }

  .hamburger {
    display: none;
  }

  .nav-desktop {
    display: block;
  }

  .nav-mobile {
    display: none;
  }

  body {
    padding-top: 90px;
  }

  /* Footer Desktop Layout */
  footer {
    padding: 4rem 3rem 2rem;
  }

  .footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  .footer-main {
    text-align: left;
  }

  .contact-info,
  .quick-links {
    text-align: left;
  }

  .social-media-footer {
    justify-content: flex-start;
    margin: 2rem 0 0 0;
  }

  .quick-links .links {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* Open 24 Hours Badge */
.open-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #e8f5e9;
  color: #2e7d32;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.open-badge svg {
  flex-shrink: 0;
}

.open-badge-mobile {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: #e8f5e9;
  color: #2e7d32;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  width: fit-content;
}

.open-badge-mobile svg {
  flex-shrink: 0;
}

.mobile-menu-footer {
  padding: 10px 24px 20px;
  border-top: 1px solid #e0e0e0;
  margin-top: auto;
}

@media (min-width: 576px) {
  .open-badge {
    font-size: 16px;
    padding: 8px 16px;
  }
}
