/* ==== Global Styles ==== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Open+Sans:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #1a1a1a;
  color: #f5f5f5;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ==== Navbar ==== */
.navbar {
  background-color: #111;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
}

.logo img {
  height: 55px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  color: #ffcb05;
}

.btn-order {
  background: #a81d1d;
  color: white !important;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}

.btn-order:hover {
  background: #d82626;
}

/* ==== Hero Slider ==== */
.hero-slider {
  position: relative;
  overflow: hidden;
  height: 90vh;
}

.slide {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}

.slide .overlay {
  background-color: rgba(0,0,0,0.55);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.slide h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

.cta-buttons {
  margin-top: 1rem;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  margin: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  transition: background 0.3s;
}

.btn-primary {
  background: #ffcb05;
  color: #111;
}

.btn-secondary {
  background: #a81d1d;
  color: #fff;
}

.btn-primary:hover {
  background: #ffd84d;
}

.btn-secondary:hover {
  background: #d82626;
}

/* ==== Featured Section ==== */
.featured {
  text-align: center;
  padding: 4rem 0;
}

.featured h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #ffcb05;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.card {
  background: #2a2a2a;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card h3 {
  margin: 1rem;
  color: #ffcb05;
}

.card p {
  margin: 0 1rem 1.5rem;
}

.card:hover {
  transform: scale(1.03);
}

/* ==== Menu ==== */
.menu {
  padding: 4rem 0;
  text-align: center;
}

.menu h1 {
  font-size: 2.4rem;
  color: #ffcb05;
  margin-bottom: 1rem;
}

.subtitle {
  color: #ccc;
  margin-bottom: 2rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.menu-item {
  background: #2a2a2a;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
}

.menu-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.menu-info {
  padding: 1rem;
  text-align: left;
}

.menu-info h3 {
  color: #ffcb05;
  margin-bottom: 0.5rem;
}

.price {
  color: #a81d1d;
  font-weight: 700;
}

.menu-item:hover {
  transform: translateY(-5px);
}

.menu-download {
  margin-top: 3rem;
}

/* ==== About Page ==== */
.about {
  padding: 4rem 0;
}

.about-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.about-text {
  flex: 1;
}

.about-text p {
  margin-bottom: 1rem;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
}

/* ==== Team Section ==== */
.team {
  padding: 4rem 0;
  text-align: center;
}

.team h2 {
  color: #ffcb05;
  margin-bottom: 2rem;
}

/* ==== Location Page ==== */
.location {
  padding: 4rem 0;
  text-align: center;
}

.map-section {
  margin: 2rem 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  text-align: left;
}

/* ==== Order Page ==== */
.order {
  padding: 4rem 0;
  text-align: center;
}

.order-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.order-card {
  background: #2a2a2a;
  border-radius: 10px;
  padding: 1rem;
}

.order-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}

.toggle-section {
  margin-top: 3rem;
}

.toggle-buttons {
  margin-top: 1rem;
}

.toggle {
  background: #333;
  border: none;
  padding: 0.6rem 1.2rem;
  color: #fff;
  margin: 0 0.5rem;
  border-radius: 5px;
  cursor: pointer;
}

.toggle.active {
  background: #ffcb05;
  color: #111;
}

.note {
  margin-top: 1rem;
  color: #aaa;
}

/* ==== Footer ==== */
footer {
  background: #111;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 3px solid #a81d1d;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.footer-left {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  height: 45px;
  margin-bottom: 1rem;
}

.footer-right {
  flex: 1;
  min-width: 200px;
}

.socials a {
  color: #ffcb05;
  text-decoration: none;
}

.socials a:hover {
  color: #ffd84d;
}

.copyright {
  text-align: center;
  font-size: 0.9rem;
  padding: 1rem 0;
  color: #999;
}

/* ==== Responsive ==== */
@media (max-width: 768px) {
  .hero-slider {
    height: 70vh;
  }
  .slide h1 {
    font-size: 2rem;
  }
  .nav-content {
    flex-direction: column;
    gap: 0.5rem;
  }
}
