/* ŽIG Radionica — landing page styles
   Boje i fontovi su na vrhu (CSS varijable) — lako za izmenu. */

:root {
  --cream:      #faf6f0;
  --cream-2:    #f2ebe0;
  --ink:        #2b2420;
  --muted:      #6f655c;
  --accent:     #b5502f;   /* terakota */
  --accent-dk:  #8f3e23;
  --gold:       #ffd42a;   /* logo gold */
  --line:       #e4dbcd;
  --radius:     14px;
  --maxw:       1080px;
  --serif: "Playfair Display", Georgia, serif;
  --sans:  "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

h1, h2, h3 { font-family: var(--serif); line-height: 1.15; margin: 0 0 .4em; }

img { max-width: 100%; display: block; }

.hidden { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: background .15s ease, transform .15s ease;
}
.btn:hover { background: var(--accent-dk); transform: translateY(-1px); }
.btn-small { padding: 9px 18px; font-size: .9rem; }
.btn-full { width: 100%; padding: 16px; font-size: 1.05rem; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  font-size: .85rem;
  padding: 9px 16px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(43,36,32,.92);   /* dark, to showcase the gold logo */
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; padding-bottom: 12px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--serif); font-weight: 700; font-size: 1.4rem; color: var(--cream); text-decoration: none; letter-spacing: .3px; }
.brand-logo { height: 40px; width: auto; display: block; }
.brand span { color: var(--gold); font-weight: 600; }

/* ---------- Hero ---------- */
.hero { padding: 60px 0 40px; }
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 700; }
.lead { font-size: 1.2rem; color: var(--ink); margin: 0 0 .4em; }
.sub { color: var(--muted); margin: 0 0 1.6em; }
.hero-photo { margin: 0; }
.hero-photo img { width: 100%; border-radius: var(--radius); box-shadow: 0 20px 45px rgba(43,36,32,.14); aspect-ratio: 4/3; object-fit: cover; }

/* ---------- Values ---------- */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; padding: 30px 20px 50px; }
.value-ico { font-size: 1.9rem; }
.value h3 { font-size: 1.2rem; margin: .3em 0 .2em; }
.value p { color: var(--muted); margin: 0; }

/* ---------- Sections ---------- */
.section { padding: 66px 0; }
.section-alt { background: var(--cream-2); }
.section-title { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
.section-intro { color: var(--muted); max-width: 620px; margin: 0 0 34px; font-size: 1.08rem; }

/* ---------- Ladder cards ---------- */
.ladder { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.section-alt .card { background: #fff; }
.card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(43,36,32,.10); }
.card-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.level { font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.price { font-family: var(--serif); font-weight: 700; color: var(--accent); font-size: 1.15rem; }
.card h3 { font-size: 1.18rem; }
.card p { color: var(--muted); margin: 0; font-size: .96rem; }
.fineprint { color: var(--muted); font-size: .85rem; margin-top: 22px; font-style: italic; }

/* ---------- Why ---------- */
.why-inner { display: grid; grid-template-columns: .95fr 1.05fr; gap: 48px; align-items: center; }
.why-inner + .why-inner { margin-top: 46px; }
.why-photo { margin: 0; }
.why-photo img { width: 100%; border-radius: var(--radius); box-shadow: 0 16px 36px rgba(43,36,32,.12); aspect-ratio: 3/4; object-fit: cover; }
.why-text p { font-size: 1.05rem; margin: 0 0 1em; }

/* ---------- Gift ---------- */
.gift { text-align: center; }
.gift .section-intro { margin-left: auto; margin-right: auto; }

/* ---------- Form ---------- */
.section-form { background: var(--cream-2); }
.form-wrap { max-width: 620px; }
.waitlist-form { margin-top: 10px; }
.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; font-weight: 500; font-size: .92rem; margin-bottom: 6px; }
input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 1rem;
  background: #fff;
  color: var(--ink);
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--accent); border-color: transparent; }
textarea { resize: vertical; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--cream); padding: 46px 0 24px; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
.footer-col { flex: 1 1 220px; }
.footer-col h4 { font-family: var(--serif); color: var(--cream); font-size: 1.05rem; margin: 0 0 .5em; }
.site-footer .brand { display: flex; align-items: center; gap: 10px; color: var(--gold); margin-bottom: .5em; }
.footer-logo { height: 46px; width: auto; display: block; }
.muted { color: #c9bcae; font-size: .92rem; line-height: 1.8; }
.muted a { color: var(--cream); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.25); }
.muted a:hover { border-bottom-color: var(--accent); }
.chat-links { font-size: .85rem; }
.socials { display: flex; gap: 20px; align-items: flex-start; margin-top: 14px; }
.socials a { color: var(--cream); text-decoration: none; font-weight: 500; border-bottom: 1px solid transparent; }
.socials a:hover { border-bottom-color: var(--accent); }
.copyright { text-align: center; color: #8f8478; font-size: .82rem; margin: 30px 0 0; }

/* ---------- Thank-you page ---------- */
.thanks { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.thanks .inner { max-width: 480px; padding: 20px; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero-inner, .why-inner { grid-template-columns: 1fr; }
  .hero-photo { order: -1; }
  .values { grid-template-columns: 1fr; gap: 18px; }
  .ladder { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .ladder { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
}
