body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--cream);
  scroll-behavior: smooth;
  font-size: 1rem;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--brown-deep);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

p, li, a {
  font-family: var(--font-body);
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  z-index: 1000;
  transition: transform 0.3s ease, background 0.3s ease;
}

.navbar.hidden {
  transform: translateY(-100%);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 2rem;
}

.nav-logo {
  height: 50px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  margin-left: 1.5rem;
  position: relative;
  transition: color 0.3s ease;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.nav-links a::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--orange-accent);
  width: 0;
  transition: width 0.3s ease;
  position: absolute;
  bottom: -3px;
  left: 0;
}

.nav-links a:hover {
  color: var(--orange-accent);
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: 1rem;
  align-self: center;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin-bottom: 5px;
  background: white;
  border-radius: 1px;
  transition: transform var(--transition), opacity var(--transition);
}

.navbar.scrolled .nav-toggle span {
  background: var(--text-dark);
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 270px;
  height: 100vh;
  background: rgba(255,255,255,0.95);
  box-shadow: -10px 0 25px rgba(0,0,0,0.15);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  gap: 1rem;
  z-index: 1100;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
}

.mobile-nav a.btn-cta {
  width: 100%;
  text-align: center;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .btn-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.navbar.scrolled .nav-links a {
  color: var(--text-dark);
  text-shadow: none;
}

.navbar.scrolled .btn-cta {
  background: var(--orange-accent);
  color: white;
}

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../assets/dish2.jpg') center/cover no-repeat;
  filter: brightness(0.55);
  transform: scale(1.05);
  transition: transform 12s ease;
  z-index: 1;
}

.hero:hover .hero-bg {
  transform: scale(1.1);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.65) 60%, rgba(0,0,0,0.85) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 960px;
  width: 100%;
  color: white;
}

.hero-logo {
  width: 350px;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out;
  position: relative;
}

.hero-badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange-accent) 100%);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  animation: fadeInUp 0.9s ease-out, pulse 2s infinite;
  box-shadow: 0 4px 15px rgba(217, 166, 99, 0.4);
  border: 2px solid rgba(255,255,255,0.5);
  white-space: nowrap;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 1rem;
  animation: fadeInUp 1.2s ease-out;
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
  animation: fadeInUp 1.4s ease-out;
}

.hero-stats {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.hero-stat {
  background: rgba(255,255,255,0.85);
  padding: 0.8rem 1.2rem;
  border-radius: 16px;
  min-width: 140px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  animation: fadeInUp 1.6s ease-out;
}

.hero-stat strong {
  display: block;
  font-size: 1.5rem;
  color: var(--green-primary);
}

.hero-stat span {
  font-size: 0.9rem;
  color: #555;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  border: none;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  font-family: var(--font-body);
  letter-spacing: 0.5px;
}

.btn-cta {
  background: var(--orange-accent);
  color: #fff;
  box-shadow: 0 14px 30px rgba(255, 122, 0, 0.25);
  animation: fadeInUp 1.6s ease-out;
}

.btn-cta:hover {
  background: #e06900;
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(255, 122, 0, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.85);
  color: var(--brown-deep);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(37, 211, 102, 0.35);
}

/* Legacy helper */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  border: none;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  font-family: var(--font-body);
  letter-spacing: 0.5px;
  background: var(--orange-accent);
  color: #fff;
  box-shadow: 0 14px 30px rgba(255, 122, 0, 0.25);
}

.btn-primary:hover {
  background: #e06900;
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(255, 122, 0, 0.35);
}

/* IMAGE GRID */
.image-grid {
  text-align: center;
  background: #fff;
  padding: 4rem 1rem;
}

.image-grid h2 {
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.grid-container img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.grid-container img:hover {
  transform: scale(1.04);
  box-shadow: 0 18px 50px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.5rem;
  }
}

/* VISIT US */
.visit-section {
  background: var(--gray-light);
  padding: 4rem 1rem;
}

.visit-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}

.visit-text {
  flex: 1 1 350px;
}

.visit-text h2 {
  color: var(--green-primary);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.visit-map {
  flex: 1 1 450px;
}

.visit-text p {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}

.visit-text .icon {
  font-size: 1.2rem;
  color: var(--orange-accent);
}

.map-responsive {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/* FOOTER */
.hero h1, .hero p, .about-hero h1, .about-hero p, .contact-hero h1, .contact-hero p {
  color: white;
}

.footer {
  text-align: center;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, var(--green-primary) 0%, #0a4a35 100%);
  color: white;
  font-size: 0.9rem;
  border-top: 4px solid var(--gold);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

.footer-links {
  margin-bottom: 1rem;
}

.footer-links a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  margin: 0 0.5rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-links span {
  color: rgba(255,255,255,0.5);
}

.footer-badge {
  margin-top: 0.4rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.85);
}

.footer-badge a {
  color: rgba(255,255,255,0.95);
  text-decoration: underline;
}

/* MENU PAGE */
.menu-header {
  background: url('../assets/space.jpg.jpeg') no-repeat center center;
  background-size: cover;
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
  padding: 8rem 1rem 6rem;
  text-align: center;
  height: 60vh;
  position: relative;
}

.menu-header .hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
}

.menu-header-content {
  position: relative;
  z-index: 1;
}

.menu-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
  color: white;
}

.menu-header p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto;
}

.menu-sections {
  padding: 4rem 1rem;
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.menu-section {
  margin-bottom: 3rem;
  background: #fafafa;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.menu-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--brown-deep);
  border-bottom: 2px solid var(--orange-accent);
  padding-bottom: 0.5rem;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.menu-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.menu-item span:first-child {
  font-weight: 500;
  color: var(--text-dark);
}

.menu-item span:last-child {
  font-weight: 600;
  color: var(--orange-accent);
}

@media (max-width: 768px) {
  .menu-items {
    grid-template-columns: 1fr;
  }
  .menu-section {
    padding: 1.5rem;
  }
}

/* MENU PREVIEW */
.menu-preview {
  padding: 4rem 1rem;
  background: var(--gray-light);
  text-align: center;
}

.menu-preview h2 {
  margin-bottom: 1rem;
}

.menu-preview p {
  max-width: 600px;
  margin: 0 auto 2rem;
  color: var(--text-dark);
}

.menu-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.menu-category {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-decoration: none;
  color: var(--text-dark);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.menu-category h3 {
  margin-bottom: 0.5rem;
  color: var(--brown-deep);
}

.menu-category p {
  font-size: 0.9rem;
  color: var(--text-dark);
}

/* LOCATIONS */
.locations {
  padding: 4rem 1rem;
  background: white;
}

.locations h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.location-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.location-item {
  background: var(--gray-light);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
}

.location-item h3 {
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .menu-categories {
    grid-template-columns: 1fr;
  }
  .location-list {
    grid-template-columns: 1fr;
  }
}
/* ABOUT PAGE */
.about-hero {
  background: url('../assets/space.jpg.jpeg') no-repeat center center;
  background-size: cover;
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
  padding: 8rem 1rem 6rem;
  text-align: center;
  height: 60vh;
}

.about-hero h1, .about-hero p {
  background: rgba(0, 0, 0, 0.6);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  display: inline-block;
}

.story-text blockquote {
  font-style: italic;
  font-size: 1.2rem;
  color: var(--brown-deep);
  border-left: 4px solid var(--orange-accent);
  padding-left: 1rem;
  margin-bottom: 1.5rem;
}

.contact-hero {
  background: url('../assets/karibu.jpg') no-repeat center center;
  background-size: cover;
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
  padding: 8rem 1rem 6rem;
  text-align: center;
  height: 60vh;
}

.contact-hero h1, .contact-hero p {
  background: rgba(0, 0, 0, 0.6);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  display: inline-block;
}

.story-section {
  background: #fff;
  padding: 4rem 1rem;
}

.story-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: center;
  justify-content: space-between;
}

.story-text {
  flex: 1 1 500px;
}

.story-text h2 {
  color: var(--green-primary);
  margin-bottom: 1rem;
}

.story-image {
  flex: 1 1 350px;
  text-align: center;
}

.story-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.philosophy-section {
  background: var(--gray-light);
  text-align: center;
  padding: 4rem 1rem;
}

.philosophy-section h2 {
  margin-bottom: 2.5rem;
}

.philosophy-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: auto;
}

.philosophy-cards .card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.philosophy-cards .card:hover {
  transform: translateY(-5px);
}
/* CONTACT PAGE */
.contact-section {
  background: #fff;
  padding: 4rem 1rem;
}

.contact-container {
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: space-between;
  align-items: flex-start;
}

.contact-form, .contact-info {
  flex: 1 1 450px;
}

.contact-form h2, .contact-info h2 {
  color: var(--green-primary);
  margin-bottom: 1rem;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.9rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  width: 100%;
}

.contact-form textarea {
  height: 150px;
  resize: none;
}

.contact-form button {
  align-self: flex-start;
}

.contact-info p {
  margin-bottom: 0.7rem;
  line-height: 1.6;
}

[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
