* {
  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;
}

.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);
  }
}
.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 */
.hero {
  background: linear-gradient(105deg, #1a1a1a 0%, #2c241a 100%);
  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: #f5b042;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.hero h1 span {
  color: #f5b042;
}
.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;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: #0c9100;
  transform: scale(1.02);
}
.btn-outline {
  background: transparent;
  border: 2px solid #f5b042;
  color: #f5b042;
  padding: 12px 32px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.2s;
}
.btn-outline:hover {
  background: #f5b04220;
}

/* info strip */
.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;
}
.strip-item i {
  font-size: 1.6rem;
  color: #d97917;
}

/* menu preview (short) */
.menu-preview {
  padding: 60px 0;
  background: white;
}
.section-title {
  text-align: center;
  margin-bottom: 48px;
}
.section-title h2 {
  font-size: 2.5rem;
  font-weight: 800;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}
.menu-card {
  background: #fefaf5;
  border-radius: 28px;
  padding: 24px;
  border: 1px solid #ffe1c2;
  text-align: center;
  transition: 0.2s;
}
.menu-card h3 {
  font-size: 1.5rem;
  margin: 12px 0;
}

/* ========= CONTACT FORM SECTION (EmailJS integration) ========= */
.contact-section {
  padding: 80px 0;
  background: #f7f2ea;
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: white;
  border-radius: 36px;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.contact-info {
  background: #2c241a;
  color: white;
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-info h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.contact-info p {
  margin-bottom: 28px;
  opacity: 0.85;
  line-height: 1.5;
}
.info-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.info-detail i {
  font-size: 1.8rem;
  color: #f5b042;
  width: 40px;
}
.contact-form {
  padding: 48px 36px;
  background: white;
}
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  color: #2c241a;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #e2d9cf;
  border-radius: 28px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  transition: 0.2s;
  background: #fefcf9;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #f5b042;
  box-shadow: 0 0 0 3px rgba(245, 176, 66, 0.2);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.submit-btn {
  background: #10be00;
  border: none;
  width: 100%;
  padding: 14px;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 40px;
  color: #1e1e1e;
  cursor: pointer;
  transition: 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.submit-btn:hover {
  background: #0c9100;
  transform: scale(1.01);
}
.form-message {
  margin-top: 20px;
  text-align: center;
  font-weight: 600;
  padding: 12px;
  border-radius: 40px;
  display: none;
}
.form-message.success {
  background: #d4edda;
  color: #155724;
  display: block;
}
.form-message.error {
  background: #f8d7da;
  color: #721c24;
  display: block;
}
@media (max-width: 800px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* 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;
}
.footer-col a {
  color: #dddddd;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
}
.footer-col a:hover {
  color: #f5b042;
}
.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;
  }
}
