/* Creative Art 4 U — brand stylesheet */
:root {
  --coral: #E86A4F;
  --coral-dark: #C54E37;
  --cream: #FBF1E3;
  --navy: #2E3A4F;
  --teal: #4FB0A5;
  --sun: #F5BF42;
  --white: #ffffff;
  --shadow: 0 6px 24px rgba(46, 58, 79, 0.12);
  --radius: 16px;
  --maxw: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Nunito", "Quicksand", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--navy);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: "Baloo 2", "Nunito", sans-serif; line-height: 1.15; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin: 0 0 .4em; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); margin: 0 0 .5em; }
h3 { font-size: 1.25rem; margin: 0 0 .4em; }
p { margin: 0 0 1em; }
a { color: var(--coral-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

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

/* Header / nav */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 241, 227, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(46,58,79,.08);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--maxw); margin: 0 auto; padding: 12px 20px;
}
.brand { display: flex; align-items: center; gap: 10px; font-family: "Baloo 2", sans-serif; font-weight: 800; font-size: 1.15rem; color: var(--navy); }
.brand img { width: 40px; height: 40px; border-radius: 50%; }
.brand:hover { text-decoration: none; }
.nav-links { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.nav-links a { color: var(--navy); font-weight: 700; }
.nav-links a:hover { color: var(--coral-dark); text-decoration: none; }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.6rem; cursor: pointer; color: var(--navy); }

/* Buttons */
.btn {
  display: inline-block; background: var(--coral); color: var(--white);
  font-weight: 800; padding: 13px 26px; border-radius: 999px;
  box-shadow: var(--shadow); border: 0; cursor: pointer; font-size: 1rem;
  transition: transform .12s ease, background .12s ease;
}
.btn:hover { background: var(--coral-dark); text-decoration: none; transform: translateY(-2px); color: var(--white); }
.btn.secondary { background: var(--teal); }
.btn.secondary:hover { background: #3d8d84; }
.btn.ghost { background: transparent; color: var(--navy); box-shadow: none; border: 2px solid var(--navy); }
.btn.ghost:hover { background: var(--navy); color: var(--white); }

/* Hero */
.hero { padding: 70px 0 60px; text-align: center; }
.hero .tag { display:inline-block; background: var(--sun); color: var(--navy); font-weight:800; padding:6px 16px; border-radius:999px; font-size:.85rem; margin-bottom: 18px; }
.hero p.lead { font-size: 1.2rem; max-width: 640px; margin: 0 auto 28px; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Sections */
section { padding: 56px 0; }
.section-tinted { background: var(--white); }
.center { text-align: center; }
.eyebrow { color: var(--coral-dark); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: .82rem; margin-bottom: 8px; }

/* Cards grid */
.grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.card {
  background: var(--white); border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow); border: 1px solid rgba(46,58,79,.06);
  display: flex; flex-direction: column;
}
.section-tinted .card { background: var(--cream); }
.card .emoji { font-size: 2.2rem; margin-bottom: 10px; }
.card h3 { margin-bottom: 8px; }
.card p { flex: 1; }
.card .btn { align-self: flex-start; margin-top: 12px; }

/* Feature row */
.features { display:grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); }
.feature { text-align:center; }
.feature .ico { font-size: 2rem; }

/* Contact form */
.form-wrap { max-width: 620px; margin: 0 auto; background: var(--white); padding: 34px; border-radius: var(--radius); box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display:block; font-weight:700; margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px; border: 2px solid rgba(46,58,79,.15);
  border-radius: 12px; font-size: 1rem; font-family: inherit; color: var(--navy); background: var(--cream);
}
.field select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%232E3A4F' stroke-width='3'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--coral); }
.field textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: .9rem; color: #5b6675; }
#form-result { margin-top: 14px; font-weight: 700; }

/* Footer */
.site-footer { background: var(--navy); color: #d9dee6; padding: 44px 0 28px; margin-top: 40px; }
.site-footer a { color: var(--sun); }
.footer-grid { display:flex; flex-wrap:wrap; gap: 30px; justify-content: space-between; }
.footer-grid h4 { color: var(--white); margin: 0 0 10px; font-size: 1rem; }
.footer-links { display:flex; flex-direction:column; gap:6px; }
.footer-bottom { margin-top: 26px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); font-size: .85rem; text-align:center; }

/* Gallery */
.gallery-grid { display:grid; gap: 16px; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); }
.gallery-grid figure { margin:0; background: var(--white); border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow); }
.gallery-grid img { width:100%; height:100%; object-fit: cover; display:block; aspect-ratio: 1/1; }
.gallery-grid figcaption { padding: 10px 14px; font-weight:700; font-size:.92rem; color: var(--navy); }

/* Prize cards */
.prize-grid { display:grid; gap:22px; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); }
.prize { background: var(--white); border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow); border-top: 6px solid var(--sun); }
.prize img { width:100%; aspect-ratio: 7/5; object-fit: cover; }
.prize .body { padding: 16px 18px; }
.prize .ribbon { display:inline-block; background: var(--sun); color: var(--navy); font-weight:800; font-size:.78rem; padding:4px 12px; border-radius:999px; margin-bottom:8px; }

/* Reviews / testimonials */
.reviews-grid { display:grid; gap:22px; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); }
.review { background: var(--white); border-radius: var(--radius); padding:24px; box-shadow: var(--shadow); display:flex; flex-direction:column; }
.section-tinted .review { background: var(--cream); }
.stars { color: var(--sun); font-size:1.1rem; letter-spacing:2px; margin-bottom:10px; }
.review .quote { flex:1; font-size:1.02rem; }
.review .who { font-weight:800; margin-top:14px; color: var(--navy); }
.review .who span { display:block; font-weight:600; font-size:.85rem; color:#5b6675; }

/* Star rating input (review form) */
.rating { display:inline-flex; flex-direction: row-reverse; gap:4px; }
.rating input { display:none; }
.rating label { font-size:1.8rem; color:#d6cebf; cursor:pointer; line-height:1; }
.rating input:checked ~ label,
.rating label:hover, .rating label:hover ~ label { color: var(--sun); }

/* Info / detail blocks */
.detail-list { list-style:none; padding:0; margin:0; display:grid; gap:14px; }
.detail-list li { display:flex; gap:12px; align-items:flex-start; background:var(--white); padding:16px 18px; border-radius:12px; box-shadow: var(--shadow); }
.section-tinted .detail-list li { background: var(--cream); }
.detail-list .k { font-size:1.5rem; }
.note-edit { background:#fff7e6; border:1px dashed var(--sun); border-radius:10px; padding:6px 10px; font-size:.82rem; color:#7a5b14; display:inline-block; }

/* Split hero with art strip */
.art-strip { display:grid; grid-template-columns: repeat(4,1fr); gap:10px; margin-top:36px; }
.art-strip img { width:100%; aspect-ratio:1/1; object-fit:cover; border-radius:12px; box-shadow: var(--shadow); }
@media (max-width: 560px){ .art-strip { grid-template-columns: repeat(2,1fr); } }

/* Responsive nav */
@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 64px; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--cream);
    border-bottom: 1px solid rgba(46,58,79,.1); padding: 8px 20px 16px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 0; width: 100%; border-bottom: 1px solid rgba(46,58,79,.06); }
}
