/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Bitter', Georgia, "Times New Roman", serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== HEADER ===== */
.site-header {
  background: rgba(0,0,0,0.82);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 30px;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo img {
  height: 60px;
  width: auto;
}

/* ===== NAVIGATION ===== */
.main-nav ul {
  display: flex;
  gap: 5px;
}

.main-nav a {
  font-family: 'Oswald', Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  padding: 10px 15px;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.main-nav a:hover {
  color: #5cbf3b;
}

.main-nav .order-online a {
  background: #dd3333;
  color: #fff;
  border-radius: 3px;
  padding: 10px 20px;
}

.main-nav .order-online a:hover {
  background: #c62828;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(rgba(0,0,0,0.47), rgba(0,0,0,0.47)),
              url('../images/lm2.png') center center / contain no-repeat;
  background-color: #1a1a1a;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 80px;
  padding: 60px 20px;
}

.hero-content img {
  max-width: 400px;
  margin: 0 auto;
}

/* ===== QUICK LINKS (Icons Row) ===== */
.quick-links {
  background: #5cbf3b;
  padding: 50px 20px;
}

.quick-links-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.quick-link {
  text-align: center;
  transition: transform 0.3s;
}

.quick-link:hover {
  transform: scale(1.05);
}

.quick-link img {
  width: 120px;
  height: 120px;
  margin: 0 auto 15px;
}

.quick-link span {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 2px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #1a1a1a;
  color: #fff;
  padding: 50px 20px 30px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-col h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  color: #5cbf3b;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.footer-col p, .footer-col a {
  font-size: 14px;
  line-height: 1.8;
  color: #ccc;
}

.footer-col a:hover {
  color: #5cbf3b;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #333;
  font-size: 13px;
  color: #666;
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));
  background-color: #2d2d2d;
  padding: 120px 20px 50px;
  text-align: center;
  margin-top: 80px;
}

.page-header h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 42px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-dark {
  background: #f5f5f5;
}

.section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  text-transform: uppercase;
  color: #333;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 2px;
}

/* ===== GALLERY GRID ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 15px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 5px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  font-family: sans-serif;
}

/* ===== SPECIALS ===== */
.specials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

.special-card {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  border-top: 4px solid #5cbf3b;
}

.special-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  color: #dd3333;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.special-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

.special-card .price {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  color: #5cbf3b;
  margin-top: 10px;
}

/* ===== LOCATIONS ===== */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

.location-card {
  background: #fff;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  text-align: center;
  border-top: 4px solid #5cbf3b;
}

.location-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 20px;
}

.location-card p {
  font-size: 15px;
  color: #555;
  margin-bottom: 8px;
}

.location-card .phone {
  font-size: 20px;
  color: #5cbf3b;
  font-weight: bold;
}

.location-card .hours {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
  font-size: 14px;
  color: #777;
}

/* ===== CONTACT FORM ===== */
.contact-wrapper {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form label {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  color: #555;
  letter-spacing: 1px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-family: 'Bitter', serif;
  font-size: 15px;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #5cbf3b;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form button {
  background: #5cbf3b;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 15px 40px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
  align-self: flex-start;
}

.contact-form button:hover {
  background: #4aa830;
}

/* ===== MENU PAGE ===== */
.menu-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.menu-content p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  background: #5cbf3b;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 15px 40px;
  border-radius: 5px;
  transition: background 0.3s;
}

.btn:hover {
  background: #4aa830;
}

.btn-red {
  background: #dd3333;
}

.btn-red:hover {
  background: #c62828;
}

/* ===== MOBILE CTA ===== */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  background: #dd3333;
  color: #fff;
  text-align: center;
  padding: 15px;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 999;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .header-inner {
    height: 65px;
  }

  .logo img {
    height: 45px;
  }

  .hamburger {
    display: flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 65px;
    left: 0; right: 0;
    background: rgba(0,0,0,0.95);
    padding: 20px 0;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: center;
  }

  .main-nav a {
    padding: 12px 20px;
    display: block;
  }

  .hero {
    min-height: 350px;
    margin-top: 65px;
  }

  .hero-content img {
    max-width: 250px;
  }

  .quick-links-inner {
    gap: 30px;
  }

  .quick-link img {
    width: 80px;
    height: 80px;
  }

  .page-header {
    padding: 100px 20px 40px;
    margin-top: 65px;
  }

  .page-header h1 {
    font-size: 30px;
  }

  .locations-grid {
    grid-template-columns: 1fr;
  }

  .mobile-cta {
    display: block;
  }

  .site-footer {
    padding-bottom: 80px;
  }
}
