:root {
    --black: #03010aea;
    --warm-white: #d2e0e0fd;
    --gold: #bebc33e8;
    --brown: #5c3d2e;
    --brown-dark: #3b2314;
    --rose: #c01c10;
    --sage: #7a9e7e;
    --ink: #f7fbfce1;
    --border: #bb1010bd;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    background-color: var(--black);
    color: var(--ink);
    font-family: 'EB Garamond', serif;
    font-size: 17px;
    line-height: 1.85;
  }

  nav{
    text-align: center;
    display: flex;
    flex-direction: column;
  }
  nav ul  {
    text-decoration: none;
    display: flex;
   justify-content: center;
    text-align: center;    
  }
  nav ul li{
    padding: 20px;
    list-style: none;
    text-decoration: none;
  }
  nav ul li a{
    text-decoration: none;
  }

  /* ─── COVER ─────────────────────────────────────── */
  .cover {
    min-height: 100vh;
    background: var(--brown-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
     overflow: hidden;
    padding: 60px 40px;
  }

  .cover::before {
    content: '';
    position: absolute;
    inset: 20px;
    border: 1.5px solid rgba(240, 32, 160, 0.534);
    pointer-events: none;
  }

  .cover::after {
    content: '';
    position: absolute;
    inset: 28px;
    border: 0.5px solid rgba(212, 71, 158, 0.507);
    pointer-events: none;
  }

  .cover-ornament {
    font-size: 36px;
    color: var(--gold);
    opacity: 0.7;
    letter-spacing: 12px;
    margin-bottom: 24px;
    animation: fadeIn 1.4s ease;
  }

  .cover h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(52px, 8vw, 96px);
    font-weight: 700;
    color: var(--black);
    letter-spacing: 4px;
    line-height: 1.05;
    animation: fadeIn 1.6s ease;
  }

  .cover h1 em {
    color: var(--gold);
    font-style: italic;
    display: block;
  }

  .cover-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 300;
    color: rgba(253, 246, 238, 0.733);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-top: 20px;
    animation: fadeIn 1.8s ease;
  }

  .cover-divider {
    width: 120px;
    height: 1px;
    background: var(--gold);
    margin: 36px auto;
    opacity: 0.6;
    animation: expandWidth 1.5s ease;
  }

  .cover-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 19px;
    color: rgba(253,246,238,0.5);
    animation: fadeIn 2s ease;
  }

  @keyframes fadeIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
  @keyframes expandWidth { from { width: 0; } to { width: 120px; } }

  /* ─── SHARED LAYOUT ──────────────────────────────── */
  .page {
    max-width: 860px;
    margin: 0 auto;
    padding: 80px 48px;
  }

  .section-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
  }

  .page-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 54px);
    font-weight: 600;
    color: var(--brown-dark);
    line-height: 1.15;
    margin-bottom: 36px;
  }

  .ornament-line {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: rgb(15, 4, 4);
    margin: 40px 0;
  }

  .ornament-line::before,
  .ornament-line::after {
    content: '';
    flex: 1;
    background-color: rgb(10, 2, 2);
    height: 1px;
    background: var(--border);
  }

  .ornament-line span {
    color: var(--gold);
    font-size: 18px;
  }

  /* ─── ABOUT ──────────────────────────────────────── */
  #about {
    background: var(--warm-white);
    border-top: 3px solid var(--gold);
  }

  #about .page p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 300;
    color: #4a3020;
    line-height: 2;
    margin-bottom: 22px;
  }

  #about .page p:first-of-type::first-letter {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 700;
    color: var(--gold);
    float: left;
    line-height: 0.75;
    margin-right: 12px;
    margin-top: 12px;
  }

  .signature {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 26px;
    color: var(--brown);
    margin-top: 32px;
  }

  /* ─── TABLE OF CONTENTS ───────────────────────────── */
  #toc {
    background: var(--black);
    border-top: 1px solid var(--border);
  }

  .toc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 8px;
  }

  .toc-item {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 11px 16px;
    border-bottom: 1px solid rgba(199, 176, 131, 0.45);
    text-decoration: none;
    color: var(--ink);
    transition: background 0.2s, color 0.2s;
  }

  .toc-item:hover {
    background: rgba(117, 88, 44, 0.281);
    color: var(--brown);
  }

  .toc-num {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    color: var(--gold);
    font-weight: 600;
    min-width: 28px;
    flex-shrink: 0;
  }

  .toc-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 400;
    flex: 1;
  }

  .toc-dots {
    flex: 1;
    border-bottom: 1px dotted var(--border);
    margin-bottom: 4px;
    min-width: 20px;
  }

  /* ─── RECIPES ────────────────────────────────────── */
  #recipes {
    background: var(--warm-white);
    border-top: 1px solid var(--border);
  }

  .recipe {
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
    scroll-margin-top: 32px;
  }

  .recipe:last-child { border-bottom: none; }

  .recipe-header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 28px;
  }

  .recipe-num {
    font-family: 'Playfair Display', serif;
    font-size: 68px;
    font-weight: 700;
    color: rgba(201,168,76,0.2);
    line-height: 1;
    flex-shrink: 0;
    margin-top: -8px;
  }

  .recipe-title-block h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 600;
    color: var(--brown-dark);
    line-height: 1.2;
  }

  .recipe-title-block .recipe-origin {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 16px;
    color: var(--gold);
    margin-top: 6px;
    letter-spacing: 1px;
  }

  .recipe-meta {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    margin: 18px 0 26px 0;
    padding: 16px 20px;
    background: rgba(201,168,76,0.06);
    border-left: 3px solid var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: var(--brown);
  }

  .recipe-meta span strong {
    color: var(--brown-dark);
    font-weight: 600;
  }

  .recipe h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--brown);
    margin: 28px 0 10px 0;
    letter-spacing: 0.5px;
  }

  .recipe p {
    font-family: 'EB Garamond', serif;
    font-size: 17px;
    color: #3d2b1a;
    line-height: 1.9;
    margin-bottom: 14px;
  }

  .ingredients-para {
    padding: 20px 24px;
    background: rgba(253,246,238,0.9);
    border: 1px solid var(--border);
    border-radius: 2px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    line-height: 2;
    color: #4a3020;
    margin-bottom: 20px;
  }

  .back-to-top {
    display: inline-block;
    margin-top: 28px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
  }

  .back-to-top:hover { border-color: var(--gold); }

  /* ─── FOOTER ─────────────────────────────────────── */
  footer {
    background: var(--brown-dark);
    color: rgba(253,246,238,0.45);
    text-align: center;
    padding: 48px 24px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    letter-spacing: 2px;
  }

  footer .footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 10px;
  }

  @media (max-width: 640px) {
    .page { padding: 56px 24px; }
    .toc-grid { grid-template-columns: 1fr; }
    .recipe-header { flex-direction: column; gap: 8px; }
    .recipe-num { font-size: 44px; }
  }
*
/*image-raduis*/
.curved-img {
  border-radius: 15px;
}  