* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
  font-family: "PT Sans Narrow", sans-serif;
}


body {
  -webkit-overflow-scrolling: touch;
  overflow-y: visible;
}

:root {
  --accent: #ffcf2f;
}

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

body {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background: #000;
  overflow-x: hidden;
}

/* HEADER */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 20px 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Great Vibes', cursive;
  font-size: 32px;
}

.main-nav {
  display: flex;
  gap: 20px;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: .3s;
}

.main-nav a:hover {
  color: var(--accent)
}

.header-actions {
  display: flex;
  gap: 10px;
}

.btn {
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  padding: 10px 16px;
  font-weight: 600;
  transition: 0.3s;
  font-size: 15px;
}

.btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-yellow {
  background: var(--accent);
  color: white;
  border-radius: 25px;
  padding: 12px 28px;
  font-weight: 600;
}

.btn-yellow:hover {
  background: #ffd84d
}

/* HERO SECTION */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('/front/assets/imgs/Doner_toyuq_Limuzin.jpg') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 20px;
}

.eyebrow {
  font-family: 'Great Vibes', cursive;
  font-size: 60px;
  margin-bottom: 16px;
}

.lead {
  font-size: 20px;
  color: #ddd;
  margin-bottom: 28px;
  line-height: 1.6;
}

/* ==== MENU SECTION ==== */
.menu-section {
  background: #f5f5f5;
  color: #000;
  padding: 80px 0;
  text-align: center;
}

/* Offers */
.offers {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.offer-box {
  background: #222;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-radius: 12px;
  overflow: hidden;
  width: 420px;
  max-width: 90%;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.offer-img img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--accent);
}

.offer-text {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.offer-text h3 {
  font-size: 20px;
  margin: 0;
  color: #fff;
}

.percent {
  font-size: 22px;
  font-weight: 700;
  margin: 6px 0 12px;
}

.percent span {
  font-size: 16px;
  font-weight: 400;
}

/* Menu title */
.menu-title h2 {
  font-family: 'Great Vibes', cursive;
  font-size: 46px;
  color: #000;
  margin-bottom: 20px;
}

.menu-categories {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
}

.menu-categories button {
  border: none;
  background: #eee;
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: .2s;
  font-size: 15px;
}

.menu-categories button:hover,
.menu-categories .active {
  background: var(--accent);
  color: #000;
}


.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.menu-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform .3s;
}

.menu-item:hover {
  transform: translateY(-6px);
}

.dsp_flx {
  display: flex;
  gap: 15px;
}

.menu-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.menu-info {
  background: white;
  color: #fff;
  padding: 20px;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  height: 100%;
}

.menu-info h4 {
  margin: 0 0 8px;
  font-size: 18px;
  color: black;
}

.menu-info p {
  margin: 0;
  font-size: 14px;
  color: black;
}

/* ==== FOOTER ==== */
.footer {
  background: #111;
  color: #fff;
  padding: 60px 0 30px;
  text-align: center;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col {
  flex: 1 1 250px;
  min-width: 200px;
}

.footer-col h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--accent);
}

.footer-col p {
  margin: 6px 0;
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
}

.footer-col.center {
  text-align: center;
}

.footer-col.center .logo {
  font-family: 'Great Vibes', cursive;
  font-size: 34px;
  margin-bottom: 8px;
  color: #fff;
}

.footer-col.center p {
  max-width: 320px;
  margin: 0 auto 16px;
}


/* Social icons */
.social {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.social a img {
  width: 22px;
  height: 22px;
  filter: invert(1);
  opacity: 0.8;
  transition: 0.2s;
}

.social a img:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Bottom text */
.footer-bottom {
  font-size: 13px;
  color: #999;
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.footer-bottom b {
  color: #fff;
}

.filter-buttons button.active {
  background-color: yellow;
}

.item {
  display: none;
  margin: 10px 0;
}

.item.show {
  display: block;
}

/* Responsive */
@media (max-width:768px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }


  .menu-categories {
    gap: 1px;
  }

  .menu-categories button {
    font-size: 15px;
  }

  .menu-categories {
    display: grid;
    gap: 15px;
  }
}