/* Jireh Cafe & Bakery - Main Styles */
/* Adapted from proven Mimi's Sweet Treats codebase */
/* Coffee shop theme with warm browns, creams, and earth tones */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Design System Variables - Modern Cafe Theme (From Logo) */
:root {
  /* Color Palette - Matching Logo Design */
  --logo-dark: #2B2B2B;              /* Logo background dark */
  --logo-charcoal: #1F1F1F;          /* Deeper charcoal */
  --logo-white: #FFFFFF;             /* Clean white from logo */
  --accent-cream: #F5F3EE;           /* Soft cream accent */
  --accent-warm: #E8DDD0;            /* Warm cream */
  --accent-gold: #D4AF37;            /* Refined gold accent */
  --text-dark: #2B2B2B;              /* Logo dark for text */
  --text-light: #6B6B6B;             /* Medium gray */
  --text-white: #FFFFFF;             /* Clean white text */
  --background-white: #FFFFFF;
  --background-light: #F9F9F9;
  --background-cream: #FAF8F5;       /* Subtle cream background */
  
  /* Spacing Scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  /* Typography Scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  
  /* Line Heights */
  --leading-tight: 1.25;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-loose: 2;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 12px 35px rgba(0, 0, 0, 0.2);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

/* Base HTML & Body */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 13px;
  }
}

body {
  font-family: 'Montserrat', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--text-dark);
  overflow-x: hidden;
  background: var(--background-light);
  scroll-behavior: smooth;
  font-weight: 400;
  margin: 0;
  padding: 0;
  letter-spacing: 0.3px;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Typography */
h1, .h1 {
  font-size: var(--text-5xl);
  line-height: var(--leading-tight);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--space-lg);
}

h2, .h2 {
  font-size: var(--text-4xl);
  line-height: var(--leading-tight);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--space-md);
  letter-spacing: 1px;
  text-transform: uppercase;
}

h3, .h3 {
  font-size: var(--text-3xl);
  line-height: var(--leading-normal);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
}

p {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--text-dark);
  margin-bottom: var(--space-md);
}

/* Navigation Bar - Matching Logo Dark Background */
.navbar {
  background: var(--logo-dark);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo {
  text-decoration: none;
  transition: transform 0.3s ease;
}

.nav-logo:hover {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
}

.nav-link:hover {
  color: var(--accent-gold);
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0.5rem;
}

.hamburger .bar {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Social Quick Links */
.social-quicklinks {
  background: var(--logo-charcoal);
  padding: 0.75rem 0;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.social-links-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.social-link:hover {
  background: var(--accent-gold);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.social-link i {
  font-size: 1.2rem;
}

/* Hero Section */
.hero {
  /* Background image is handled by .hero-bg img tag */
  color: white;
  padding: 180px 0 80px;
  text-align: center;
  min-height: 80vh;
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 1.5rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.8rem;
  font-family: 'Montserrat', sans-serif;
  color: white;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.95);
  background: rgba(43, 43, 43, 0.9);
  padding: 20px 30px;
  border-radius: 8px;
  backdrop-filter: blur(5px);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  color: white;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.95);
  margin-bottom: 0.8rem;
  font-weight: 600;
  background: rgba(43, 43, 43, 0.85);
  padding: 12px 20px;
  border-radius: 6px;
  backdrop-filter: blur(5px);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  margin-bottom: 2rem;
  color: white;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.95);
  background: rgba(43, 43, 43, 0.9);
  padding: 20px 25px;
  border-radius: 8px;
  backdrop-filter: blur(5px);
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  margin: 0.5rem;
  box-shadow: var(--shadow-sm);
}

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

.btn-primary {
  background: var(--logo-dark);
  color: var(--logo-white);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 4px 15px rgba(43, 43, 43, 0.3);
  border: 2px solid var(--logo-dark);
}

.btn-primary:hover {
  background: var(--logo-white);
  color: var(--logo-dark);
  box-shadow: 0 6px 25px rgba(43, 43, 43, 0.4);
  transform: translateY(-3px);
}

.btn-secondary {
  background: white;
  color: var(--text-dark);
  border: 3px solid var(--text-dark);
  font-weight: 700;
}

.btn-secondary:hover {
  background: var(--logo-dark);
  color: var(--logo-white);
  border-color: var(--logo-dark);
  box-shadow: 0 6px 25px rgba(43, 43, 43, 0.3);
  transform: translateY(-3px);
}

/* Features Section */
.features {
  padding: 80px 0;
  background: var(--background-white);
}

.section-title {
  font-size: 2.5rem;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 3rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--logo-dark);
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  font-weight: 500;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--logo-dark);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: var(--logo-dark);
}

.feature-card i {
  font-size: 3rem;
  color: var(--logo-dark);
  margin-bottom: 1rem;
}

.feature-card h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 700;
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Menu Preview Section */
.menu-preview {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--background-light), var(--background-cream));
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.menu-category {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.menu-category:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.menu-category h3 {
  color: var(--text-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--logo-dark);
  font-size: 1.2rem;
}

.menu-category ul {
  list-style: none;
  padding: 0;
}

.menu-category li {
  padding: 0.5rem 0;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.menu-category li::before {
  content: '';
  display: none;
}

/* Hours Section - Background Image */
.hours-section {
  padding: 100px 0;
  background: url('assets/images/backgrounds/hours-bg-new.jpg') center/cover;
  color: white;
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hours-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hours-subtitle {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 3rem;
  font-weight: 400;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  background: rgba(43, 43, 43, 0.8);
  padding: 12px 20px;
  border-radius: 6px;
  display: inline-block;
  letter-spacing: 1px;
}

.hours-table-container {
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  margin-bottom: 2.5rem;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table th {
  background: var(--logo-white);
  color: var(--logo-dark);
  padding: 1.5rem 2rem;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hours-table td {
  padding: 1.5rem 2rem;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 1.2rem;
  text-align: center;
  border-bottom: 2px solid var(--background-light);
}

.hours-table tr:last-child td {
  border-bottom: none;
}

.hours-note {
  background: rgba(43, 43, 43, 0.9);
  padding: 1.5rem 2rem;
  border-radius: 10px;
  text-align: center;
  backdrop-filter: blur(5px);
  max-width: 600px;
  margin: 0 auto;
}

.hours-note p {
  margin: 0;
  font-size: 1.1rem;
  color: white;
  font-weight: 500;
}

.hours-note i {
  margin-right: 0.8rem;
  font-size: 1.2rem;
  color: var(--accent-gold);
}

/* Menu Section */
.menu-container {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 248, 248, 0.95));
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  margin-bottom: 2rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  width: 100%;
  box-sizing: border-box;
}

.menu-category {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.menu-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.menu-category h3 {
  color: var(--logo-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.menu-category h4 {
  color: var(--text-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin: 1.5rem 0 0.8rem 0;
  letter-spacing: 0.5px;
}

.menu-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-category li {
  display: flex;
  flex-direction: column;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.12);
  gap: 0.5rem;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

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

.menu-item-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 0.4rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(111, 78, 55, 0.2);
  width: 100%;
}

.item-name {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 1.05rem;
  line-height: 1.4;
  letter-spacing: 0.2px;
  flex: 1 1 50%;
  min-width: 120px;
  max-width: 60%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.price {
  font-weight: 700;
  color: var(--logo-dark);
  font-size: 0.9rem;
  font-family: 'Montserrat', sans-serif;
  text-align: right;
  line-height: 1.4;
  white-space: normal;
  letter-spacing: 0.01em;
  flex: 0 0 auto;
  background: rgba(111, 78, 55, 0.1);
  padding: 0.35rem 0.7rem;
  border-radius: 6px;
  max-width: 45%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.price span {
  display: inline-block;
  margin: 0 0.35em;
  color: rgba(111, 78, 55, 0.55);
  font-weight: 400;
  font-size: 0.88em;
  vertical-align: middle;
}

.price .size-price {
  margin: 0 0.25em;
  color: var(--logo-dark);
  font-weight: 700;
  white-space: nowrap;
  display: inline-block;
}

.price .size-price:last-child {
  margin-right: 0;
}

.menu-category small {
  display: block;
  color: #666;
  font-size: 0.88rem;
  font-style: normal;
  font-weight: 400;
  margin-top: 0.3rem;
  line-height: 1.5;
  border-left: 3px solid rgba(212, 175, 116, 0.5);
  background: rgba(212, 175, 116, 0.08);
  padding: 0.6rem 0.9rem;
  border-radius: 5px;
  margin-left: 0;
  margin-right: 0;
}

.special-item {
  background: linear-gradient(135deg, var(--accent-gold), #B8941F);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  margin-top: 2rem;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.special-item h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.special-item p {
  font-size: 1.1rem;
  margin: 0.5rem 0;
  font-weight: 500;
}

.special-item strong {
  font-weight: 700;
}

@media (max-width: 768px) {
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .menu-category {
    padding: 1rem;
  }
  
  .menu-category li {
    padding: 0.9rem 0;
  }
  
  .menu-item-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.7rem;
    border-bottom: 1px solid rgba(111, 78, 55, 0.2);
    width: 100%;
  }
  
  .item-name {
    width: 100%;
    font-size: 1.05rem;
    max-width: 100%;
  }
  
  .price {
    text-align: left;
    width: 100%;
    white-space: normal;
    line-height: 1.7;
    padding: 0.4rem 0.8rem;
    align-self: stretch;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .price .size-price {
    display: inline-block;
    margin-right: 0.5em;
    white-space: nowrap;
  }
  
  .menu-category small {
    margin-left: 0;
    padding-left: 0.9rem;
    width: 100%;
    box-sizing: border-box;
  }
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  max-height: 400px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  aspect-ratio: 1;
  max-height: 180px;
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 0.8rem;
    padding: 0 1rem;
    max-height: 450px;
  }
  
  .gallery-item {
    max-height: 140px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 0.6rem;
    padding: 0 0.5rem;
    max-height: 400px;
  }
  
  .gallery-item {
    max-height: 120px;
  }
}

/* About Section */
.about-section {
  padding: 80px 0;
  background: var(--background-white);
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-text {
  margin-bottom: 2rem;
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

/* Order Section */
.order-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--background-light), var(--background-cream));
}

.order-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.order-option {
  background: white;
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.order-option:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.order-option i {
  font-size: 3rem;
  color: var(--primary-brown);
  margin-bottom: 1.5rem;
}

.order-option h3 {
  color: var(--primary-brown);
  font-family: 'Pacifico', cursive;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.order-option p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* Footer - Matching Logo */
.footer {
  background: var(--logo-dark);
  color: white;
  padding: 3rem 0 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  color: var(--logo-white);
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}

.footer-section p,
.footer-section ul {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent-cream);
  text-decoration: none;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--logo-white);
  color: var(--logo-dark);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* Floating Action Buttons */
.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.floating-action-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--logo-dark);
  color: var(--logo-white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(43, 43, 43, 0.4);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid white;
}

.floating-action-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 30px rgba(43, 43, 43, 0.5);
  background: var(--logo-white);
  color: var(--logo-dark);
}

.floating-action-btn i {
  font-size: 1.5rem;
}

.floating-action-btn .btn-label {
  display: none;
  position: absolute;
  right: 70px;
  background: var(--text-dark);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  white-space: nowrap;
  font-size: 0.875rem;
}

.floating-action-btn:hover .btn-label {
  display: block;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: var(--background-white);
}

.faq-grid {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--background-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--background-cream);
}

.faq-question h3 {
  color: var(--primary-brown);
  font-size: 1.1rem;
  margin: 0;
}

.faq-question i {
  color: var(--primary-brown);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 2rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 1.5rem 2rem;
}

.faq-answer p {
  color: var(--text-dark);
  line-height: 1.8;
  margin: 0;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--background-light);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(111, 78, 55, 0.98);
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
    z-index: 999;
    box-shadow: var(--shadow-lg);
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .hamburger {
    display: flex !important;
  }
  
  .hero {
    padding: 120px 0 40px;
    min-height: 60vh;
  }
  
  .hero-content {
    padding: 1rem;
    margin: 0 0.5rem;
  }
  
  .hero-title {
    font-size: clamp(1.4rem, 5vw, 2rem);
    max-width: 95%;
    padding: 15px 20px;
    margin-bottom: 0.6rem;
  }
  
  .hero-subtitle {
    font-size: clamp(0.85rem, 3.5vw, 1rem);
    max-width: 95%;
    padding: 10px 15px;
    margin-bottom: 0.6rem;
  }
  
  .hero-description {
    font-size: clamp(0.8rem, 3.5vw, 0.95rem);
    padding: 15px 20px;
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }
  
  .hero-buttons {
    gap: 0.8rem;
    margin-bottom: 1.5rem;
  }
  
  .btn {
    width: 100%;
    max-width: 250px;
    padding: 10px 25px;
    font-size: 0.9rem;
  }
  
  .features {
    padding: 60px 0;
  }
  
  .features-grid,
  .menu-grid,
  .order-options {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
  
  .feature-card i {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
  }
  
  .feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }
  
  .feature-card p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .social-links-container {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .floating-actions {
    bottom: 1rem;
    right: 1rem;
  }
  
  .floating-action-btn {
    width: 50px;
    height: 50px;
  }
  
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}

/* Medium Mobile Optimization */
@media (max-width: 600px) and (min-width: 481px) {
  .hero {
    padding: 110px 0 35px;
    min-height: 58vh;
  }
  
  .hero-title {
    font-size: clamp(1.3rem, 4.8vw, 1.9rem);
    padding: 14px 18px;
  }
  
  .hero-subtitle {
    font-size: clamp(0.8rem, 3.2vw, 0.95rem);
    padding: 9px 13px;
  }
  
  .hero-description {
    font-size: clamp(0.77rem, 3.2vw, 0.9rem);
    padding: 14px 18px;
  }
  
  .features {
    padding: 55px 0;
  }
  
  .section-title {
    font-size: 1.7rem;
    margin-bottom: 1.8rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.8rem;
  }
  
  .hero {
    padding: 100px 0 30px;
    min-height: 55vh;
  }
  
  .hero-content {
    padding: 0.8rem;
    margin: 0 0.3rem;
  }
  
  .hero-title {
    font-size: clamp(1.2rem, 4.5vw, 1.8rem);
    padding: 12px 16px;
    margin-bottom: 0.5rem;
  }
  
  .hero-subtitle {
    font-size: clamp(0.75rem, 3vw, 0.9rem);
    padding: 8px 12px;
    margin-bottom: 0.5rem;
  }
  
  .hero-description {
    font-size: clamp(0.75rem, 3vw, 0.85rem);
    padding: 12px 16px;
    margin-bottom: 1.2rem;
    line-height: 1.4;
  }
  
  .hero-buttons {
    gap: 0.6rem;
    margin-bottom: 1.2rem;
  }
  
  .btn {
    max-width: 220px;
    padding: 8px 20px;
    font-size: 0.85rem;
  }
  
  .features {
    padding: 50px 0;
  }
  
  .feature-card,
  .menu-category,
  .order-option {
    padding: 1.2rem;
  }
  
  .feature-card i {
    font-size: 2rem;
    margin-bottom: 0.6rem;
  }
  
  .feature-card h3 {
    font-size: 1rem;
    margin-bottom: 0.6rem;
  }
  
  .feature-card p {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  
  .section-title {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }
  
  .section-subtitle {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
  }
  
  .menu-preview,
  .about-section,
  .order-section,
  .hours-section {
    padding: 50px 0;
  }
  
  .hours-content {
    padding: 0 1rem;
  }
  
  .hours-table th,
  .hours-table td {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .floating-action-btn {
    width: 45px;
    height: 45px;
  }
  
  .floating-action-btn i {
    font-size: 1.2rem;
  }
  
  /* Additional mobile spacing optimizations */
  .navbar {
    height: 60px;
  }
  
  .nav-container {
    height: 60px;
  }
  
  .social-quicklinks {
    top: 60px;
    padding: 0.5rem 0;
  }
  
  .social-link {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  
  .social-link i {
    font-size: 1rem;
  }
  
  .gallery-grid {
    max-height: 350px;
    padding: 0 0.5rem;
  }
  
  .gallery-item {
    max-height: 100px;
  }
  
  .hours-note {
    padding: 1rem 1.5rem;
  }
  
  .hours-note p {
    font-size: 1rem;
  }
  
  .menu-container {
    padding: 1.5rem;
  }
  
  .menu-category h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }
  
  .menu-category li {
    padding: 0.6rem 0;
  }
  
  .item-name {
    font-size: 0.9rem;
  }
  
  .price {
    font-size: 1rem;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-message {
  animation: slideIn 0.3s ease;
}

/* Print Styles */
@media print {
  .navbar,
  .social-quicklinks,
  .floating-actions {
    display: none;
  }
}

