/* ----------- GLOBAL VARIABLES ----------- */
:root{
  --flag-blue: #0038A8;
  --flag-red:  #CE1126;
  --flag-yellow: #FCD116;
  --flag-white: #FFFFFF;

  --muted: #F6F7FB;
  --card-bg: #FFFFFF;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(2,6,23,0.08);
  --text: #111213;
}

/* ----------- BASE LAYOUT ----------- */


body{
  margin:0;
  font-family:"Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
  color:var(--text);
  padding:28px;
  -webkit-font-smoothing:antialiased;
  overflow-x: hidden;
  overflow-y: auto;
}

/* Scrollbar */
body::-webkit-scrollbar {
  width: 12px;
}
body::-webkit-scrollbar-track {
  background: #f0f0f0;
}
body::-webkit-scrollbar-thumb {
  background-color: var(--flag-red);
  border-radius: 6px;
  border: 3px solid #f0f0f0;
}

/* ----------- HEADER ----------- */

header {
  display: flex;
  align-items: center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:26px;
}

/* ----------- ARTICLE STYLE ----------- */

.article-hero {
  padding: 20px 0;
  max-width: 800px;
  margin: 0 auto;
}

.article-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 38px;
  color: var(--flag-blue);
  margin-bottom: 14px;
}

.article-desc {
  line-height: 1.7;
  font-size: 17px;
  margin-bottom: 24px;
}

.hero-img {
  width: 100%;
  border-radius: 12px;
  margin-top: 18px;
  box-shadow: var(--shadow);
}

.tag {
  display:inline-block;
  background:var(--flag-yellow);
  color:var(--flag-blue);
  padding:6px 10px;
  border-radius:999px;
  font-weight:800;
  font-size:13px;
  margin-bottom:12px;
}

/* SECTION */
.article-section {
  max-width: 800px;
  margin: 40px auto;
}

.article-section h2 {
  font-size: 26px;
  font-family: "Playfair Display", serif;
  margin-bottom: 12px;
  color: var(--flag-red);
}

.ingredients-list li,
.procedure-list li {
  line-height: 1.7;
  font-size: 16px;
  margin-bottom: 10px;
}

.procedure-list li strong {
  color: var(--flag-blue);
}

/* ----------- YOUTUBE LINK (NEW) ----------- */

.yt-link {
  display: block;
  width: 100%;
  max-width: 480px;
  margin: 25px auto;
  padding: 18px 20px;
  background: var(--flag-blue);
  color: white;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: 0.2s ease;
}

.yt-link:hover {
  background: var(--flag-red);
}

/* ----------- FOOTER ----------- */
footer{
  margin-top:26px;
  padding-top:18px;
  border-top:1px dashed rgba(0,0,0,0.06);
  color:#6b6f76;
  font-size:14px;
}

/* ----------- MOBILE ----------- */

.ham-menu, .mobile-nav { display: none; }

@media (max-width: 360px) {

  body, html {
    height: 100%;
    margin: 0;
    padding: 10px 15px 0 5px;
  }

  .main-nav { display: none; }

  .ham-menu {
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    width:32px;
    height:24px;
    cursor:pointer;
  }

  .ham-menu span {
    width:100%;
    height:4px;
    background:var(--flag-blue);
    border-radius:3px;
  }

  .mobile-nav {
    position: fixed;
    right: -100%;
    top: 0;
    width: 50%;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding-top: 90px;
    padding-left: 24px;
    gap: 22px;
    transition: .35s;
  }

  .mobile-nav.active {
    right: 0;
  }

  .menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    pointer-events: none;
    transition: .3s;
  }

  .menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }

  main { padding: auto; }
  .yt-link {
  display: block;
  width: 260px;
  max-width: 260px;
  margin: 30px auto;
  padding: 10px 20px;
  background: var(--flag-blue);
  color: white;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: 0.2s ease;
}

.yt-link:hover {
  background: var(--flag-red);
}
}

