:root{--brand:#4CBB17;--ink:#0e141b;--muted:#667085;--bg:#f6f7f9;--card:#fff}*{box-sizing:border-box}body{margin:0;font:16px/1.55 'Inter', sans-serif;color:var(--ink);background:var(--bg)}.container{max-width:1100px;margin:0 auto;padding:1.25rem}.nav{display:flex;gap:12px;align-items:center;justify-content:space-between}.site-header{position:sticky;top:0;background:#fff;border-bottom:1px solid #e7e9ee}.gallery{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:12px}.card{background:#fff;border:1px solid #e7e9ee;border-radius:12px;padding:1rem}.progress{display:none;height:10px;background:#eef0f4;border:1px solid #e2e6ef;border-radius:10px;overflow:hidden}.progress .bar{height:100%;width:0;background:var(--brand);transition:width .2s}.area-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:12px}.area-grid li{list-style:none;background:#fff;border:1px solid #e7e9ee;border-radius:10px;padding:.6rem .8rem}
/* GOAT THEME */
:root{
  --brand:#4CBB17; --ink:#0e141b; --muted:#667085; --bg:#f6f7f9; --card:#ffffff;
  --radius:14px; --border:#e7e9ee; --shadow:0 4px 14px rgba(0,0,0,.06);
}
.page-hero{background:linear-gradient(180deg, rgba(76,187,23,.08), transparent 70%), var(--bg); padding:42px 0 24px; border-bottom:1px solid var(--border)}
.page-hero h1{margin:0 0 8px; font-size:clamp(28px,3vw,40px); color:var(--ink)}
.page-hero p{margin:0; color:var(--muted)}
.section{padding:24px 0}
.form-grid{display:grid;grid-template-columns:1fr;gap:12px}
@media(min-width:720px){.form-grid{grid-template-columns:1fr 1fr}}
.form-card{background:var(--card); border:1px solid var(--border); border-radius:var(--radius); padding:16px; box-shadow:var(--shadow)}
label.form-label{font-weight:600; color:var(--ink)}
input.form-input, textarea.form-textarea{
  width:100%; border:1px solid var(--border); background:#fff; color:var(--ink);
  border-radius:10px; padding:.75rem .9rem; outline:none;
}
input.form-input:focus, textarea.form-textarea:focus{border-color:var(--brand)}
.btn-brand{display:inline-block; background:var(--brand); color:#fff; text-decoration:none; padding:.8rem 1rem; border-radius:10px; font-weight:700}
.btn-brand:hover{filter:brightness(.96)}
.helper{color:var(--muted); font-size:.9rem}
.notice{background:#f1f9f1; border:1px solid #d9efd9; color:#1b6b2d; padding:.75rem; border-radius:10px}
.progress{display:none; height:10px; background:var(--border); border:1px solid var(--border); border-radius:var(--radius); overflow:hidden}
.progress .bar{height:100%; width:0; background:var(--brand); transition:width .2s}
.upload{border:1px dashed var(--border); border-radius:var(--radius); background:var(--card); padding:12px; transition:background .2s, border-color .2s}
.upload.drag{background:rgba(76,187,23,0.15); border-color:var(--brand)}
.thumb-row{display:flex; gap:8px; flex-wrap:wrap; margin-top:8px}
.thumb{width:72px; height:72px; border-radius:var(--radius); border:1px solid var(--border); background:var(--bg); overflow:hidden; display:grid; place-items:center}
.thumb img{width:100%; height:100%; object-fit:cover}
  
/* GOAT THEME */
:root{
  /* Fancy dark palette */
  --brand:#4CBB17;
  --accent:#ff7e5f;
  --bg:#0d1b2a;
  --card:#16223a;
  --ink:#e8ecf4;
  --muted:#8fa3bf;
  --border:#23304a;
  --radius:12px;
  --shadow:0 6px 20px rgba(0,0,0,.4);
}
*{box-sizing:border-box}
body{margin:0;font:16px/1.55 'Inter', sans-serif;color:var(--ink);background:var(--bg)}
body{margin:0;font-family:'Inter', sans-serif;font-size:16px;line-height:1.55;color:var(--ink);background:var(--bg)}
.container{max-width:1100px;margin:0 auto;padding:1.25rem}
.site-header{position:sticky;top:0;background:#fff;border-bottom:1px solid var(--border);z-index:40}
/* Fancy header: semi-transparent dark bar */
.site-header{
  position:sticky;
  top:0;
  background:rgba(13,27,42,0.7);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
  z-index:40;
}
.nav{display:flex;gap:12px;align-items:center;justify-content:space-between}
.nav a{
  text-decoration:none;
  color:var(--ink);
  margin-right:1rem;
  font-weight:500;
  transition:color .2s, background .2s;
}
.nav a:hover{
  color:#fff;
}
.nav a{text-decoration:none;color:var(--ink)}
.btn-brand{
  display:inline-block;
  background:linear-gradient(to right,var(--brand),var(--accent));
  color:#fff;
  text-decoration:none;
  padding:.8rem 1.1rem;
  border-radius:var(--radius);
  font-weight:700;
  transition:transform .2s, box-shadow .2s;
  border:none;
}
.btn-brand:hover{
  transform:translateY(-3px);
  box-shadow:0 6px 20px rgba(0,0,0,0.35);
}
.footer{
  padding:2rem 0;
  border-top:1px solid var(--border);
  color:var(--muted);
  background:var(--bg);
}
.footer a{
  color:var(--muted);
  text-decoration:none;
  transition:color .2s;
}
.footer a:hover{
  color:var(--ink);
}
.page-hero{background:linear-gradient(180deg, rgba(76,187,23,.07), transparent 70%), var(--bg);padding:42px 0 24px;border-bottom:1px solid var(--border)}
.page-hero h1{margin:0 0 8px;font-size:clamp(28px,3vw,40px);color:var(--ink)}
.page-hero p{margin:0;color:var(--muted)}
.card{background:var(--card);border:1px solid var(--border);border-radius:var(--radius);padding:1rem;box-shadow:var(--shadow)}
.gallery{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:12px}
.area-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:12px}
.area-grid li{list-style:none;background:var(--card);border:1px solid var(--border);border-radius:var(--radius);padding:.6rem .8rem;color:var(--ink)}

/* -------------------------------------------------- */
/*
 * Notebook theme overrides
 *
 * These rules switch the dark gradient look to a light, playful palette inspired by
 * a classic lined notebook. Sticky notes rotate slightly and pop up on hover.
 */
:root {
  /* Kelly green brand colors */
  --brand: #4CBB17;
  --accent: #2c7a1e;
  /* Paper background and card colours */
  --bg: #fdfdf8;
  --card: #fffde6;
  /* Ink and muted text colours */
  --ink: #333333;
  --muted: #666666;
  /* Borders and radius */
  --border: #dcd8c4;
  --radius: 8px;
  /* Shadows for depth */
  --shadow: 0 4px 6px rgba(0,0,0,0.15);
}

/* Lined notebook paper background */
body {
  background: repeating-linear-gradient(
    to bottom,
    var(--bg),
    var(--bg) 24px,
    #e8e8e8 25px,
    #e8e8e8 26px
  );
  color: var(--ink);
  font-family: 'Inter', sans-serif;
}

/* Handwritten headings */
/* Use a handwriting-style font fallback that works offline */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
}

/* Hero / page hero styling */
.hero,
.page-hero {
  position: relative;
  /* Notebook cover background */
  background: url('img/notebook-cover.png') center/cover no-repeat;
  color: var(--ink);
  text-align: center;
  padding: 5rem 1rem 4rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  margin-bottom: 2rem;
}
/* Light overlay to soften the hero image */
.hero::after,
.page-hero::after {
  /* Remove the white overlay for notebook cover */
  display: none;
}
.hero-content,
.page-hero .container {
  position: relative;
  z-index: 1;
}
.hero-content h1,
.page-hero h1 {
  margin-bottom: 1rem;
  font-size: clamp(36px, 6vw, 72px);
  color: var(--ink);
  /* Emboss effect: dark and light shadows to simulate pressed print */
  text-shadow: 0 2px 2px rgba(0,0,0,0.15), 0 -1px 1px rgba(255,255,255,0.6);
}
.hero-content p,
.page-hero p {
  margin-bottom: 2rem;
  font-size: clamp(16px, 3vw, 24px);
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  /* Emboss effect: subtle text shadows */
  text-shadow: 0 1px 1px rgba(0,0,0,0.1), 0 -1px 1px rgba(255,255,255,0.5);
}

/* Button styles override */
.btn-brand,
.btn-cta {
  display: inline-block;
  padding: 0.8rem 1.3rem;
  border-radius: var(--radius);
  background: linear-gradient(to right, var(--brand), var(--accent));
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  border: none;
}
.btn-brand:hover,
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}
.btn-secondary {
  display: inline-block;
  padding: .6rem 1rem;
  border-radius: var(--radius);
  background: var(--card);
  color: var(--ink);
  border: 1px solid var(--border);
  text-decoration: none;
  font-weight: 500;
  transition: background .2s, transform .2s;
}
.btn-secondary:hover {
  background: #f7f4e8;
  transform: translateY(-1px);
}

/* Sticky note grid */
.sticky-section {
  padding: 3rem 0;
}
.sticky-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
/*
 * Sticky notes
 *
 * These cards mimic scraps of paper stuck to the page.  Each one can take a
 * background texture via the `note-green` or `note-cream` classes.  A
 * default cream background is provided when no explicit texture is applied.
 * A push‑pin appears at the top to sell the illusion that the note is
 * attached.  We use handwriting fonts to evoke ballpoint pen scribbles.
 */
.sticky-note {
  position: relative;
  /* Default to a cream tone when no note‑colour class is specified */
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  /* Random rotation provided via inline --deg variable; small tilt by default */
  transform: rotate(var(--deg, -2deg));
  transition: transform .3s, box-shadow .3s;
  /* Handwriting font stack to simulate ballpoint pen */
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

/* Faux push‑pin on sticky notes */
.sticky-note::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  width: 16px;
  height: 16px;
  background: #f5f5f5;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3), 0 -1px 1px rgba(255,255,255,0.5);
  transform: translateX(-50%) rotate(var(--deg, -2deg));
  z-index: 2;
}
.sticky-note img.note-icon {
  width: 48px;
  height: 48px;
  margin-bottom: .5rem;
}
.sticky-note h3 {
  margin-top: 0;
  margin-bottom: .5rem;
  font-size: 1.4rem;
  font-family: 'Inter', sans-serif;
}
/* Lift sticky notes slightly on hover */
.sticky-note:hover {
  transform: rotate(0deg) translateY(-6px);
  box-shadow: 0 8px 14px rgba(0,0,0,0.25);
}

/* Single sticky notes (non grid) get a narrower width and centered alignment */
.sticky-note.single {
  max-width: 650px;
  margin: 0 auto;
}

/* Variations for paper textures */
.note-green {
  background: url('img/sticky-green-crumpled.png') center/cover no-repeat;
  background-size: cover;
}
.note-cream {
  background: url('img/sticky-cream-crumpled.png') center/cover no-repeat;
  background-size: cover;
}

/* Gallery grid for before & after images */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* -------------------------------------------------- */
/*
 * Flip card styles
 *
 * These classes enable a 3D flip animation on our sticky note cards. On hover (or focus on
 * desktop), the card spins around the Y axis to reveal the back side. We use
 * perspective and preserve-3d to create depth. On small screens we disable the
 * transform to avoid awkward behaviour on touch devices.
 */
.flip-card {
  perspective: 1000px;
  position: relative;
  /* Set a fixed height so that absolute-positioned faces occupy space. */
  height: 260px;
}
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s;
}
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}
.flip-card-front,
.flip-card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  background: var(--card);
  color: var(--ink);
  font-family: 'Comic Sans MS', 'Comic Sans', cursive;
}
.flip-card-back {
  transform: rotateY(180deg);
}

@media (max-width: 599px) {
  .flip-card-inner,
  .flip-card:hover .flip-card-inner {
    transform: none;
  }
}
.gallery-grid .sticky-note img {
  width: 100%;
  display: block;
  border-radius: var(--radius);
}

/* Social icons */
.socials {
  display: flex;
  gap: 0.75rem;
}
.socials img {
  width: 28px;
  height: 28px;
}

/* Logo sizing */
.logo {
  width: 40px;
  height: 40px;
  vertical-align: middle;
  margin-right: .5rem;
}
/* Features section */
.features {
  padding: 4rem 0;
  background: var(--bg);
}
.features h2 {
  text-align: center;
  color: var(--ink);
  margin-bottom: 2rem;
  font-size: clamp(24px,4vw,36px);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  color: var(--ink);
  transition: transform .3s, box-shadow .3s;
  box-shadow: var(--shadow);
}
.feature-card i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--brand);
}
.feature-card h3 {
  margin: .5rem 0 .5rem;
  font-size: 1.4rem;
  color: var(--ink);
}
.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.4;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
/* CTA banner */
.cta-banner {
  background: linear-gradient(to right, var(--brand), var(--accent));
  color: #fff;
  padding: 3rem 1rem;
  text-align: center;
}
.cta-banner h2 {
  margin: 0 0 .5rem;
  font-size: clamp(28px,5vw,40px);
  color: #fff;
}
.cta-banner p {
  margin: 0 0 1.5rem;
  font-size: clamp(14px,3vw,20px);
  color: #f3f4f6;
}

.cta-banner .btn-cta {
    background: #fff;
    color: #40a219;
    padding: 1rem 2rem;
}

.cta-banner .btn-cta:hover {
  background: #f0f0f0;
}

/* === GOAT Font Patch (Playfair Display + Inter) === */
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
h1, h2, h3, .hero-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}
.page-hero h1 {
  font-size: clamp(28px, 3vw, 42px);
  margin-bottom: 0.25em;
}
.page-hero p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: var(--muted);
}
.nav a, .btn-brand {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
/* === 66710 Minimal Theme === */
:root{
  --brand:#4CBB17; --ink:#0e141b; --bg:#ffffff; --muted:#667085;
  --border:#e5e7eb; --card:#ffffff; --shadow:0 4px 14px rgba(0,0,0,.06);
}
html,body{font-family:'Inter',sans-serif;color:var(--ink);background:var(--bg)}
a{color:var(--ink);text-decoration:none} a:hover{text-decoration:underline}
.container{max-width:1100px;margin:0 auto;padding:1.25rem}
.site-header{position:sticky;top:0;background:#fff;border-bottom:1px solid var(--border);z-index:40}
.nav{display:flex;align-items:center;justify-content:space-between;gap:12px}
.nav a{margin:0 .5rem}
.btn,.btn-brand,.btn-cta{display:inline-block;background:var(--brand);color:#fff;padding:.7rem 1rem;border-radius:10px;font-weight:700}
.btn:hover,.btn-brand:hover,.btn-cta:hover{filter:brightness(.96)}
.page-hero{background:#f8fafc;border-bottom:1px solid var(--border)}
.page-hero .container{padding:2.25rem 1.25rem}
.page-hero h1{font-weight:700;font-size:clamp(28px,3vw,42px);margin:0 0 .5rem}
.page-hero p{color:var(--muted);margin:.2rem 0 1rem}
.features{padding:2rem 0}
.features .grid{display:grid;gap:14px;grid-template-columns:repeat(auto-fit,minmax(260px,1fr))}
.card{background:var(--card);border:1px solid var(--border);border-radius:14px;box-shadow:var(--shadow);padding:1rem}
.card h3{font-weight:700;margin:.25rem 0 .35rem}
.card p{color:var(--muted);margin:0}
.footer{padding:1.5rem 0;border-top:1px solid var(--border);color:var(--muted)}
/* Flatten/remove previous “cool stuff” */
.sticky-note,.flip-card-front,.flip-card-back{background:var(--card)!important;border:1px solid var(--border)!important;border-radius:14px!important;box-shadow:var(--shadow)!important;padding:1rem}
.flip-card,.flip-card-inner{transform:none!important;perspective:none!important;transition:none!important}
.flip-card-back{display:none!important}
.sticky-note::before,.sticky-note::after,.flip-card-front::before,.flip-card-front::after,.tape,.tape.t2{content:none!important;display:none!important}
