/* ==========================================================================
   Epoxy Time — Landing Page Styles
   ========================================================================== */

:root {
  /* Colors — teal/turquoise resin + gold flake + cream, from the logo */
  --teal-deep: #0f4c4a;
  --teal: #1c7a74;
  --teal-mid: #2f9690;
  --teal-light: #7fc4bd;
  --teal-pale: #dcf0ec;

  --gold: #c9a227;
  --gold-light: #e6c66a;
  --gold-pale: #f6e9c4;

  --lavender: #9c8fc4;
  --lavender-light: #d8d2ec;

  --cream: #fbf7ef;
  --cream-alt: #f5efe0;
  --white: #ffffff;

  --ink: #223533;
  --ink-soft: #586a67;
  --ink-faint: #8a9997;

  --shadow-sm: 0 2px 10px rgba(15, 76, 74, 0.08);
  --shadow-md: 0 10px 30px rgba(15, 76, 74, 0.12);
  --shadow-lg: 0 20px 50px rgba(15, 76, 74, 0.18);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --font-heading: 'Fredoka', sans-serif;
  --font-body: 'Rubik', sans-serif;
}

/* ---- Reset ---- */
* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--teal-deep);
  line-height: 1.3;
  font-weight: 600;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-gold { color: var(--gold); }

.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--teal);
  font-weight: 600;
  background: var(--teal-pale);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline {
  border: 1.5px solid var(--teal);
  color: var(--teal-deep);
  background: transparent;
}
.btn-outline:hover { background: var(--teal-pale); transform: translateY(-2px); }

.btn-small { padding: 10px 20px; font-size: 0.88rem; }
.btn-block { width: 100%; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 239, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 76, 74, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 10px;
}

.brand-logo { height: 52px; width: auto; }

.nav-list {
  display: flex;
  gap: 28px;
}

.nav-link {
  font-weight: 500;
  font-size: 0.96rem;
  color: var(--ink-soft);
  position: relative;
  padding-block: 6px;
  transition: color 0.2s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-link:hover { color: var(--teal-deep); }
.nav-link:hover::after { width: 100%; }

.nav-cta { flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--teal-deep);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  padding: 90px 0 60px;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  z-index: 0;
}
.blob-1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--teal-light), transparent 70%);
  top: -160px; right: -120px;
}
.blob-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--gold-light), transparent 70%);
  bottom: -140px; left: -100px;
  opacity: 0.35;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.hero-lead {
  font-size: 1.12rem;
  color: var(--ink-soft);
  margin: 22px 0 32px;
  max-width: 46ch;
}

.hero h1 {
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat strong { font-family: var(--font-heading); font-weight: 600; font-size: 1.6rem; color: var(--teal-deep); }
.stat span { font-size: 0.86rem; color: var(--ink-faint); }

.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-logo {
  width: 100%;
  max-width: 460px;
  filter: drop-shadow(0 25px 40px rgba(15, 76, 74, 0.2));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.scroll-cue {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--teal);
  font-size: 1.3rem;
  animation: bounce 2s infinite;
  opacity: 0.7;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ==========================================================================
   Section Head (shared)
   ========================================================================== */
.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 48px;
}
.section-head p { color: var(--ink-soft); margin-top: 12px; font-size: 1.02rem; }
.section-head h2 { font-size: clamp(1.9rem, 3.2vw, 2.7rem); }

section { padding: 90px 0; }

/* ==========================================================================
   Resin art placeholders (CSS-generated, no real photos yet)
   ========================================================================== */
.resin-art {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: var(--white);
}
.resin-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 90px, rgba(255,255,255,0.85) 0 2px, transparent 3px),
    radial-gradient(circle at 70% 30%, rgba(255,255,255,0.7) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 40% 70%, rgba(255,255,255,0.6) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 85% 80%, rgba(255,255,255,0.8) 0 2px, transparent 3px),
    radial-gradient(circle at 55% 15%, rgba(255,255,255,0.6) 0 1px, transparent 2px);
  background-size: 140px 140px;
  mix-blend-mode: screen;
  opacity: 0.5;
}
.resin-art::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 40px rgba(255,255,255,0.35);
}

.art-teal { background: radial-gradient(circle at 30% 30%, var(--teal-light), var(--teal) 55%, var(--teal-deep) 100%); }
.art-gold { background: radial-gradient(circle at 70% 30%, var(--gold-light), var(--gold) 55%, #8a6a15 100%); }
.art-lavender { background: radial-gradient(circle at 40% 60%, var(--lavender-light), var(--lavender) 60%, #6b5f96 100%); }
.art-mix { background: conic-gradient(from 200deg, var(--teal), var(--gold-light), var(--lavender), var(--teal-light), var(--teal)); }
.art-deep { background: radial-gradient(circle at 60% 40%, var(--teal-mid), var(--teal-deep) 70%, #06302e 100%); }
.art-teal-light { background: radial-gradient(circle at 35% 35%, #ffffff, var(--teal-pale) 45%, var(--teal-light) 100%); }
.art-gold-light { background: radial-gradient(circle at 65% 35%, #fffdf6, var(--gold-pale) 45%, var(--gold-light) 100%); }
.art-lavender-light { background: radial-gradient(circle at 50% 50%, #ffffff, var(--lavender-light) 55%, var(--lavender) 100%); }
.art-teal-gold { background: linear-gradient(135deg, var(--teal-light) 0%, var(--teal) 35%, var(--gold-light) 70%, var(--gold) 100%); }

/* ==========================================================================
   About
   ========================================================================== */
.about-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.about-visual { width: 100%; }
.about-visual .resin-art { width: 100%; aspect-ratio: 1 / 1; box-shadow: var(--shadow-lg); }

.about-text p { color: var(--ink-soft); margin-bottom: 16px; }

.about-values { margin-top: 22px; display: flex; flex-direction: column; gap: 10px; }
.about-values li { display: flex; align-items: center; gap: 10px; font-weight: 500; }
.value-icon { color: var(--gold); }

/* ==========================================================================
   Cards (workshops / shop)
   ========================================================================== */
.workshops { background: var(--white); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}

.card {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.card-media {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.badge {
  position: absolute;
  top: 34px;
  right: 34px;
  background: var(--teal-deep);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
}
.badge-gold { background: var(--gold); color: var(--teal-deep); }

.card h3 { font-size: 1.35rem; margin-bottom: 8px; }
.card-desc { color: var(--ink-soft); font-size: 0.92rem; flex-grow: 1; margin-bottom: 14px; }

.card-meta {
  display: flex;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--ink-faint);
  margin-bottom: 16px;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(15,76,74,0.08);
}
.price { font-family: var(--font-heading); font-weight: 600; color: var(--teal-deep); font-size: 1.1rem; }

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery-item {
  width: 100%;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.gallery-item:hover { transform: scale(1.04) rotate(-0.5deg); box-shadow: var(--shadow-md); z-index: 2; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials { background: var(--teal-pale); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; }
.testi-card p { color: var(--ink-soft); margin-bottom: 22px; font-size: 0.98rem; }

.testi-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-light), var(--teal));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-author div:last-child { display: flex; flex-direction: column; }
.testi-author span { font-size: 0.82rem; color: var(--ink-faint); }

/* ==========================================================================
   FAQ / Accordion
   ========================================================================== */
.faq-inner { max-width: 760px; }

.accordion-item {
  border-bottom: 1px solid rgba(15,76,74,0.12);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 4px;
  text-align: right;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--teal-deep);
}

.accordion-icon {
  font-size: 1.3rem;
  color: var(--gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-inline-start: 16px;
}

.accordion-item.open .accordion-icon { transform: rotate(45deg); }

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 4px;
}
.accordion-item.open .accordion-panel { padding-bottom: 20px; }
.accordion-panel p { color: var(--ink-soft); font-size: 0.96rem; max-width: 62ch; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact { background: var(--white); }

.contact-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}

.contact-info p { color: var(--ink-soft); margin: 18px 0 26px; }

.contact-details { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.contact-details li { display: flex; align-items: center; gap: 12px; color: var(--ink-soft); font-weight: 500; }
.contact-details .icon { font-size: 1.1rem; }

.social-links { display: flex; gap: 14px; }
.social-links a {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--teal);
  color: var(--teal-deep);
  font-size: 0.88rem;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}
.social-links a:hover { background: var(--teal); color: var(--white); }

.contact-form {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 34px;
  box-shadow: var(--shadow-sm);
}

.form-row { margin-bottom: 18px; display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-size: 0.88rem; font-weight: 600; color: var(--teal-deep); }
.form-row input,
.form-row textarea {
  font-family: var(--font-body);
  font-size: 0.96rem;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(15,76,74,0.15);
  background: var(--white);
  color: var(--ink);
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(28, 122, 116, 0.15);
}

.form-note {
  margin-top: 14px;
  font-size: 0.9rem;
  color: var(--teal-deep);
  font-weight: 500;
  min-height: 1.2em;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--teal-deep);
  color: var(--teal-pale);
  padding-top: 50px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-logo {
  height: 44px;
  width: auto;
  border-radius: 8px;
}

.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { font-size: 0.92rem; opacity: 0.85; transition: opacity 0.2s ease; }
.footer-links a:hover { opacity: 1; color: var(--gold-light); }

.footer-social { display: flex; gap: 16px; }
.footer-social a { font-size: 0.88rem; opacity: 0.85; }
.footer-social a:hover { opacity: 1; color: var(--gold-light); }

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 0.82rem;
  opacity: 0.65;
}

/* ==========================================================================
   Floating WhatsApp button
   ========================================================================== */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
  z-index: 90;
  transition: transform 0.25s ease;
}
.whatsapp-fab:hover { transform: scale(1.08); }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-media { order: -1; }
  .hero-logo { max-width: 320px; }

  .about-inner { grid-template-columns: 1fr; }
  .about-visual { max-width: 360px; margin: 0 auto; }

  .contact-inner { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  .nav { position: fixed; top: 72px; right: 0; left: 0; height: calc(100vh - 72px); background: var(--cream); padding: 20px 24px; transform: translateY(-110%); transition: transform 0.3s ease; z-index: 99; overflow-y: auto; }
  .nav.open { transform: translateY(0); }
  .nav-list { flex-direction: column; gap: 4px; }
  .nav-link { display: block; padding: 14px 6px; border-bottom: 1px solid rgba(15,76,74,0.08); }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  section { padding: 64px 0; }
  .hero { padding-top: 60px; }
  .brand-logo { height: 40px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-stats { gap: 20px; }
  .contact-form { padding: 24px; }
  .whatsapp-fab { width: 50px; height: 50px; font-size: 1.3rem; bottom: 16px; left: 16px; }
}
