/* ===== WOESTYNKOMBUIS — Modern Refresh ===== */

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

:root {
  --coral: #b54a3a;
  --coral-light: #c96b5a;
  --coral-deep: #8c3a2d;
  --sand: #f3ece4;
  --sand-dark: #e0d3c4;
  --charcoal: #2b2b2b;
  --grey: #5e5e5e;
  --light-grey: #faf8f6;
  --white: #ffffff;
  --accent: #d4a574;
  --accent-light: #e8c9a4;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
  --max-width: 1140px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--coral); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--coral-light); }

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

/* --- Navigation --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 16px 0;
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links { display: flex; gap: 32px; list-style: none; }

.nav-links a {
  color: var(--charcoal);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 0;
  position: relative;
}

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

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-links a:hover,
.nav-links a.active { color: var(--coral); }

/* Hamburger (mobile) */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--charcoal); margin: 5px 0; transition: var(--transition); }

/* --- Hero --- */
.hero {
  background: linear-gradient(135deg, var(--sand) 0%, var(--sand-dark) 100%);
  padding: 80px 0 90px;
  text-align: center;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 4.5rem);
  color: var(--coral);
  letter-spacing: clamp(2px, 0.4vw, 6px);
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 700;
  word-break: break-word;
  overflow-wrap: break-word;
}

.hero p {
  font-size: 1.15rem;
  color: var(--grey);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

.hero .subtitle {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 8px;
}

/* --- Section Styles --- */
.section { padding: 80px 0; }
.section--sand { background: var(--sand); }
.section--light { background: var(--light-grey); }

.section-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 12px;
  font-weight: 700;
}

.section-title span { color: var(--coral); }

.section-subtitle {
  text-align: center;
  color: var(--grey);
  margin-bottom: 48px;
  font-size: 1rem;
}

/* --- Three-column about --- */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.about-card { text-align: center; }

.about-card img {
  width: 100%;
  max-width: 340px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  margin: 0 auto 24px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transition: transform var(--transition), box-shadow var(--transition);
}

.about-card img:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.about-card p {
  font-size: 0.95rem;
  color: var(--grey);
  line-height: 1.75;
  text-align: justify;
}

/* --- Parallax Banner --- */
.parallax-banner {
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
              url('images/web/banner.jpg') center/cover no-repeat;
  background-attachment: fixed;
  padding: 100px 0;
  text-align: center;
  color: var(--white);
}

.parallax-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 400;
}

/* --- Recipe Cards --- */
.recipe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.recipe-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.recipe-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.recipe-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.recipe-card-body {
  padding: 24px;
}

.recipe-card-category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--coral);
  background: rgba(200,85,61,0.08);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.recipe-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.recipe-card-body p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.7;
}

.recipe-card-recipe {
  margin-top: 16px;
}

.recipe-card-recipe img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--sand-dark);
}

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

.testimonial {
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  position: relative;
}

.testimonial::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--coral);
  opacity: 0.2;
  position: absolute;
  top: 8px;
  left: 20px;
  line-height: 1;
}

.testimonial p {
  font-size: 0.95rem;
  color: var(--grey);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--charcoal);
}

/* --- Contact --- */
.contact-info {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 24px;
  font-size: 1.05rem;
  color: var(--charcoal);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--coral);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 12px;
  transition: background var(--transition), transform var(--transition);
}

.whatsapp-btn:hover {
  background: #1fb855;
  color: white;
  transform: translateY(-2px);
}

.whatsapp-btn svg { width: 22px; height: 22px; fill: white; }

/* --- CTA / Order Banner --- */
.cta-section {
  background: linear-gradient(135deg, var(--coral-deep) 0%, var(--coral) 50%, var(--coral-light) 100%);
  color: var(--white);
  text-align: center;
  padding: 60px 0;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.cta-section p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 28px;
}

.cta-btn {
  display: inline-block;
  background: var(--white);
  color: var(--coral);
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: transform var(--transition), box-shadow var(--transition);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  color: var(--coral);
}

/* --- Footer --- */
.footer {
  background: #1e1e1e;
  color: rgba(255,255,255,0.55);
  padding: 40px 0;
  text-align: center;
  font-size: 0.85rem;
}

.footer a { color: rgba(255,255,255,0.8); }
.footer a:hover { color: var(--white); }

/* --- Responsive: Tablet --- */
@media (max-width: 768px) {
  /* Navigation */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }

  /* Hero */
  .hero { padding: 40px 0 50px; }
  .hero h1 { font-size: 1.8rem; letter-spacing: 2px; }
  .hero .subtitle { font-size: 1.1rem; }
  .hero p { font-size: 1rem; }

  /* Sections */
  .section { padding: 50px 0; }
  .section-title { font-size: 1.5rem; }
  .container { padding: 0 20px; }

  /* About grid — stack vertically */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-card img { width: 100%; max-width: 320px; height: auto; }
  .about-card p { text-align: left; font-size: 0.95rem; }
  .about-card h3 { font-size: 1.2rem; }

  /* Recipe grid */
  .recipe-grid { grid-template-columns: 1fr; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial { padding: 24px; }

  /* Parallax */
  .parallax-banner { background-attachment: scroll; padding: 50px 0; }
  .parallax-banner h2 { font-size: 1.3rem; letter-spacing: 2px; padding: 0 20px; }

  /* CTA */
  .cta-section { padding: 48px 0; }
  .cta-section h2 { font-size: 1.4rem; }
  .cta-section p { font-size: 1rem; }
  .cta-btn { padding: 12px 28px; font-size: 0.85rem; }

  /* Contact */
  .contact-item { flex-direction: column; text-align: center; gap: 8px; font-size: 0.95rem; }
}

/* --- Responsive: Mobile --- */
@media (max-width: 480px) {
  /* Navigation */
  .nav { padding: 12px 0; }
  .nav-logo { font-size: 1.05rem; letter-spacing: 1.5px; }

  /* Hero */
  .hero { padding: 28px 0 36px; }
  .hero h1 { font-size: 1.5rem; letter-spacing: 1.5px; }
  .hero .subtitle { font-size: 0.95rem; }

  /* Sections */
  .section { padding: 40px 0; }
  .section-title { font-size: 1.3rem; }
  .section-subtitle { font-size: 0.9rem; margin-bottom: 32px; }
  .container { padding: 0 16px; }

  /* About cards */
  .about-grid { gap: 32px; }
  .about-card img { max-width: 280px; }
  .about-card h3 { font-size: 1.1rem; }
  .about-card p { font-size: 0.9rem; line-height: 1.7; }

  /* Testimonials */
  .testimonial p { font-size: 0.9rem; }
  .testimonial cite { font-size: 0.8rem; }

  /* CTA */
  .cta-section { padding: 40px 0; }
  .cta-section h2 { font-size: 1.25rem; }

  /* Footer */
  .footer { padding: 28px 0; font-size: 0.8rem; }
}
