html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}
html {
  position: relative;
  min-height: 100%;
}
body {
  margin-bottom: 60px;
  background: #f6eee5;
  background-size: cover;
  font-family: 'Segoe UI', 'Arial', sans-serif;
  min-height: 100vh;
}

/* Header styles */
header, .navbar {
  background: #fff8f2 !important;
  border-bottom: 2px solid #ffbc6c;
  box-shadow: 0 2px 8px rgba(240, 135, 30, 0.06);
}
.navbar-brand {
  font-size: 2.2rem;
  color: #c04313 !important;
  font-family: 'Georgia', serif;
  letter-spacing: 1px;
  font-weight: bold;
}
.navbar-nav .nav-link {
  font-size: 1.1rem;
  color: #4d2c0c !important;
  margin-right: 0.8rem;
  transition: color 0.2s;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
  color: #c04313 !important;
}
.basket-link {
  position: relative;
  font-weight: bold;
  text-decoration: none;
  margin-left: 1rem;
  color: #c04313 !important;
  font-size: 1.3rem;
}
.basket-count {
  background: #c04313;
  color: #fff;
  font-weight: bold;
  padding: 2px 7px;
  border-radius: 12px;
  font-size: 0.8rem;
  position: absolute;
  top: -10px;
  right: -18px;
}


.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff7ea;
  padding: 3rem 2rem;
  flex-wrap: wrap;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(220, 145, 20, 0.09);
}
.hero-text {
  max-width: 50%;
}
.hero-text h1 {
  font-size: 2.5rem;
  color: #a03b00;
  font-family: 'Georgia', serif;
  text-shadow: 0 1px 0 #fff2db;
}
.hero-text p {
  font-size: 1.2rem;
  margin: 1rem 0;
  color: #4d2c0c;
}
.cta-btn {
  background-color: #c04313;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  border: none;
  display: inline-block;
  transition: background 0.2s;
  margin-top: 0.5rem;
}
.cta-btn:hover {
  background-color: #a03b00;
}


.promo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
  background-color: #fff;
}
.promo-gallery img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.promo-gallery a:hover img {
  transform: scale(1.05);
}


.menu-title {
  text-align: center;
  margin-top: 2rem;
  font-size: 2.5rem;
  color: #a03b00;
  font-family: 'Georgia', serif;
  text-shadow: 0 1px 0 #fff2db;
}

/* Vertical Menu */
.vertical-menu {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
}


.menu-card, .menu-item, .scroll-item {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 2rem auto;
  background: #fff8f2;
  border-radius: 15px;
  box-shadow: 0 6px 24px rgba(180, 100, 10, 0.09), 0 1.5px 4px rgba(180, 100, 10, 0.05);
  border: none;
  padding: 2rem 1.2rem;
  text-align: center;
  transition: box-shadow 0.2s;
}
.menu-card:hover, .menu-item:hover, .scroll-item:hover {
  box-shadow: 0 8px 32px rgba(180, 100, 10, 0.13), 0 2px 8px rgba(180, 100, 10, 0.07);
}
.menu-card img, .menu-item img, .scroll-item img {
  width: 100%;
  max-width: 340px;
  max-height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin: 0 auto 1rem auto;
  display: block;
  box-shadow: 0 2px 8px rgba(180,100,10,0.09);
}
.menu-card h3, .menu-item h3 {
  color: #c04313;
  font-size: 1.8rem;
  margin-top: 1.2rem;
  font-family: 'Georgia', serif;
}
.menu-card p, .menu-item p {
  margin: 0.5rem 0;
}
.price {
  color: #267326;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.6rem;
}
.menu-card .btn, .menu-item .btn, .scroll-item .btn, .btn-success, .btn-primary {
  background: #ffbc6c;
  color: #a03b00;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  padding: 0.55rem 1.2rem;
  margin-top: 0.5rem;
  transition: background 0.2s, color 0.2s;
  font-size: 1.05rem;
}
.menu-card .btn:hover, .menu-item .btn:hover, .btn-success:hover, .btn-primary:hover, .scroll-item .btn:hover {
  background: #c04313;
  color: #fff;
}

/* Admin Links */
.admin-links {
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

/* Checkout Table */
.table {
  background: #fff8f2;
  border-radius: 12px;
  overflow: hidden;
}
.table th {
  background: #ffbc6c;
  color: #693a08;
  font-size: 1.1rem;
  font-family: 'Georgia', serif;
}
.table td {
  font-size: 1.08rem;
  color: #4d2c0c;
}

/* (X) Button */
.btn-danger.btn-sm {
  padding: 2px 8px;
  font-size: 1.1rem;
  line-height: 1;
  border-radius: 50%;
  color: #fff;
  background: #dc3545;
  border: none;
  vertical-align: middle;
}
.btn-danger.btn-sm:hover {
  background: #b91d2e;
}

/* Footer */
footer.footer {
  background: #fff8f2;
  border-top: 2px solid #ffbc6c;
  color: #9c5b2b;
  font-size: 1rem;
  padding: 1.5rem 0 0.6rem 0;
}

/* Responsive tweaks */
@media (max-width: 900px) {
  .menu-card, .menu-item, .scroll-item {
    max-width: 97vw;
    padding: 1.2rem 0.2rem;
  }
  .hero {
    flex-direction: column;
    padding: 2rem 0.7rem;
    text-align: center;
  }
  .hero-text, .hero-image {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .menu-card img, .menu-item img, .scroll-item img {
    max-width: 100%;
    max-height: 140px;
  }
  .navbar-brand {
    font-size: 1.5rem;
  }
  .menu-title {
    font-size: 2rem;
  }
}
