:root{
  --bg:#faf6f2;
  --subtext:#6b4f4f;
  --header:#d9a5b3;
  --nav:#f4c2d7;
  --button:#f4c2d7;

  --panel:#ffffff;
  --border:rgba(217,165,179,0.55);
  --shadow: 0 12px 30px rgba(0,0,0,0.10);
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--subtext);
  font-size: 16px;
  line-height: 1.55;
}

.wrap{
  width: min(1200px, 94vw);
  margin: 0 auto;
}

/* =======================
   HEADER
======================= */
.header{
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.header-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 16px 0;
  gap: 18px;
}

.logo{
  height: 54px;
  width: auto;
  display:block;
}

.nav{
  display:flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content:flex-end;
}

.nav a{
  text-decoration:none;
  color: var(--header);
  font-size: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  transition: 0.15s ease;
}

.nav a:hover{
  background: var(--nav);
  color: var(--subtext);
}

.nav a.active{
  background: var(--nav);
  color: var(--subtext);
}

/* =======================
   HERO
======================= */
.hero{
  position: relative;
  height: 460px;
  overflow: hidden;
  background: var(--bg);
}

.hero-img{
  position:absolute;
  inset:0;

  /* ✅ teacher wanted scissors/craft image in hero */
  background-image: url("images/craft-background.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.hero-overlay{
  position: absolute;
  left: 6%;
  top: 56%;
  transform: translateY(-50%);
  width: min(720px, 92vw);

  background: rgba(250,246,242,0.80);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 26px;
  box-shadow: var(--shadow);
}

.hero-overlay h1{
  margin: 0 0 12px;
  color: var(--header);
  font-size: 44px;
  font-weight: 800;
  letter-spacing: 0.2px;
  line-height: 1.15;
}

.hero-overlay p{
  margin: 0 0 18px;
  font-size: 18px;
  color: var(--subtext);
  max-width: 58ch;
}

.hero-buttons{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* =======================
   BUTTONS
======================= */
.btn{
  display:inline-block;
  text-decoration:none;
  font-size: 16px;
  padding: 12px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.15s ease;
}

.btn-soft,
.btn-pink{
  background: var(--button);
  color: var(--subtext);
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.btn-soft:hover,
.btn-pink:hover{
  filter: brightness(0.97);
  transform: translateY(-1px);
}

/* =======================
   ABOUT BLOCK
======================= */
.about-block{
  background: var(--panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-inner{
  text-align:center;
  padding: 46px 0 44px;
  width: min(900px, 92vw);
}

.about-inner h2{
  margin: 0 0 18px;
  color: var(--header);
  font-size: 30px;
  font-weight: 800;
}

.about-inner p{
  margin: 14px auto;
  font-size: 18px;
  line-height: 1.7;
  max-width: 75ch;
}

/* =======================
   PRODUCTS
======================= */
.products{
  padding: 54px 0 62px;
  background: var(--bg);
}

.section-title{
  text-align:center;
  margin: 0 0 30px;
  color: var(--header);
  font-size: 32px;
  font-weight: 800;
}

.product-grid{
  display:flex;
  justify-content:center;
  gap: 28px;
  flex-wrap: wrap;
}

.product-card{
  width: 240px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow:hidden;
  box-shadow: var(--shadow);
}

.product-img{
  height: 150px;
  background-size: cover;
  background-position: center;
}

.img-1{ background-image: url("images/wreath-sash.jpg"); }
.img-2{ background-image: url("images/ornaments.jpg"); }
.img-3{ background-image: url("images/monthly-milestones.jpg"); }
.img-4{ background-image: url("images/cutting-boards.jpg"); }

.product-label{
  background: var(--nav);
  text-align:center;
  padding: 14px 10px;
  font-size: 16px;
  color: var(--subtext);
  font-weight: 700;
}

/* =======================
   BANNER IMAGE (RESERVED PIC)
======================= */
.banner-img{
  height: 340px;                 /* slightly taller so more of photo shows */
  background-image: url("images/cina-event.jpg");
  background-size: cover;

  /* SHIFT IMAGE DOWN so reserved sign is visible */
  background-position: center 85%;

  position: relative;
}

.banner-img::after{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(250,246,242,0.10);  /* lighter overlay so sign is clear */
  pointer-events:none;
}

/* =======================
   CTA
======================= */
.cta{
  background: var(--panel);
  padding: 54px 0 42px;
  text-align:center;
}

.cta-inner{
  width: min(900px, 92vw);
}

.cta h2{
  margin: 0 0 10px;
  color: var(--header);
  font-size: 32px;
  font-weight: 800;
}

.cta p{
  margin: 0 0 20px;
  font-size: 18px;
  color: var(--subtext);
}

.cta-footer{
  margin-top: 26px;
  color: var(--header);
  font-size: 16px;
}

.cta-brand{
  font-weight: 800;
  margin-bottom: 6px;
}

.cta-sub{
  line-height: 1.2;
}

/* =======================
   FOOTER
======================= */
.footer{
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 16px 0;
  font-size: 14px;
  color: var(--subtext);
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
}

.foot-right{
  display:flex;
  gap: 16px;
  flex-wrap: wrap;
}

.foot-right a{
  text-decoration:none;
  color: var(--header);
  font-weight: 600;
}

.foot-right a:hover{
  text-decoration: underline;
}

/* =======================
   RESPONSIVE
======================= */
@media (max-width: 650px){
  .header-inner{
    flex-direction:column;
    align-items:flex-start;
  }

  .nav{
    justify-content:flex-start;
    gap: 10px;
  }

  .hero{
    height: 520px;
  }

  .hero-overlay{
    left: 50%;
    top: 62%;
    transform: translate(-50%, -50%);
    text-align:center;
    padding: 22px 18px;
  }

  .hero-overlay h1{
    font-size: 34px;
  }

  .hero-overlay p{
    font-size: 16px;
  }

  .hero-buttons{
    justify-content:center;
  }

  .product-card{
    width: min(320px, 92vw);
  }

  .product-img{
    height: 180px;
  }

  .section-title{
    font-size: 28px;
  }

  .about-inner h2,
  .cta h2{
    font-size: 28px;
  }

  .about-inner p,
  .cta p{
    font-size: 16px;
  }
}