* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #fff9f2;
  color: #1e1e1e;
  scroll-behavior: smooth;
  line-height: 1.4;
  height: 100vh;
}

/* container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* animations */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(28px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-fade-up {
  animation: fadeUp 0.7s ease forwards;
}

.section {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* header / navbar */
.navbar {
  background: #000000dd;
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
  border-bottom: 2px solid #10be00;
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.nav-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: #10be00;
}

.nav-links a:hover,
.nav-links a.active {
  color: #f5b042;
}

/* hero section */
.hero {
  background-image: linear-gradient(105deg, rgba(26,26,26,0.7), rgba(44,36,26,0.7)), url('adnil_building2.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 70px 0 80px;
  color: white;
  text-align: center;
}

.hero-badge {
  background: #f5b04220;
  display: inline-block;
  padding: 6px 16px;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #10be00;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero h1 span {
  color: #10be00;
}

.hero p {
  font-size: 1.2rem;
  max-width: 650px;
  margin: 20px auto;
  opacity: 0.9;
}

.btn-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn-primary {
  background: #10be00;
  color: #1e1e1e;
  padding: 14px 34px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #10be00;
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(245, 176, 66, 0.3);
}

.btn-outline {
  background: transparent;
  border: 2px solid #10be00;
  color: #10be00;
  padding: 12px 32px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  background: #f5b04220;
  transform: scale(1.02);
}

.info-strip {
  background: #fff1e0;
  padding: 18px 0;
  border-bottom: 1px solid #ffdcb5;
}

.strip-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #2c2b26;
}

.strip-item i {
  font-size: 1.6rem;
  color: #d97917;
}

/* Menu section */
.menu-section {
  padding: 80px 0;
  background: #ffffff;
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e1e1e;
}

.section-title p {
  color: #5a5a5a;
  max-width: 600px;
  margin: 12px auto 0;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 20px;
}

.menu-card {
  background: #fefaf5;
  border-radius: 28px;
  padding: 28px 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
  transition: 0.25s;
  border: 1px solid #ffe1c2;
  text-align: center;
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.08);
}

.badge-seller {
  background: #10be00;
  color: #1e1e1e;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 12px;
}

.menu-card h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 12px 0;
}

.menu-desc {
  color: #4a4a4a;
  margin: 12px 0;
  font-size: 0.95rem;
}

.feature-list {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 18px 0;
  flex-wrap: wrap;
}

.feature-list span {
  background: #fff0e2;
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
}

.btn-menu {
  background: none;
  border: 1px solid #d9b48b;
  padding: 8px 20px;
  border-radius: 40px;
  font-weight: 600;
  color: #b45f2b;
  text-decoration: none;
  display: inline-block;
  transition: 0.2s;
}

.btn-menu:hover {
  background: #10be00;
  color: white;
  border-color: #10be00;
}

.special-note {
  text-align: center;
  margin-top: 48px;
}

/* location section */
.location-section {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('adnil_staff1.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
}

.location-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust darkness */
    z-index: -1;
}

.find_us {
  color: black;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.address-card {
  background: white;
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
}

.address-card h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.address-detail {
  margin: 20px 0;
  line-height: 1.5;
}

.landmark {
  background: #fff2e6;
  padding: 12px;
  border-radius: 20px;
  margin: 20px 0;
  border-left: 6px solid #10be00;
}

.btn-map {
  background: #1e1e1e;
  color: white;
  padding: 12px 28px;
  border-radius: 40px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  margin-top: 8px;
}

.map-placeholder {
  background: #e2d9cf;
  border-radius: 28px;
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url("https://placehold.co/600x400/e9e1d6/7f6b5a?text=📍+Louis+Building,+80+Oliver+Tambo+Rd");
  background-size: cover;
  background-position: center;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
  position: relative;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  border: none;
}

/* instagram section */
.instagram-section {
  background-image: url("meaty_kota.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 80px 0;
  text-align: center;
  /* Add a dark overlay if text is hard to read */
  position: relative;
}

/* Optional: dark overlay to make text pop */
.instagram-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Adjust darkness */
  z-index: 1;
}

/* Make sure content sits above the overlay */
.instagram-section > * {
  position: relative;
  z-index: 2;
}

.section-title h2 {
  color: #10be00;
}

.section-title p {
  color: white;
}

.insta-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 40px 0;
}

.insta-card {
  background: #faf3ea67;
  width: 200px;
  padding: 24px 0;
  border-radius: 32px;
  text-align: center;
  transition: 0.2s;
}

.insta-card i {
  font-size: 3rem;
  color: #d97917;
}

.btn-follow {
  background: linear-gradient(45deg, #f5b042, #f77737);
  color: white;
  padding: 12px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin: 12px 0;
}

/* cta section */
.cta-section {
  background: #1e1a15;
  color: white;
  padding: 70px 0;
  text-align: center;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* footer */
footer {
  background: #0f0f0c;
  padding: 48px 0 24px;
  color: #cbcbcb;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: #f5b042;
  margin-bottom: 18px;
  font-size: 1.2rem;
}

.footer-col a {
  color: #dddddd;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: 0.2s;
}

.footer-col a:hover {
  color: #10be00;
}

.copyright {
  text-align: center;
  border-top: 1px solid #2a2a24;
  padding-top: 28px;
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.3rem;
  }
  .location-grid {
    grid-template-columns: 1fr;
  }
  .nav-flex {
    flex-direction: column;
  }
  .strip-flex {
    justify-content: center;
  }
  .container {
    padding: 0 20px;
  }
}

button,
.btn-primary,
.btn-outline,
.btn-map,
.btn-follow {
  cursor: pointer;
}

.whatsapp-order {
  background: #25d366;
  border: none;
}
