/* ── FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=Jost:wght@300;400;500&family=Great+Vibes&family=Caveat:wght@400;600&display=swap');

/* ── RESET ── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ── COLOUR PALETTE ── */
:root {
  --cream:         #f8f2e4;
  --warm-white:    #fdfaf4;
  --parchment:     #ede3cc;
  --terracotta:    #b85c38;
  --terracotta-dk: #8e3e22;
  --bark:          #7c5139;
  --ink:           #231111;
  --muted:         #7a6258;
  --border:        rgba(124, 81, 57, 0.22);
  --border-strong: rgba(124, 81, 57, 0.45);
}

/* ── BASE ── */
html { scroll-behavior: smooth; }

body {
  font-family: "Jost", sans-serif;
  color: var(--ink);
  background-color: var(--cream);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}


/* ════════════════════════════════
   HEADER
════════════════════════════════ */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  background-color: var(--warm-white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  flex-wrap: nowrap;
}

.logo {
  font-family: "Great Vibes", cursive;
  font-size: 38px;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.logo a {
  color: inherit;          /* keeps your original logo color */
  text-decoration: none;   /* no underline */
  transition: opacity 0.3s ease, letter-spacing 0.3s ease;
}
/* Hover effect for logo */
.logo a:hover {
  opacity: 0.8;            /* soft fade */
  letter-spacing: 1px;     /* elegant spacing effect */
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
  flex-wrap: nowrap;
}

.main-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s ease;
  position: relative;
  white-space: nowrap;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--terracotta);
  transition: width 0.25s ease;
}

.main-nav a:hover { color: var(--terracotta); }
.main-nav a:hover::after { width: 100%; }


/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.site-footer {
  text-align: center;
  padding: 28px 40px;
  background: var(--warm-white);
  border-top: 3px solid var(--terracotta);
  border-bottom: 3px solid var(--terracotta);
  margin-top: auto;
}

.site-footer h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
}

.site-footer p {
  font-size: 15px;
  color: var(--muted);
  font-weight: 300;
}

.site-footer a {
  color: var(--terracotta);
  text-decoration: none;
}


/* ════════════════════════════════
   HERO (homepage)
════════════════════════════════ */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 24px 40px;
  background: var(--cream);
  flex: 1;
}

.hero > div {
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--border);
  flex: 1;
  max-width: 300px;
}

.hero-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: saturate(0.88);
  cursor: pointer;
}

.hero-img:hover {
  transform: scale(1.05);
  filter: saturate(1.2);
}


/* ════════════════════════════════
   INTRO (homepage)
════════════════════════════════ */
.intro {
  max-width: 640px;
  margin: 64px auto 60px;
  padding: 48px 40px;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--terracotta);
  border-radius: 4px;
  text-align: center;
}

.intro h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 16px;
}

.intro p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
}


/* ════════════════════════════════
   RECIPES PAGE — TITLE BANNER
════════════════════════════════ */
.recipes-title {
  text-align: center;
  padding: 56px 40px 40px;
  border-bottom: 1px solid var(--border);
  background: var(--warm-white);
}

.recipes-title h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 56px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 10px;
}

.recipes-subtitle {
  font-size: 16px;
  color: var(--muted);
  font-weight: 300;
  letter-spacing: 0.04em;
}


/* ════════════════════════════════
   CATEGORY TITLES
════════════════════════════════ */
.category-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 52px 60px 4px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}


/* ════════════════════════════════
   RECIPE GRID & CARDS
════════════════════════════════ */
.recipe-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding: 24px 60px 52px;
}

.recipe-card {
  width: 240px;
  text-decoration: none;
  color: var(--ink);
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.recipe-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: filter 0.4s ease;
  filter: saturate(0.9);
}

.recipe-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(35, 17, 17, 0.12);
  border-color: var(--terracotta);
}

.recipe-card:hover img {
  filter: saturate(1.1);
}

.recipe-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 400;
  padding: 14px 16px 18px;
  color: var(--ink);
  border-top: 1px solid var(--border);
  text-align: center;
}


/* ════════════════════════════════
   RECIPE PAGE — BANNER
════════════════════════════════ */
.recipe-banner {
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
 
  display: grid;
 
  
 
    padding: 2.5rem 2.5rem 1.75rem;
    gap: 1.25rem;
    display: grid;
    grid-template-columns: 1fr 260px; /* left text | right images */
    align-items: center;
}

.recipe-banner-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.recipe-banner-tag {
  font-family: "Jost", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.recipe-banner-title {
  font-family: "Cormorant Garamond", serif;
  
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  
   font-size: clamp(2.8rem, 7vw, 5rem);
    line-height: 0.9;
}

.recipe-banner-desc {
  font-family: "Jost", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  
  line-height: 1.75;
  
   padding-top: 0.1rem;
    max-width: 480px;
}

.recipe-banner-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 0.25rem;
}

.pill {
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--bark);
  background: var(--cream);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  padding: 4px 14px;
}



/* Polaroids inside banner */
.recipe-banner-photos {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    align-items: flex-end;
}
 
/* Polaroids ONLY in banner */
.banner-polaroid {
    width: 180px;
    height: 250px;
    padding: 12px 12px 48px;
    background: #fff;
    box-shadow:
        0 2px 6px rgba(35, 17, 17, 0.12),
        0 6px 20px rgba(35, 17, 17, 0.08);
    border: 1px solid rgba(200, 190, 180, 0.5);
    transform-origin: center;
}
 
/* Make the image fill the polaroid */
.banner-polaroid img {
    width: 150px;
    height: auto;
    object-fit: contain;
}
 
.banner-polaroid .polaroid-caption {
    font-family: "Caveat", cursive;
    font-size: 18px;
    line-height: 1;
    margin-top: 2px;
    color: #555;
    text-align: center;
    word-wrap: break-word;
}
 
/* Cute tilt variations */
.banner-polaroid:nth-child(1) {
    transform: rotate(-3deg);
}
 
.banner-polaroid:nth-child(2) {
    transform: rotate(2deg);
}
 
.banner-polaroid:nth-child(3) {
    transform: rotate(-2deg);
}
/* ════════════════════════════════
   RECIPE PAGE — LAYOUT
════════════════════════════════ */
.recipe-layout {
  max-width: 1160px;
  margin: 0 auto;
  padding: 3.5rem 3rem 5rem;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 5rem;
  align-items: start;
}


/* ════════════════════════════════
   RECIPE PAGE — DESCRIPTION
════════════════════════════════ */
.desc-block {
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.section-eyebrow {
  font-family: "Jost", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}

.desc-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--bark);
  line-height: 1.85;
}


/* ════════════════════════════════
   RECIPE PAGE — STEPS
════════════════════════════════ */
.steps-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 2.25rem;
}

.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: start;
}

.step-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--parchment);
  line-height: 1;
  text-align: right;
  padding-top: 2px;
  -webkit-text-stroke: 1px var(--terracotta);
}

.step-body h3 {
  font-family: "Jost", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.step-body p {
  font-family: "Jost", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #4a3525;
  line-height: 1.85;
}

.step-rule {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 0 2rem 64px;
}


/* ════════════════════════════════
   RECIPE PAGE — TIP BOX
════════════════════════════════ */
.tip {
  margin: 0.5rem 0 2.25rem 64px;
  padding: 1rem 1.25rem;
  background: rgba(184, 92, 56, 0.07);
  border-left: 2px solid var(--terracotta);
  border-radius: 0 4px 4px 0;
}

.tip-label {
  font-family: "Jost", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.35rem;
}

.tip p {
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--bark);
  line-height: 1.75;
}


/* ════════════════════════════════
   RECIPE PAGE — SIDEBAR
════════════════════════════════ */
.sidebar {
  position: sticky;
  top: 80px;
}




/* ════════════════════════════════
   RECIPE PAGE — INGREDIENTS CARD
════════════════════════════════ */
.ing-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--terracotta);
  border-radius: 4px;
  padding: 1.75rem;
}

.ing-card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.ing-group {
  margin-bottom: 1.25rem;
}

.ing-group-name {
  font-family: "Jost", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.5rem;
}

.ing-list {
  list-style: none;
}

.ing-list li {
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #4a3525;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  gap: 8px;
  line-height: 1.5;
}

.ing-list li:last-child { border-bottom: none; }

.ing-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
  margin-top: 5px;
}


/* ════════════════════════════════
   RESPONSIVE — RECIPE PAGES
════════════════════════════════ */
@media (max-width: 860px) {
  .recipe-banner {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.5rem 2rem;
  }

  .recipe-banner-photo { display: none; }

  .recipe-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 2rem 1.5rem 4rem;
  }

  .breadcrumb { padding: 12px 1.5rem; }

  .sidebar { position: static; }
}

@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    gap: 12px;
    padding: 16px 20px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 16px 20px;
    gap: 12px;
  }

  .recipe-grid {
    padding: 16px 20px 40px;
  }

  .category-title {
    margin: 32px 20px 4px;
  }

  .intro,
  .site-footer {
    padding: 32px 20px;
  }
}

/* ════════════════════════════════
   PAGE TITLE BANNER (about / contact)
════════════════════════════════ */
.page-title-banner {
  text-align: center;
  padding: 52px 40px 40px;
  border-bottom: 1px solid var(--border);
  background: var(--warm-white);
}

.page-title-banner h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 56px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 10px;
}

.page-title-banner p {
  font-size: 15px;
  color: var(--muted);
  font-weight: 300;
  letter-spacing: 0.04em;
}


/* ════════════════════════════════
   ABOUT PAGE — LAYOUT
════════════════════════════════ */
.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 320px; /* text | photos */
  gap: 0;
  max-width: 1100px;
  margin: 60px auto 80px;
  padding: 0 40px;
  align-items: start;
}


/* ── POLAROID COLUMN ── */
.polaroid-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 20px 30px 20px 0;
  position: sticky;
  top: 100px;
}

.about-polaroid {
  width: 210px;
  padding: 14px 14px 52px;
  background: #fff;
  box-shadow:
    0 3px 8px rgba(35, 17, 17, 0.13),
    0 8px 24px rgba(35, 17, 17, 0.09);
  border: 1px solid rgba(200, 190, 180, 0.5);
  transform-origin: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about-polaroid:hover {
  box-shadow:
    0 6px 18px rgba(35, 17, 17, 0.18),
    0 16px 40px rgba(35, 17, 17, 0.13);
  z-index: 10;
}

.about-polaroid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  filter: saturate(0.88);
  transition: filter 0.3s ease;
}

.about-polaroid:hover img {
  filter: saturate(1.1);
}

.about-polaroid .polaroid-caption {
  font-family: "Caveat", cursive;
  font-size: 19px;
  line-height: 1.2;
  margin-top: 10px;
  color: #666;
  text-align: center;
}

/* Tilt variations */
.about-polaroid:nth-child(1) { transform: rotate(-4deg); }
.about-polaroid:nth-child(1):hover { transform: rotate(-1deg) scale(1.04); }

.about-polaroid:nth-child(2) { transform: rotate(3deg); }
.about-polaroid:nth-child(2):hover { transform: rotate(1deg) scale(1.04); }

.about-polaroid:nth-child(3) { transform: rotate(-2.5deg); }
.about-polaroid:nth-child(3):hover { transform: rotate(-0.5deg) scale(1.04); }

.about-polaroid:nth-child(4) { transform: rotate(3.5deg); }
.about-polaroid:nth-child(4):hover { transform: rotate(1deg) scale(1.04); }

.about-polaroid:nth-child(5) { transform: rotate(-5deg); }
.about-polaroid:nth-child(5):hover { transform: rotate(1deg) scale(1.04); }

/* ── TEXT COLUMN ── */
.about-content {
  padding: 10px 0 10px 48px;
  border-left: 1px solid var(--border);
}

.about-eyebrow {
  font-family: "Jost", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 14px;
}

.about-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  line-height: 0.95;
  margin-bottom: 32px;
}

.about-divider {
  width: 48px;
  height: 2px;
  background: var(--terracotta);
  margin-bottom: 36px;
  border: none;
}

.about-text {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #4a3525;
  line-height: 1.9;
  margin-bottom: 22px;
}

.about-text:last-of-type {
  margin-bottom: 0;
}

.about-text.intro-para {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--bark);
  line-height: 1.75;
}

/* ── SIGN-OFF ── */
.about-signoff {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.about-signoff p {
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 10px;
}

.about-signoff-name {
  font-family: "Great Vibes", cursive;
  font-size: 44px;
  color: var(--ink);
  display: block;
}


/* ════════════════════════════════
   RESPONSIVE — ABOUT PAGE
════════════════════════════════ */
@media (max-width: 860px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    padding: 0 24px;
    margin: 40px auto 60px;
  }

  .polaroid-column {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    position: static;
    padding: 0 0 32px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 32px;
  }

  .about-polaroid {
    width: 160px;
  }

  .about-polaroid img {
    height: 150px;
  }

  .about-content {
    padding: 0;
    border-left: none;
  }
}
/* CONTACT PAGE */
.contact-wrapper {
  max-width: 1100px;
  margin: 60px auto 80px;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-eyebrow {
  font-family: "Jost", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 14px;
}

.contact-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 24px;
}

.contact-text {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #4a3525;
  line-height: 1.9;
  margin-bottom: 18px;
}

.contact-details p {
  font-family: "Jost", sans-serif;
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 8px;
}
/* Contact links (email + LinkedIn) */
.contact-link {
  color: #5a3e2b;          /* warm brown */
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.contact-link:hover {
  color: #2e1a12;              /* MUCH darker brown so hover is obvious */
  text-decoration: underline;  /* keeps underline */
  letter-spacing: 0.5px;       /* tiny spacing change so hover is visible */
}


/* FORM */
.contact-form {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--terracotta);
  border-radius: 4px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form label {
  font-family: "Jost", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: "Jost", sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: var(--cream);
}

.contact-form button {
  margin-top: 10px;
  padding: 12px 18px;
  background: var(--terracotta);
  color: white;
  border: none;
  border-radius: 4px;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: var(--terracotta-dk);
}

/* RESPONSIVE */
@media (max-width: 860px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px;
  }
}
