/* ============================================================
   faq.css
   Extracted from inline <style> block in faq.html (the public FAQ page).
   Source: was lines 116-661 of the original HTML.
   No tokens, no refactor, no behavioural change. Pure relocation.
   Extracted 2026-06-20.
============================================================ */

body { font-family: 'Poppins', sans-serif; }

/* Main Content */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  min-height: calc(100vh - 400px);
}

.faq-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-intro h1 {
  font-size: clamp(1.8rem, 15vw, 3.4rem);
  font-weight: 650;
  color: #00401A;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #006600 0%, #00401A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.05;
}

.faq-intro p {
  font-size: 1.3rem;
  font-weight: 550;
  color: #000;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.3;
}

/* FAQ Search */
.faq-search {
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.search-wrapper {
  position: relative;
  width: 100%;
}

.search-wrapper input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: #333;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.search-wrapper input:focus {
  outline: none;
  border-color: #006600;
  box-shadow: 0 0 0 3px rgba(0, 102, 0, 0.1), 0 4px 15px rgba(0,0,0,0.15);
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: #666;
}

/* FAQ Categories Grid */
.faq-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

/* FAQ Category Card */
.faq-category {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.faq-category:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.category-header {
  background: linear-gradient(135deg, #006600 0%, #00401A 100%);
  color: white;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.category-icon {
  font-size: 2rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.8rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
}

.category-header h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
  color: #fff;
  line-height: 1.3;
}

.category-content {
  padding: 0;
}

/* FAQ Items */
.faq-item {
  border-bottom: 1px solid #f0f0f0;
}

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

.faq-question {
  width: 100%;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: #000;
  text-align: left;
  transition: all 0.3s ease;
  line-height: 1.4;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question:focus {
  outline: 2px solid #006600;
  outline-offset: -2px;
}

.faq-toggle {
  width: 2rem;
  height: 2rem;
  background: #006600;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-question.active .faq-toggle {
  transform: rotate(45deg);
  background: #28a745;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: #ffffff;
}

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

.faq-answer p {
  font-family: 'Poppins', sans-serif;
  margin: 0 0 1rem 0;
  font-size: 1.1rem;
  line-height: 1.3;
  color: #000;
}

/* Contact Support Section */
.contact-support {
  background: linear-gradient(135deg, #006600 0%, #00401A 100%);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  color: white;
  margin: 3rem 0;
  box-shadow: 0 8px 30px rgba(0, 102, 0, 0.3);
}

.contact-support h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
  line-height: 1.3;
}

.contact-support p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  line-height: 1.6;
}

.support-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.support-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: white;
  color: #006600;
  text-decoration: none;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.support-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  background: #f8f9fa;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .main-content {
    padding: 1.5rem 1rem;
  }
  
  .faq-intro h1 {
    font-size: clamp(1.6rem, 10vw, 3rem);
  }
  
  .faq-intro p {
  line-height: 1.2;
}
  
  .faq-categories {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .category-header {
    padding: 1.25rem;
  }
  
  .category-icon {
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
  }
  
  .faq-question {
    padding: 1.25rem;
    font-size: 1.125rem;
  }
  
  .faq-answer.active {
    padding: 0 1.25rem 1.25rem;
  }
  
  .contact-support {
    padding: 2rem 1.5rem;
  }
  
  .contact-support h2 {
    font-size: 1.75rem;
  }
  
  .support-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .support-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .main-content {
    padding: 1rem 0.5rem;
  }
  
  .faq-intro h1 {
    font-size: clamp(1.5rem, 9vw, 2.4rem);
  }
  
  .search-wrapper input {
    padding: 0.75rem 0.75rem 0.75rem 2.5rem;
    font-size: 0.9rem;
  }
  
  .faq-question {
    padding: 1rem;
    font-size: 1.1rem;
  }
  
  .faq-toggle {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 1rem;
  }
  
  .contact-support {
    padding: 1.5rem 1rem;
  }
  
  .contact-support h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 360px) {
  .faq-intro h1 {
    font-size: clamp(1.5rem, 9vw, 2.4rem);
  }
  
  .category-header h3 {
    font-size: 1.2rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Print Styles */
@media print {
  .contact-support {
    background: white !important;
    color: black !important;
  }
  
  .faq-category {
    break-inside: avoid;
    box-shadow: none !important;
    border: 1px solid #ccc !important;
  }
  
  .faq-answer {
    max-height: none !important;
    padding: 1rem !important;
  }
}

/* ── kitchen-header — verbatim from index.txt ── */
.kitchen-header { box-shadow: none !important; }
.kitchen-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 28px;
  background: linear-gradient(135deg, #006600 0%, #00401A 100%);
  border-bottom: 1px solid rgba(0,0,0,0.15);
}
.kitchen-header .k-logo img { height: 64px; display: block; flex-shrink: 0; }
.kitchen-header nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 4px; flex-wrap: wrap;
}
.kitchen-header nav ul li a {
  display: inline-block;
  padding: 6px 14px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.kitchen-header nav ul li a:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}
.kitchen-header nav ul li a.active {
  background: rgba(255,255,255,0.22);
  color: #fff;
  font-weight: 600;
}
@media (max-width: 1200px) {
  .kitchen-header nav ul { gap: 2px; }
  .kitchen-header nav ul li a { font-size: 12.5px; padding: 5px 10px; }
}
@media (max-width: 1024px) {
  .kitchen-header nav ul li a { font-size: 12px; padding: 5px 8px; }
}
@media (max-width: 900px) {
  .kitchen-header nav ul li a { font-size: 11.5px; padding: 4px 6px; }
}
@media (max-width: 767px) {
  .kitchen-header { padding: 12px 16px; }
  .kitchen-header nav { display: none; }
}
    @media (max-width: 480px) {
      /* Phase 2 (revised 2026-06-23) — logo at 75% width, centered horizontally,
        0px vertical padding. */
      .kitchen-header { padding-top: 0px; padding-bottom: 0px; justify-content: center; }
      .kitchen-header .k-logo { width: 75%; display: flex; justify-content: center; }
      .kitchen-header .k-logo img { width: 100%; height: auto; display: block; }
    }
.mobile-menu-toggle.hidden-until-scroll { box-shadow: none !important; }

/* ── k-hero ── */
#k-hero {
  position: relative;
  height: 82.5vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.k-hero-bg {
  position: absolute;
  inset: 0;
  background: url('/welcome.jpg') center/cover no-repeat;
}
.k-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(10,20,10,0.55) 60%, rgba(0,0,0,0.80) 100%);
}
.k-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px 80px;
  max-width: 640px;
}
.k-hero-eyebrow { margin: 0 0 2px; }
.k-hero-eyebrow span {
  background-color: #006600;
  color: #ffffff;
  mix-blend-mode: multiply;
  font-size: 12px;
  letter-spacing: 0.20em;
  font-weight: 550;
  text-transform: uppercase;
  display: inline-block;
  padding: 0px 4px;
}
.k-hero-headline {
  font-size: clamp(1.8rem, 15vw, 3.4rem);
  font-weight: 650;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.05;
}
.k-hero-sub {
  font-size: 20px;
  color: rgba(255,255,255,1);
  margin: 0 0 30px;
  line-height: 1.35;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .k-hero-headline { font-size: clamp(2rem, 6vw, 3.0rem); }
}
@media only screen and (max-width: 768px) {
  .k-hero-headline { font-size: clamp(1.6rem, 10vw, 3rem); line-height: 1.05; }
  .k-hero-sub { font-size: 16px; margin: 0 0 48px; line-height: 1.25; }
}
@media only screen and (max-width: 360px) {
  .k-hero-headline { font-size: clamp(1.5rem, 9vw, 2.4rem); }
}
.k-hero-btns {
  display: inline-flex; gap: 16px; flex-wrap: wrap; justify-content: center;
}
.k-btn-primary {
  display: inline-flex; align-items: center; gap: 6px;
  background: #00401a; color: #fff; text-decoration: none;
  border-radius: 8px; padding: 14px 32px; font-size: 15px;
  font-weight: 500; transition: background 0.2s;
}
.k-btn-primary:hover { color: #00401a; background: #fff; }
.k-btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid rgba(255,255,255,0.4); color: #fff; text-decoration: none;
  border-radius: 8px; padding: 14px 32px; font-size: 15px;
  font-weight: 500; transition: border-color 0.2s, background 0.2s;
}
.k-btn-ghost:hover { border-color: rgba(255,255,255,0.7); background: #00401a; }
.k-hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 2; animation: k-bounce 1.2s ease-in-out infinite;
}
@keyframes k-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}
.k-hero-scroll svg { opacity: 0.5; }
