/* =========================================================
   printablesclub.css
   Prints of Joy / Printables Club
   ========================================================= */

/* ---------- CSS Variables ---------- */
:root{
  --blush:#F7E6EA;
  --paper:#FFFDFB;
  --tint:#FFF3F5;
  --bar:#F3D2D9;
  --accent:#E47C87;
  --text:#3d2b30;
  --muted:#6f5560;
  --shadow:0 10px 28px rgba(0,0,0,.06);
  --pill:999px;
  --max:1080px;
}

/* ---------- Reset / Base ---------- */
*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family:Nunito,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--blush);
  color:var(--text);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

a{color:var(--accent);text-decoration:none}
a:hover,a:focus{text-decoration:underline}

/* ---------- Header / Logo ---------- */
header{
  padding:26px 14px 14px;
  text-align:center;
}

.logo{
  display:inline-block;
  background:none;
  padding:0;
  border-radius:0;
  box-shadow:none;
  cursor:default;
}

/* Large, centered logo */
header img{
  width:min(420px, 90vw);  /* LARGE but responsive */
  height:auto;
  display:block;
  margin:0 auto;
}


/* ---------- Shared Width Wrapper ---------- */
.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:0 14px;
}

/* ---------- Navigation (Pills) ---------- */
nav{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  background:var(--bar);
  padding:10px 12px;
  border-radius:var(--pill);
  box-shadow:var(--shadow);
  margin:10px auto 14px;
}

.pill{
  display:inline-block;
  padding:10px 14px;
  border-radius:var(--pill);
  background:var(--tint);
  color:var(--text);
  font-family:Quicksand,Nunito,sans-serif;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.85rem;
  border:1px solid rgba(228,124,135,.22);
  text-decoration:none;
}

.pill:hover,
.pill:focus{
  background:var(--accent);
  color:#fff;
  text-decoration:none;
}

/* ---------- Main Content ---------- */
main{
  padding:0 14px 28px;
}

/* ---------- Panels ---------- */
.panel{
  background:var(--paper);
  border-radius:26px;
  box-shadow:var(--shadow);
  padding:22px;
  margin:14px 0;
}

/* ---------- Headings ---------- */
h1{
  margin:0 0 8px;
  font-family:Quicksand,Nunito,sans-serif;
  color:var(--accent);
  font-size:1.55rem;
  text-align:center;
  letter-spacing:.01em;
}

.lede{
  color:var(--muted);
  margin:0 auto 12px;
  text-align:center;
  max-width:70ch;
}

/* =========================================================
   GLOBAL SAMPLE IMAGES (KEY PART YOU ASKED FOR)
   ========================================================= */

/* Any image inside <main> */
main img{
  max-width:100%;
  height:auto;                 /* keeps proportions */
  border-radius:22px;          /* rounded edges */
  box-shadow:var(--shadow);
  display:block;
}

/* Automatically center standalone images */
main img:not([class]){
  margin:14px auto 18px;
}

/* Preferred sample wrapper */
.sample{
  display:flex;
  justify-content:center;
  margin:14px 0 18px;
}

.sample img{
  max-width:980px;             /* large but responsive */
}

/* ---------- Lists ---------- */
.contains-title{
  margin:10px 0 8px;
  font-family:Quicksand,Nunito,sans-serif;
  font-weight:700;
  color:var(--text);
}

.kitlist{
  margin:0;
  padding-left:1.2rem;
  color:var(--text);
}

.kitlist li{
  margin:.28rem 0;
}

/* ---------- Notes / Paragraphs ---------- */
.note{
  margin:14px 0 0;
  color:var(--muted);
}

/* ---------- Call To Action Buttons ---------- */
.cta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:center;
  margin-top:16px;
}

.btn{
  display:inline-block;
  padding:12px 18px;
  border-radius:var(--pill);
  font-family:Quicksand,Nunito,sans-serif;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-size:.9rem;
  box-shadow:var(--shadow);
  text-decoration:none;
  border:0;
}

.btn.primary{
  background:var(--accent);
  color:#fff;
}

.btn.secondary{
  background:var(--tint);
  color:var(--text);
  border:1px solid rgba(228,124,135,.35);
}

.btn:hover,
.btn:focus{
  filter:brightness(1.03);
  text-decoration:none;
}

/* ---------- Footer ---------- */
footer{
  max-width:var(--max);
  margin:0 auto 24px;
  padding:0 14px;
}

.foot{
  background:var(--paper);
  border-radius:26px;
  box-shadow:var(--shadow);
  padding:16px 18px;
  text-align:center;
}

.foot nav{
  background:transparent;
  box-shadow:none;
  padding:0;
  margin:0 0 10px;
  gap:10px;
}

.foot .pill{
  font-size:.75rem;
}

.copyright{
  margin:0;
  font-size:.85rem;
  color:var(--muted);
}

/* ---------- Responsive ---------- */
@media (max-width:520px){
  .panel{padding:18px}
  h1{font-size:1.35rem}
}
/* ---------- Feature Info Card (High Impact) ---------- */
.info-feature{
  position:relative;
  background:linear-gradient(180deg,#fffdfb 0%,#fff1f5 100%);
  border-radius:32px;
  padding:0;
  margin:32px 0;
  box-shadow:0 18px 40px rgba(0,0,0,.08);
  overflow:hidden;
}

/* Ribbon header */
.info-header{
  background:linear-gradient(90deg,var(--accent),#f19aa4);
  color:#fff;
  font-family:Quicksand,Nunito,sans-serif;
  font-weight:700;
  text-align:center;
  padding:16px 20px;
  font-size:1.35rem;
  letter-spacing:.02em;
}

/* Body */
.info-body{
  padding:26px 30px 30px;
  text-align:center;
}

/* Highlight pill */
.info-highlight{
  display:inline-block;
  background:#fff;
  color:var(--accent);
  font-family:Quicksand,Nunito,sans-serif;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.1em;
  font-size:.75rem;
  padding:10px 18px;
  border-radius:999px;
  box-shadow:0 8px 18px rgba(0,0,0,.08);
  margin-bottom:18px;
}

/* Text */
.info-feature p{
  max-width:none;     /* allow full width so text stays on one line */
  margin:4px auto;    /* less vertical space */
  color:var(--text);
  font-size:1.05rem;
}


/* Visual step line */
.info-step{
  margin:18px auto 10px;
  font-family:Quicksand,Nunito,sans-serif;
  font-weight:700;
  color:var(--accent);
  letter-spacing:.03em;
}

/* Software box */
.info-tech{
  margin-top:22px;
  background:rgba(228,124,135,.08);
  padding:18px 22px;
  border-radius:20px;
  font-size:.95rem;
  color:var(--muted);
}
.info-title-soft{
  text-align:center;
  font-family:Quicksand,Nunito,sans-serif;
  font-size:1.35rem;
  color:var(--accent);
  margin:0 0 6px;              /* less space */
  text-decoration:underline;  /* underline title */
  text-underline-offset:6px;
}
/* Photo samples: rounded, proportional, responsive */
.pc-sample{
  max-width:100%;
  height:auto;
  border-radius:22px;
  box-shadow:var(--shadow);
  display:inline-block;
  vertical-align:top;
}

/* If many samples in a container, auto-grid them */
.pc-gallery{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:14px;
  justify-items:center;
  align-items:start;
  margin:14px 0;
}
.pc-gallery .pc-sample{
  width:100%;
  max-width:420px;
}
.sample{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:18px;
}
.sample img{
  width:100%;
  height:auto;
  object-fit:contain;
  border-radius:18px;
}

