/**
* Redesigned by Verdent - "Bold Cravings" Theme
* Style: Modern Neobrutalist Pop
* Brand Colors: Yellow, Black, White
*/

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Manrope:wght@400;600;800&display=swap');

:root {
  /* Colors */
  --color-bg: #FFFFFF;       /* Brand White */
  --color-text: #000000;     /* Brand Black */
  --color-primary: #FFC107;  /* Brand Yellow */
  --color-accent: #FFD700;   /* Pop Yellow */
  --color-surface: #F8F9FA;  /* Light Gray Surface */
  --color-border: #000000;   /* Black Borders */
  --color-secondary: #000000; /* Secondary accents as black */

  /* Typography */
  --font-display: 'Anton', sans-serif;
  --font-body: 'Manrope', sans-serif;

  /* Spacing & Layout */
  --border-width: 3px;
  --border-radius: 0px; /* Sharper edges for Neobrutalist look, or slightly rounded */
  --box-shadow: 5px 5px 0px 0px #000000;
  --box-shadow-hover: 2px 2px 0px 0px #000000;
  
  scroll-behavior: smooth;
}

/* 1. Base Reset & Typography */
body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

img {
  max-width: 100%;
  border-radius: var(--border-radius);
}

/* 2. Layout Utilities */
section {
  padding: 80px 0;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 3rem;
  color: var(--color-text);
  text-shadow: 2px 2px 0px var(--color-primary);
  margin-bottom: 10px;
  background: var(--color-primary);
  display: inline-block;
  padding: 5px 15px;
  border: var(--border-width) solid var(--color-border);
  box-shadow: var(--box-shadow);
}

.section-header p {
  font-size: 1.2rem;
  font-weight: 600;
  max-width: 600px;
  margin: 20px auto 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* 3. Buttons & Interactive Elements */
.btn-primary {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: 1.2rem;
  padding: 12px 32px;
  border: var(--border-width) solid var(--color-border);
  border-radius: 50px;
  box-shadow: var(--box-shadow);
  transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  letter-spacing: 1px;
}

.btn-primary:hover {
  transform: translate(2px, 2px);
  box-shadow: var(--box-shadow-hover);
  background-color: #FFEA00; /* Lighter yellow on hover */
  color: var(--color-text);
}

/* 4. Header & Navigation */
.header {
  background: var(--color-bg);
  border-bottom: var(--border-width) solid var(--color-border);
  padding: 15px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.logo h1 {
  font-size: 2rem;
  margin: 0;
  color: var(--color-text);
}

.logo span {
  color: var(--color-primary);
  text-shadow: 1px 1px 0 #000;
}

.navbar ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}

.navbar a {
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  position: relative;
}

/* Desktop Hover */
@media (min-width: 992px) {
  .navbar a:hover, .navbar a.active {
    background-color: var(--color-primary);
    padding: 2px 5px;
    border: 2px solid #000;
    box-shadow: 3px 3px 0 #000;
    color: #000;
  }
}

.mobile-nav-toggle {
  display: none;
  font-size: 32px;
  cursor: pointer;
  color: var(--color-text);
  z-index: 1001; /* Ensure above overlay */
}

/* Mobile Navigation Overlay */
@media (max-width: 991px) {
  .mobile-nav-toggle { display: block; }

  .navbar {
    position: fixed;
    top: 0;
    right: -100%; /* Hidden off-screen */
    width: 100%;
    height: 100vh;
    background: var(--color-primary); /* Yellow background for menu */
    border-left: var(--border-width) solid var(--color-border);
    transition: 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
  }

  /* Class added by JS when menu is open */
  .mobile-nav-active .navbar {
    right: 0;
  }

  .navbar ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .navbar a {
    font-size: 2rem;
    color: var(--color-text);
    font-family: var(--font-display);
  }

  .navbar a:hover, .navbar a.active {
    text-decoration: underline;
    text-decoration-thickness: 4px;
  }
}

/* 5. Hero Section */
.hero {
  padding-top: 140px; /* Account for fixed header */
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-color: var(--color-primary); /* Yellow Hero Background */
  background-image: radial-gradient(#000 1px, transparent 1px);
  background-size: 30px 30px;
  border-bottom: var(--border-width) solid #000;
}

.hero-content h2 {
  font-size: 4.5rem;
  line-height: 0.95;
  margin-bottom: 25px;
  color: #000;
  text-shadow: 3px 3px 0 #fff;
}

.hero-content p {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 35px;
  color: #000;
  background: #fff;
  display: inline-block;
  padding: 10px;
  border: 2px solid #000;
  box-shadow: 4px 4px 0 #000;
}

.hero-img-container {
  position: relative;
  padding: 20px;
}

.hero-img {
  border: var(--border-width) solid var(--color-border);
  box-shadow: 12px 12px 0px #000;
  transform: rotate(-3deg);
  transition: transform 0.5s;
  background: #fff;
  border-radius: 20px;
}

.hero-img:hover {
  transform: rotate(0deg) scale(1.02);
}

.floating-badge {
  position: absolute;
  top: 0;
  right: 10px;
  background: #fff;
  color: #000;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  text-align: center;
  border: var(--border-width) solid #000;
  transform: rotate(15deg);
  z-index: 10;
  box-shadow: 4px 4px 0 #000;
  animation: bounce 3s infinite ease-in-out;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0) rotate(15deg); }
  50% { transform: translateY(-15px) rotate(15deg); }
}

/* 6. Menu Cards (Bento Style) */
.menu-item {
  background: var(--color-bg);
  border: var(--border-width) solid var(--color-border);
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.menu-item:hover {
  transform: translateY(-8px);
  box-shadow: 8px 8px 0px #000;
  background-color: #fffde7;
}

.menu-img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  margin-bottom: 25px;
  transition: transform 0.3s;
}

.menu-item:hover .menu-img {
  transform: scale(1.1) rotate(2deg);
}

.menu-item h4 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.price-tag {
  background: var(--color-primary);
  color: #000;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 800;
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-transform: uppercase;
  align-self: flex-start;
  margin-top: auto;
  border: 2px solid #000;
}

/* 7. Why Us / Features */
.feature-box {
  background: #fff;
  color: #000;
  padding: 40px 30px;
  border-radius: 12px;
  border: var(--border-width) solid #000;
  text-align: center;
  height: 100%;
  box-shadow: var(--box-shadow);
}

.feature-box.alt {
  background: var(--color-primary);
  color: #000;
}

.feature-box.dark {
  background: #000;
  color: #fff;
}

.feature-box i {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: block;
}

.feature-box h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: inherit;
}

/* 8. Gallery Section */
.gallery-section {
  background-color: var(--color-primary);
  border-top: var(--border-width) solid #000;
  border-bottom: var(--border-width) solid #000;
  padding: 60px 0;
  overflow: hidden;
}

.gallery-slider .swiper-slide {
  transition: 0.3s;
  opacity: 0.5;
  transform: scale(0.8);
}

.gallery-slider .swiper-slide-active {
  opacity: 1;
  transform: scale(1.1);
  z-index: 10;
}

.gallery-item {
  border: var(--border-width) solid #000;
  box-shadow: 6px 6px 0px #000;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .gallery-item img {
    height: 600px; /* Taller for mobile portrait images */
    object-fit: cover;
    object-position: center;
  }
}

/* 9. Testimonials */
.testimonials {
  background-color: var(--color-bg);
  border-top: var(--border-width) solid #000;
  border-bottom: var(--border-width) solid #000;
}

.testimonial-item {
  text-align: center;
  padding: 30px;
  background: #fff;
  border: var(--border-width) solid #000;
  border-radius: 12px;
  margin: 10px;
  box-shadow: 6px 6px 0px #000;
}

.testimonial-item p {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-item h3 {
  font-size: 1.2rem;
  margin: 0;
  color: #000;
  background: var(--color-primary);
  display: inline-block;
  padding: 2px 10px;
  border: 1px solid #000;
}

.stars {
  color: var(--color-primary);
  margin-top: 10px;
  text-shadow: 1px 1px 0 #000;
}

/* 10. Contact & Footer */
.contact-info-card {
  background: #fff;
  border: var(--border-width) solid #000;
  padding: 30px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 12px;
  box-shadow: 4px 4px 0px #000;
  transition: transform 0.2s;
}

.contact-info-card:hover {
  transform: translateX(5px);
  background-color: var(--color-primary);
}

.contact-info-card i {
  font-size: 2.5rem;
  color: #000;
}

.footer {
  background: #000;
  color: #fff;
  padding: 80px 0 30px;
  margin-top: 0;
  border-top: var(--border-width) solid var(--color-primary);
}

.footer h2 {
  color: var(--color-primary);
  font-size: 3rem;
}

.footer h4 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--color-primary);
  display: inline-block;
  padding-bottom: 5px;
}

.footer p {
  color: #ccc;
  font-size: 1.1rem;
}

.footer a.text-white:hover {
  color: var(--color-primary) !important;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .hero-content h2 { font-size: 3rem; }
  .section-header h2 { font-size: 2rem; }
  .hero-img { margin-top: 40px; }
  .navbar a { font-size: 1.5rem; } 
}
