* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  transition: all 0.3s ease;
  scroll-behavior: smooth;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  position: fixed;
  top: 2rem;
  right: 1.5rem;
  z-index: 1000;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: white;
  transition: all 0.3s ease;
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background-color: #000;
  z-index: 999;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: left 0.3s ease-in-out;
}

.mobile-nav.active {
  left: 0;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid #333;
}

.mobile-nav-header .logo img {
  max-width: 150px;
  height: auto;
}

.close-btn {
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0 10px;
}

.mobile-nav-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 2rem 0;
  overflow-y: auto;
}

.mobile-nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #333;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
}

.mobile-nav-buttons {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-button1,
.mobile-button2 {
  padding: 0.8rem 1.5rem;
  border-radius: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.mobile-button1 {
  background: transparent;
  border: 2px solid #000;
  color: #000;
  background: white;
}

.mobile-button2 {
  background: #ff2e2e;
  border: 2px solid #ff2e2e;
  color: white;
}

.mobile-cart {
  padding: 1.5rem 0;
  border-top: 1px solid #333;
}

.mobile-cart button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #14a800;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 2rem;
  font-weight: bold;
  width: 100%;
  font-size: 1rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-cart img {
  width: 20px;
  height: 20px;
}

.mobile-cart .addnum {
  background: white;
  color: #14a800;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  margin-left: 0.5rem;
}

/* Overlay when mobile menu is open */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Hide desktop navigation on mobile */
@media (max-width: 1024px) {
  header .links,
  header .buttons {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  header .logo {
    margin: 0 auto;
  }
}

body,
html {
  margin: 0;
  padding: 0;
  min-width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}

.welcomepage {
  width: 100%;
  height: 100vh;
  background-image: url("/images/wallpaperflare.com_wallpaper (26).jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}

header {
  width: 100%;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
}

header .links {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  width: 50%;
  height: 3rem;
  border-radius: 2rem;
  position: relative;
  left: 70px;
}

header .nav-link {
  padding: 5px 15px;
  text-decoration: none;
  color: black;
  font-family: "Chewy", system-ui;
  font-weight: 900;
  font-style: normal;
}
header a:hover {
  color: rgb(126, 17, 17);
}

.logo {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
}

.logo img {
  object-fit: contain;
  width: 200px;
  image-rendering: crisp-edges;
}

header button {
  text-transform: uppercase;
  color: white;
  width: 140px;
  height: 50px;
  border: none;
  border-radius: 3rem;
  font-size: medium;
  font-family: "Lilita One", sans-serif;
  font-weight: 400;
  font-style: normal;
  cursor: pointer;
}
header .button1 {
  margin-right: 20px;
  background-color: rgb(0, 0, 0);
  color: white;
  border: 1px solid white;
}
header .button2 {
  background-color: red;
  margin-right: 40px;
}
header .button1:hover {
  background-color: white;
  color: black;
}
header .button2:hover {
  background-color: white;
  color: black;
}
.mainpage {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  position: relative;
}
.slogan {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100vh;
}
.slogan h1 {
  padding: 0;
  margin: 10px;
  color: white;
  font-size: 6.25rem;
  font-family: "Lilita One", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-shadow:
    rgba(0, 0, 0, 0.25) 0px 54px 55px,
    rgba(0, 0, 0, 0.12) 0px -12px 30px,
    rgba(0, 0, 0, 0.12) 0px 4px 6px,
    rgba(0, 0, 0, 0.17) 0px 12px 13px,
    rgba(0, 0, 0, 0.09) 0px -3px 5px;
  letter-spacing: 2px;
  line-height: 1.2;
  text-transform: uppercase;
}
.menu {
  width: 100%;
  background-color: #f0f0cc;
  color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 100px 0px 50px 0px;
}
.menu h1 {
  margin-top: 20px;
  color: black;
  font-size: 2.5rem;
  font-family: "Roboto Slab", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.2rem;
}
.menulinks {
  display: flex;
  margin: 50px auto;
  padding: 5px;
  border-bottom: 1px solid black;
}
.menulinks a {
  text-decoration: none;
  font-size: 1.3rem;
  margin: 0px 30px;
  color: black;
  text-transform: uppercase;
  font-family: "Roboto Slab", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

.menulinks a:hover {
  color: rgb(126, 17, 17);
}

.menulinks a.active {
  color: rgb(126, 17, 17);
}

.menulinks a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  bottom: -5px;
  left: 0;
  background-color: rgb(126, 17, 17);
  transition: width 0.3s ease;
}

.menulinks a:hover:after,
.menulinks a.active:after {
  width: 100%;
}
.burgerclass {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.burgerclass h1 {
  text-transform: uppercase;
  font-family: "Roboto Slab", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.burgers1,
.burgers2 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.burgers1 div,
.burgers2 div {
  max-width: 100%;
  width: 25rem;
  height: 25rem;
  box-sizing: border-box;
  border-radius: 20px;
  margin: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.burgers1 img,
.burgers2 img {
  width: 60%;
}

.burgers1 h2,
.burgers2 h2 {
  text-transform: uppercase;
  font-family: "Roboto Slab", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.burgers1 p,
.burgers2 p {
  font-size: 1rem;
  padding: 10px;
}
.burgers1 button,
.burgers2 button {
  border: none;
  scale: 1.2;
  background-color: red;
  color: white;
  text-transform: capitalize;
  padding: 10px;
  border-radius: 20px;
  font-family: "Lilita One", sans-serif;
  font-weight: 400;
  font-style: normal;
  cursor: pointer;
}
.burgers1 button:hover,
.burgers2 button:hover {
  background-color: green;
}
.card {
  display: flex;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  left: auto;
  z-index: 5;
}
.card button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  text-transform: uppercase;
  width: 180px;
  height: 60px;
  background-color: green;
  color: white;
  border: none;
  border-radius: 30px;
  padding: 20px;
  box-sizing: border-box;
  font-family: "Lilita One", sans-serif;
  font-weight: 400;
  font-style: normal;
  cursor: pointer;
}
.card svg {
  margin-right: 3px;
}
.card button .addnum {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(218, 80, 80);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  top: -5px;
  right: -5px;
}
/* Modern Footer Styles */
.modern-footer {
  background-color: #1a1a1a !important;
  width: 100% !important;
  color: #f5f5f5 !important;
  font-family: "Roboto Slab", serif !important;
  padding: 0 !important;
}

.footer-container {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
  gap: 30px !important;
  padding: 60px 5% !important;
  max-width: 1400px !important;
  margin: 0 auto !important;
}

/* Footer Sections */
.footer-section {
  padding: 0 15px !important;
}

.footer-section h3 {
  color: #fff !important;
  font-size: 1.3rem !important;
  margin-bottom: 20px !important;
  font-weight: 700 !important;
  position: relative !important;
  padding-bottom: 10px !important;
}

.footer-section h3::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  bottom: 0 !important;
  width: 50px !important;
  height: 3px !important;
  background-color: #ff2e2e !important;
}

/* About Section */
.about-section p {
  line-height: 1.6 !important;
  margin-top: 15px !important;
  color: #b3b3b3 !important;
  font-size: 0.95rem !important;
}

.footer-logo {
  max-width: 180px !important;
  margin-bottom: 15px !important;
}

.footer-logo img {
  width: 100% !important;
  height: auto !important;
}

/* Quick Links */
.quick-links ul {
  list-style: none !important;
  padding: 0 !important;
}

.quick-links li {
  margin-bottom: 12px !important;
}

.quick-links a {
  color: #b3b3b3 !important;
  text-decoration: none !important;
  transition:
    color 0.3s ease,
    transform 0.3s ease !important;
  display: inline-block !important;
  font-size: 0.95rem !important;
}

.quick-links a:hover {
  color: #ff2e2e !important;
  transform: translateX(5px) !important;
}

/* Contact Info */
.contact-info ul {
  list-style: none !important;
  padding: 0 !important;
}

.contact-info li {
  margin-bottom: 15px !important;
  display: flex !important;
  align-items: flex-start !important;
  color: #b3b3b3 !important;
  font-size: 0.95rem !important;
}

.contact-info i {
  margin-right: 10px !important;
  color: #ff2e2e !important;
}

/* Newsletter Section */
.newsletter p {
  margin-bottom: 20px !important;
  line-height: 1.6 !important;
  color: #b3b3b3 !important;
  font-size: 0.95rem !important;
}

.subscription-form {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}

.subscription-form input {
  padding: 12px 15px !important;
  border: none !important;
  border-radius: 5px !important;
  background-color: #333 !important;
  color: #fff !important;
  font-size: 0.9rem !important;
}

.subscription-form input::placeholder {
  color: #999 !important;
  font-size: 0.9rem !important;
}

.subscribe-btn {
  background-color: #ff2e2e !important;
  color: white !important;
  border: none !important;
  padding: 12px 20px !important;
  border-radius: 5px !important;
  cursor: pointer !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  font-family: "Lilita One", sans-serif !important;
  transition: background-color 0.3s ease !important;
  font-size: 0.9rem !important;
  letter-spacing: 1px !important;
}

.subscribe-btn:hover {
  background-color: #e01e1e !important;
}

/* Social Media Bar */
.social-media-bar {
  background-color: #151515 !important;
  padding: 20px 0 !important;
  text-align: center !important;
}

.social-icons {
  display: flex !important;
  justify-content: center !important;
  gap: 20px !important;
}

.social-icons a {
  display: inline-block !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  background-color: #333 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease !important;
}

.social-icons a:hover {
  background-color: #ff2e2e !important;
  transform: translateY(-5px) !important;
}

.social-icons img {
  width: 20px !important;
  height: 20px !important;
  filter: brightness(0) invert(1) !important;
}

/* Copyright Bar */
.copyright-bar {
  background-color: #0f0f0f !important;
  padding: 20px 5% !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  font-size: 0.85rem !important;
}

.copyright-bar p {
  color: #777 !important;
  margin: 5px 0 !important;
}

.legal-links {
  display: flex !important;
  gap: 20px !important;
}

.legal-links a {
  color: #777 !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
}

.legal-links a:hover {
  color: #ff2e2e !important;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    padding: 40px 5% !important;
  }

  .footer-section {
    text-align: center !important;
  }

  .footer-section h3::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }

  .quick-links a:hover {
    transform: none !important;
  }

  .contact-info li {
    justify-content: center !important;
  }

  .footer-logo {
    margin: 0 auto 15px !important;
  }

  .copyright-bar {
    flex-direction: column !important;
    text-align: center !important;
    gap: 10px !important;
  }

  .legal-links {
    justify-content: center !important;
  }
}

@media screen and (max-width: 480px) {
  .subscription-form {
    width: 100% !important;
  }

  .social-icons {
    gap: 15px !important;
  }

  .social-icons a {
    width: 35px !important;
    height: 35px !important;
  }

  .social-icons img {
    width: 18px !important;
    height: 18px !important;
  }
}
@media screen and (max-width: 1430px) {
  .welcome {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  header .logo {
    width: 10px;
    margin-top: 20px;
    margin-left: 90px;
  }
  header .logo img {
    width: 200px;
  }
  header .links {
    width: 45%;
    position: fixed;
    left: 320px;
    right: auto;
  }
  header .links a {
    font-size: 0.8rem;
    padding: 9px;
  }
  header .buttons {
    position: relative;
    margin-left: 0;
    left: auto;
    right: -240px;
  }
  .buttons button {
    width: 7rem;
    margin-left: 3px;
    font-size: 0.8rem;
  }
  .buttons .button1 {
    margin-right: 10px;
  }
  .slogan h1 {
    font-size: 5.5rem;
  }
}
@media screen and (max-width: 1152px) {
  .menu .menulinks a {
    font-size: 1rem;
  }
}

@media screen and (max-width: 1073px) {
  header .links,
  header .buttons {
    display: none;
  }
  .slogan h1 {
    font-size: 4rem;
  }
  header .logo {
    width: 10px;
    margin-top: 0px;
    margin-left: 70px;
  }
  header .logo img {
    width: 150px;
  }
  .sub {
    padding-top: 20px;
  }
}
@media screen and (max-width: 981px) {
  .menu .menulinks {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .menulinks div {
    padding: 30px 0px;
  }
  .menu .menulinks a {
    font-size: 1rem;
    margin: 0px 20px;
  }

  .sub input {
    flex-wrap: wrap;
    display: flex;
    width: 10rem;
  }
}

@media screen and (max-width: 491px) {
  .slogan h1 {
    font-size: 4rem;
  }
  .menu .menulinks a {
    font-size: 0.8rem;
    margin: 0px 10px;
  }

  .card {
    position: fixed;
    right: 0;
    left: 0;
  }
  .card .addnum {
    position: absolute;
    right: 0;
  }
  .card button {
    position: relative;
    width: 130px;
    height: 50px;
    font-size: small;
  }
  .card img {
    width: 1.8rem;
  }
  .sub input {
    flex-wrap: wrap;
    display: flex;
    width: 5rem;
  }
  .sub button {
    width: 4rem;
    font-size: 0.7rem;
  }
  input::placeholder {
    font-size: 8px;
    padding: 0px 0px;
  }
}
