/* ============================================
   Chef Mollie — Full Stylesheet
   Mobile-first responsive design
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  color: #2c2c2c;
  background: #faf8f5;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Inter', Georgia, 'Times New Roman', serif;
  font-weight: 900;
  line-height: 1.2;
}

/* --- Layout --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 0.75rem;
  color: #2c2c2c;
}

.section-subtitle {
  text-align: center;
  font-size: 1.05rem;
  color: #777;
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  transition: background 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  background: rgba(250, 248, 245, 0.97);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: 'Inter', Georgia, 'Times New Roman', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  transition: color 0.3s;
}
.logo span { color: #f97316; }
.site-header.scrolled .logo { color: #2c2c2c; }
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s;
}
.nav-links a:hover { color: #f97316; }
.site-header.scrolled .nav-links a:not(.btn-primary) { color: #555; }
.site-header.scrolled .nav-links a:not(.btn-primary):hover { color: #f97316; }

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: all 0.3s;
}
.site-header.scrolled .nav-toggle span {
  background: #2c2c2c;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
}
.nav-overlay.open { display: block; }

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    background: #faf8f5;
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    font-size: 1rem;
    color: #2c2c2c;
  }
  .nav-toggle {
    display: block;
    z-index: 1001;
  }
  .nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .site-header { padding: 0.75rem 1rem; }
}

/* --- Hero --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('img/hero-1200w.webp') center/cover no-repeat;
  z-index: -2;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.55));
  z-index: -1;
}
@media (min-width: 1200px) {
  .hero::before { background-image: url('img/hero-1920w.webp'); }
}
@media (max-width: 799px) {
  .hero::before { background-image: url('img/hero-800w.webp'); }
}

.hero-content {
  max-width: 700px;
  padding: 0 1.5rem;
}
.hero h1 {
  font-family: 'Inter';
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.hero .tagline {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}
.scroll-indicator svg {
  width: 30px;
  height: 30px;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
  opacity: 0.7;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-primary {
  background: #f97316;
  color: #fff;
}
.btn-primary:hover {
  background: #a85d33;
  transform: translateY(-1px);
}
.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}
.btn-outline:hover {
  background: #fff;
  color: #2c2c2c;
}
.btn-outline-dark {
  border: 2px solid #f97316;
  color: #f97316;
  background: transparent;
  padding: 0.65rem 1.5rem;
  font-size: 0.85rem;
}
.btn-outline-dark:hover {
  background: #f97316;
  color: #fff;
}
.btn-full { width: 100%; }

/* --- About --- */
.about { background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.about-image {
  border-radius: 4px;
  overflow: hidden;
}
.about-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.about-text .lead {
  font-family: 'Inter', Georgia, 'Times New Roman', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.about-text p {
  margin-bottom: 1.25rem;
  color: #444;
}
.about-text .btn {
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* --- Services --- */
.services { background: #faf8f5; }
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.service-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.service-image img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.service-content {
  padding: 2rem;
}
.service-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2c2c2c;
}
.service-content p {
  color: #555;
  margin-bottom: 1.25rem;
}
.service-features {
  margin-bottom: 1.5rem;
  padding-left: 0;
}
.service-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: #555;
  font-size: 0.95rem;
}
.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: #f97316;
  border-radius: 50%;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

/* --- Gallery --- */
.gallery { background: #fff; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 3px;
  cursor: pointer;
  position: relative;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s;
}
.gallery-item:hover::after {
  background: rgba(0,0,0,0.15);
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img {
  transform: scale(1.05);
}

@media (min-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}
@media (min-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1200px) {
  .gallery-grid {
    gap: 1.25rem;
  }
}

/* --- How It Works --- */
.how-it-works { background: #f5f0eb; }
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  text-align: center;
}
.step-icon {
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.step-icon img {
  width: 64px;
  height: 64px;
  margin: 0 auto;
}
.step h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: #2c2c2c;
}
.step p {
  color: #555;
  max-width: 320px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

/* --- Testimonials --- */
.testimonials { background: #fff; }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.testimonial {
  background: #faf8f5;
  padding: 2rem;
  border-radius: 4px;
  border-left: 4px solid #f97316;
}
.testimonial .stars {
  color: #f97316;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.testimonial p {
  font-style: italic;
  color: #444;
  margin-bottom: 1rem;
  line-height: 1.7;
}
.testimonial cite {
  font-style: normal;
  font-weight: 600;
  color: #777;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --- FAQ --- */
.faq { background: #faf8f5; }
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid #e0dcd7;
  padding: 0;
}
.faq-item summary {
  padding: 1.25rem 2.5rem 1.25rem 0;
  font-family: 'Inter', Georgia, 'Times New Roman', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c2c2c;
  cursor: pointer;
  position: relative;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  color: #f97316;
  transition: transform 0.3s;
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-answer {
  padding: 0 0 1.5rem;
  color: #555;
  line-height: 1.7;
}
.faq-answer a {
  color: #f97316;
  text-decoration: underline;
}

/* --- Contact --- */
.contact { background: #2c2c2c; color: #fff; }
.contact .section-title {
  background: linear-gradient(90deg, #ec4899, #f59e0b, #ec4899, #f59e0b, #ec4899);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 6s ease infinite;
}
@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.contact .section-subtitle { color: #aaa; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
  color: #ccc;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: #3a3a3a;
  border: 1px solid #555;
  border-radius: 3px;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #888;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #f97316;
 /* box-shadow: 0 0 8px rgba(236, 72, 153, 0.4), 0 0 12px rgba(236, 72, 153, 0.25); */
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
.form-group select option {
  background: #3a3a3a;
  color: #fff;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-detail h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: #f97316;
}
.contact-detail p {
  color: #bbb;
  margin-bottom: 0.3rem;
}
.contact-detail a {
  color: #ddd;
  transition: color 0.2s;
}
.contact-detail a:hover {
  color: #f97316;
}

.social-links {
  display: flex;
  gap: 1.5rem;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #bbb;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.social-link:hover { color: #f97316; }

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
  }
}

/* --- Footer --- */
.site-footer {
  background: #222;
  color: #999;
  padding: 3rem 0 1.5rem;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-brand .logo {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: #fff;
}
.footer-brand p {
  color: #888;
  max-width: 300px;
}
.footer-nav h4,
.footer-areas h4,
.footer-contact h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-nav ul li,
.footer-areas ul li {
  margin-bottom: 0.35rem;
}
.footer-nav a {
  color: #888;
  transition: color 0.2s;
}
.footer-nav a:hover { color: #f97316; }
.footer-areas ul {
  columns: 2;
  column-gap: 1rem;
}
.footer-contact address p {
  margin-bottom: 0.25rem;
}
.footer-contact a {
  color: #888;
  transition: color 0.2s;
}
.footer-contact a:hover { color: #f97316; }

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  text-align: center;
  color: #666;
  font-size: 0.85rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 3rem;
  }
}

/* --- Lightbox --- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.lightbox.open {
  display: flex;
}
.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 2px;
}
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 2001;
  line-height: 1;
  padding: 0.5rem;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
  padding: 1rem;
  opacity: 0.7;
  transition: opacity 0.2s;
  z-index: 2001;
}
.lightbox-prev { left: 0.5rem; }
.lightbox-next { right: 0.5rem; }
.lightbox-prev:hover,
.lightbox-next:hover { opacity: 1; }

@media (max-width: 600px) {
  .lightbox-prev,
  .lightbox-next {
    font-size: 2rem;
    padding: 0.5rem;
  }
}

/* --- Scroll Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger gallery items */
.gallery-item.fade-in {
  transition-delay: calc(var(--i, 0) * 0.05s);
}

/* --- Utility --- */
.lead {
  font-size: 1.15rem;
}

/* Print styles */
@media print {
  .site-header, .lightbox, .scroll-indicator, .nav-toggle { display: none; }
  .hero { height: auto; min-height: 0; padding: 2rem 0; }
  .hero::before, .hero::after { display: none; }
  .hero { color: #2c2c2c; background: #fff; }
  .section { padding: 2rem 0; }
  body { background: #fff; }
}
