/* ==========================================================================
   Hendrick's Burgers & Salads - Main Stylesheet
   Brand colours: Orange #FF9900, Black #1A1A1A, White #FFFFFF
   Font: System sans-serif stack
   ========================================================================== */

/* --- CSS Variables --- */
:root {
  --orange: #FF9900;
  --orange-dark: #E68A00;
  --orange-light: #FFB84D;
  --black: #1A1A1A;
  --dark: #2D2D2D;
  --gray-dark: #4A4A4A;
  --gray: #6B6B6B;
  --gray-light: #E8E8E8;
  --off-white: #FAFAFA;
  --white: #FFFFFF;
  --red: #C0392B;
  --green: #4CAF50;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --max-width: 1200px;
  --nav-height: 72px;
  --transition: 0.3s ease;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--orange);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--orange-dark);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section--gray {
  background-color: var(--off-white);
}

.section--dark {
  background-color: var(--black);
  color: var(--white);
}

.section--orange {
  background-color: var(--orange);
  color: var(--white);
}

.section__header {
  text-align: center;
  margin-bottom: 48px;
}

.section__header h2 {
  margin-bottom: 12px;
}

.section__header p {
  color: var(--gray);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.section--dark .section__header p {
  color: var(--gray-light);
}

.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}

.btn--primary {
  background-color: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn--primary:hover {
  background-color: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background-color: transparent;
  color: var(--orange);
  border-color: var(--orange);
}

.btn--outline:hover {
  background-color: var(--orange);
  color: var(--white);
}

.btn--white {
  background-color: var(--white);
  color: var(--orange);
  border-color: var(--white);
}

.btn--white:hover {
  background-color: var(--off-white);
  color: var(--orange-dark);
}

.btn--dark {
  background-color: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn--dark:hover {
  background-color: var(--dark);
}

.btn--lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn--block {
  width: 100%;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: box-shadow var(--transition);
}

.nav.scrolled {
  box-shadow: var(--shadow-md);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav__logo img {
  height: 48px;
  width: auto;
}

.nav__logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav__logo-text small {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--gray);
  display: block;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding: 4px 0;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--orange);
  transition: width var(--transition);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__links a:hover {
  color: var(--orange);
}

.nav__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black);
  margin-right: 16px;
}

.nav__cta {
  margin-left: 8px;
}

.nav__cta .btn {
  background-color: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  padding: 10px 22px;
  font-size: 0.8rem;
}

.nav__cta .btn:hover {
  background-color: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--black);
  margin: 6px 0;
  transition: all var(--transition);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: var(--nav-height);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.4) 0%,
    rgba(0,0,0,0.6) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 40px 20px;
}

.hero__content h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero__content p {
  color: rgba(255,255,255,0.9);
  font-size: 1.25rem;
  margin-bottom: 32px;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Card Grid --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card__body {
  padding: 20px;
}

.card__body h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.card__body p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* --- Menu Items --- */
.menu-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.menu-nav a {
  padding: 10px 24px;
  border: 2px solid var(--gray-light);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black);
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.menu-nav a:hover,
.menu-nav a.active {
  background-color: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.menu-category {
  margin-bottom: 56px;
}

.menu-category__header {
  border-bottom: 3px solid var(--orange);
  padding-bottom: 12px;
  margin-bottom: 24px;
}

.menu-category__header h2 {
  font-size: 1.75rem;
  text-transform: uppercase;
  color: var(--orange);
}

#burgers .menu-category__header h2 {
  color: var(--red);
}

#salad-bowls .menu-category__header h2 {
  color: var(--green);
}

#burgers .menu-category__header {
  border-bottom-color: var(--red);
}

#salad-bowls .menu-category__header {
  border-bottom-color: var(--green);
}

.menu-category__note {
  font-size: 0.9rem;
  color: var(--gray);
  margin-top: 4px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-light);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item__info {
  flex: 1;
  padding-right: 24px;
}

.menu-item__name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu-item__badges {
  display: inline-flex;
  gap: 4px;
}

.badge {
  display: inline-block;
  padding: 2px 8px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 3px;
  letter-spacing: 0.5px;
}

.badge--spicy {
  background-color: #FDE8E8;
  color: var(--red);
}

.badge--popular {
  background-color: #FFF3D6;
  color: #B8860B;
}

.badge--veg {
  background-color: #E8F5E9;
  color: var(--green);
}

.badge--gf {
  background-color: #E3F2FD;
  color: #1565C0;
}

.protein-icon {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.protein-icon svg,
.protein-icon img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.protein-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
  padding: 8px 0;
}

.protein-legend__item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: var(--gray);
  font-weight: 500;
}

.protein-legend__item svg,
.protein-legend__item img {
  width: 16px;
  height: 16px;
}

.menu-item__desc {
  color: var(--gray);
  font-size: 0.9rem;
}

.menu-item__price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  white-space: nowrap;
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial__stars {
  color: var(--orange);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.testimonial__text {
  font-style: italic;
  color: var(--gray-dark);
  margin-bottom: 16px;
  line-height: 1.7;
}

.testimonial__author {
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial__source {
  font-size: 0.8rem;
  color: var(--gray);
}

/* --- Google Rating Badge --- */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.rating-badge__score {
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
}

.rating-badge__stars {
  color: var(--orange);
  font-size: 1rem;
}

.rating-badge__count {
  font-size: 0.85rem;
  color: var(--gray);
}

/* --- CTA Banner --- */
.cta-banner {
  padding: 64px 20px;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  font-size: 2.25rem;
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  margin-bottom: 24px;
}

/* --- Location / Map --- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.location__map {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.location__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.location__info h2 {
  margin-bottom: 28px;
}

.location__info h3 {
  margin-bottom: 16px;
  font-size: 1.3rem;
}

.location__detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.location__detail svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--orange);
}

.location__detail p {
  margin: 0;
}

.location__detail a {
  font-weight: 600;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}

.hours-table td {
  padding: 6px 0;
  font-size: 0.95rem;
}

.hours-table td:first-child {
  font-weight: 600;
  width: 120px;
}

.hours-table .closed {
  color: var(--gray);
}

/* --- About Section --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__text h2 {
  margin-bottom: 16px;
}

.about__text p {
  color: var(--gray-dark);
  margin-bottom: 16px;
}

/* --- Contact Form --- */
.contact-form {
  max-width: 600px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* --- Footer --- */
.footer {
  background-color: var(--black);
  color: var(--white);
  padding: 64px 0 24px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer__brand img {
  height: 60px;
  margin-bottom: 16px;
}

.footer__brand p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--white);
  transition: background-color var(--transition);
}

.footer__social a:hover {
  background-color: var(--orange);
}

.footer h4 {
  color: var(--white);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer__links a {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  padding: 4px 0;
}

.footer__links a:hover {
  color: var(--orange);
}

.footer__hours td {
  padding: 3px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

.footer__hours td:first-child {
  font-weight: 600;
  color: var(--white);
  padding-right: 16px;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* --- Gallery Grid --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0 16px;
  margin-bottom: 0;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  transition: transform var(--transition);
}

.gallery-grid img:hover {
  transform: scale(1.02);
}

/* Space between gallery and footer */
.gallery-grid + .footer {
  margin-top: 64px;
}

/* --- Blog Cards --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.blog-card__date {
  font-size: 0.8rem;
  color: var(--orange);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.blog-card__body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.blog-card__body p {
  font-size: 0.9rem;
  color: var(--gray);
}

/* --- Page Header --- */
.page-header {
  background-color: var(--black);
  color: var(--white);
  padding: 100px 0 60px;
  margin-top: var(--nav-height);
  text-align: center;
}

.page-header h1 {
  color: var(--white);
}

.page-header p {
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 12px auto 0;
}

/* --- Breadcrumb --- */
.breadcrumb {
  padding: 12px 0;
  font-size: 0.85rem;
}

.breadcrumb a {
  color: var(--gray);
}

.breadcrumb span {
  color: var(--gray);
  margin: 0 8px;
}

/* --- 404 Page --- */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: var(--nav-height);
}

.error-page h1 {
  font-size: 6rem;
  color: var(--orange);
}

.error-page h2 {
  margin-bottom: 16px;
}

.error-page p {
  color: var(--gray);
  margin-bottom: 24px;
}
