/* ==========================================================
   SHOWPLACE.ART — Stylesheet
   ========================================================== */

/* ── CSS Custom Properties ── */
:root {
  /* Core palette */
  --c-bg:             #FCFCFC;
  --c-dark:           #1d2b3a;
  --c-text:           #1a1a1a;
  --c-text-mid:       #555555;
  --c-text-light:     #999999;
  --c-border:         #e5e5e5;

  /* Accent colours */
  --c-coral:          #e07050;
  --c-pink:           #f4c4bc;
  --c-pink-mid:       #e8a898;
  --c-teal:           #4e86a8;
  --c-teal-light:     #aacad8;
  --c-green:          #7ab85a;
  --c-lavender:       #ccc0e8;
  --c-gold:           #c99700;
  --c-pastel:         #FDF9F6;

  /* "Website" word gradient stops */
  --g-orange:         #f97316;
  --g-pink:           #ec4899;
  --g-purple:         #8b5cf6;

  /* Feature icon backgrounds */
  --c-icon-ig-bg:     #fcecea;
  --c-icon-ig:        #c05050;
  --c-icon-gal-bg:    #e8eeff;
  --c-icon-gal:       #4e6ed8;
  --c-icon-shop-bg:   #e8f4e4;
  --c-icon-shop:      #559944;

  /* Layout */
  --nav-h:            70px;
  --max-w:            1200px;
  --container-px:     60px;
  --section-py:       60px;

  /* Radii */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
}

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

html { scroll-behavior: smooth; }

body {
  background: #fff;
  color: var(--c-text);
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img, svg { display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
a { text-decoration: none; }

/* ── Utilities ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: none;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}
.btn:hover  { opacity: .88; }

.btn-dark {
  background: var(--c-dark);
  color: #fff;
}
.btn-gold {
  background: var(--c-gold);
  color: #fff;
}
/* ========================================================
   NAVIGATION
   ======================================================== */
.site-header {
  height: var(--nav-h);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

.nav-logo {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-text);
  flex: 1;
}
.logo-art { color: var(--c-gold); }

.nav-tagline {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}
.nav-tagline span {
    font-size: 18px;
    color: var(--c-green);
}


/* ========================================================
   HERO
   ======================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: 36px 20px;
}

/* Two-column grid container */
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
  min-height: 600px;
}

/* ── Left column ── */
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-heading-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
}

.hero-heading {
  font-size: clamp(40px, 5.5vw, 66px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -.025em;
  color: var(--c-text);
}
.hero-heading span {
    display: block;
}

.hero-heading .instagram {
  color: var(--c-text-mid);
  font-weight: normal;
}

.gradient-text {
  background: linear-gradient(90deg, var(--g-orange) 0%, var(--g-pink) 50%, var(--g-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-features {
    position: relative;
    top: -230px;
}

/* Curved arrow */
.hero-arrow {
  position: absolute;
  bottom: 10px;
  right: -270px;
  width: 140px;
  height: 64px;
  pointer-events: none;
  transform: rotate(-25deg);
}

.hero-sub {
  font-size: 15px;
  color: var(--c-text-mid);
  line-height: 1.75;
  max-width: 290px;
  margin-bottom: 32px;
}

/* Features */
.features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 310px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}
.feature-icon svg { width: 20px; height: 20px; }

.feature-icon--ig      { background: var(--c-icon-ig-bg);   color: var(--c-icon-ig);   }
.feature-icon--gallery { background: var(--c-icon-gal-bg);  color: var(--c-icon-gal);  }
.feature-icon--shop    { background: var(--c-icon-shop-bg); color: var(--c-icon-shop); }

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.feature-text strong { font-size: 16px; font-weight: 600; }
.feature-text span   { font-size: 12px; color: var(--c-text-mid); }


/* ── Right column ── */
.hero-visual {
  position: relative;
  z-index: 2;
}


/* ========================================================
   WEBSITE MOCKUP (inside hero-visual)
   ======================================================== */
.website-mockup {
  background: var(--c-pastel);
  border: 1px solid var(--c-border);
  overflow: hidden;
  box-shadow: 10px 10px 40px rgba(0,0,0,0.05);
  font-size: 11px;
  color: var(--c-text);
  padding: 10px;
}

/* Mockup nav */
.m-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 14px;
}
.m-logo {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: .2em;
  font-family: serif;
}
.m-nav-links {
  display: flex;
  gap: 10px;
  font-size: 8px;
  color: var(--c-text-mid);
}
.m-cart {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 8px;
  color: var(--c-text-mid);
}

/* Mockup hero */
.m-hero {
  display: flex;
  gap: 12px;
  padding: 16px 14px 45px;
  align-items: center;
}
.m-hero-text { flex: 1; }
.m-heading {
  font-family: Georgia, serif;
  font-weight: 300;
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 7px;
}
.m-sub {
  font-size: 11px;
  font-style: italic;
  color: var(--c-text-mid);
  margin-bottom: 10px;
  line-height: 1.5;
}
.m-btn {
  background: #000;
  color: #fff;
  font-family: inherit;
  font-size: 9px;
  padding: 8px 20px;
  border: none;
  border-radius: 3px;
  cursor: default;
}

.m-hero-art {
  flex-shrink: 0;
  width: 200px;
}

/* Mockup shop */
.m-shop {
  margin: -10px;
  padding: 20px 20px 30px 20px;
  background: #fff;
}
.m-shop-title {
  font-size: 12px;
  font-family: serif;
  margin-bottom: 10px;
}
.m-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.m-product { font-size: 10px; }
.m-product-name   { font-weight: 600; margin-bottom: 1px; }
.m-product-medium { color: var(--c-text-light); margin-bottom: 2px; font-size: 9px; }
.m-product-price  { font-weight: 600; }

/* ── Painting CSS art ── */
.m-painting {
  margin-bottom: 5px;
  background: #ccc;
}
.m-painting-thumbnail {
    height: 120px;
    width: 90px;
}

/* Main hero painting – abstract arch */
.m-painting--main {
  width: 100%;
  height: 175px;
  position: relative;
  overflow: hidden;
}

/* ========================================================
   PHONE MOCKUP  (separate, absolutely positioned)
   ======================================================== */
.phone-mockup {
  position: absolute;
  /* Centered at the column junction (~47% of hero width) */
  left: calc(47% - 87px);   /* 87px = half of 174px phone width */
  top: 35%;
  transform: rotateX(3deg) rotateY(0deg) rotateZ(-3deg);
  width: 164px;
  z-index: 5;
  pointer-events: none;
}

.phone-frame {
  background: #181818;
  border-radius: 28px;
  padding: 4px;
  box-shadow: 5px 10px 10px rgba(0,0,0,0.1);
}

.phone-screen {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-notch {
  width: 70px;
  height: 14px;
  background: #181818;
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
  flex-shrink: 0;
}

/* Instagram-style header */
.insta-header {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  align-items: center;
  justify-content: space-between;
  padding: 7px 10px;
  background: #fff;
  flex-shrink: 0;
}

.insta-header-top-bar {
    display: flex;
}
.insta-username { font-size: 8.5px; font-weight: 700; color: var(--c-text); flex: 1; }
.insta-header-icons {
  display: flex;
  gap: 6px;
  color: var(--c-text);
}

.insta-header-meta {
    display: flex;
    align-items: center;
    padding: 15px 0 5px 0;
    gap: 10px;
}
.insta-header-profile-pic img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
}
.insta-header-meta-stats {
    display: flex;
    gap: 2px;
    font-size: 8px;
}
.insta-header-meta-stats div {
    text-align: center;
}
.insta-header-meta-stats .insta-header-stat {
    font-weight: 600;
}
.insta-header-meta-stats .insta-header-stat-label {
    font-size: 6px;
}

/* Tabs */
.insta-tabs {
  display: flex;
  background: #fff;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  flex-shrink: 0;
}
.insta-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 4px;
  color: var(--c-text-light);
}
.insta-tab--active {
  color: var(--c-text);
  border-bottom: 2px solid var(--c-text);
}

/* Photo grid */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #eee;
  flex: 1;
}
.insta-cells {
    height: 190px;
    width: 155px;
    image-rendering: pixelated;
}

/* Bottom tab bar */
.phone-tab-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px;
  background: #fff;
  border-top: 1px solid var(--c-border);
  color: var(--c-text);
  flex-shrink: 0;
}


/* ========================================================
   DECORATIVE ELEMENTS
   ======================================================== */
.deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  display: none !important;
}

/* Pink brush stroke — top left */
.deco-brush-pink-tl {
  top: -70px;
  left: -90px;
  width: 340px;
  height: 210px;
  background: var(--c-pink);
  border-radius: 58% 42% 32% 68% / 52% 62% 38% 58%;
  transform: rotate(-14deg);
  opacity: .6;
  filter: blur(2px);
}

/* Teal brush stroke — middle right */
.deco-brush-teal-mr {
  top: 5%;
  right: -70px;
  width: 210px;
  height: 320px;
  background: var(--c-teal-light);
  border-radius: 42% 58% 58% 42% / 48% 42% 58% 52%;
  transform: rotate(10deg);
  opacity: .52;
  filter: blur(3px);
}

/* Coral brush stroke — bottom right (inside hero) */
.deco-brush-coral-br {
  bottom: -50px;
  right: 4%;
  width: 240px;
  height: 150px;
  background: var(--c-pink-mid);
  border-radius: 48% 32% 68% 42% / 58% 52% 42% 52%;
  transform: rotate(12deg);
  opacity: .5;
  filter: blur(2px);
}

/* Scattered dots — top left */
.deco-dots {
  top: 28px;
  left: 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.deco-dots span {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c-text);
  opacity: .65;
}

/* Ellipse outline — bottom right of hero */
.deco-ellipse {
  bottom: -10px;
  right: 1%;
  width: 240px;
}


/* ========================================================
   TAGLINE BANNER
   ======================================================== */
.tagline-banner {
  background: var(--c-dark);
  color: #fff;
  text-align: center;
  padding: 25px var(--container-px);
}

.tagline-main {
  font-size: clamp(22px, 4.2vw, 42px);
  font-family: serif;
}

.tagline-sub {
  font-size: 12px;
  letter-spacing: .24em;
  margin-bottom: 10px;
}
.tagline-you {
  color: var(--c-gold);
  opacity: 1;
}


/* ========================================================
   WAITLIST SECTION
   ======================================================== */
.waitlist {
  position: relative;
  overflow: hidden;
  padding-block: var(--section-py);
  text-align: center;
  background: var(--c-dark);
  color: #fff;
  margin-top: -160px;
}

.waitlist-inner {
  position: relative;
  z-index: 1;
}

.waitlist-heading {
  font-size: clamp(30px, 2.8vw, 36px);
  font-weight: 700;
  letter-spacing: -.015em;
  margin-bottom: 12px;
  line-height: 1;
}

.waitlist-sub {
  font-size: 14px;
  color: var(--c-text-light);
  margin-bottom: 32px;
}

/* Form */
.waitlist-form {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 22px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1;
  max-width: 320px;
}

.input-icon {
  position: absolute;
  left: 13px;
  width: 15px;
  height: 15px;
  color: var(--c-text-light);
  pointer-events: none;
  flex-shrink: 0;
}

.form-input {
  width: 100%;
  height: 48px;
  padding: 0 14px 0 40px;
  border: none;
  font-family: inherit;
  font-size: 14px;
  color: var(--c-text);
  background: var(--c-bg);
  outline: none;
}
.form-input::placeholder { color: var(--c-text-light); }

.waitlist-form .btn {
  height: 48px;
  padding-inline: 22px;
}

.no-spam {
  font-family: cursive;
  font-size: 12px;
  color: var(--c-text-light);
}
.heart {}

/* Waitlist decorative */
.deco-blob-lavender {
  bottom: -60px;
  left: -80px;
  width: 280px;
  height: 280px;
  background: var(--c-lavender);
  border-radius: 58% 42% 32% 68% / 52% 62% 38% 58%;
  opacity: .45;
  filter: blur(4px);
}

.deco-lines-br {
  bottom: 0;
  right: 4%;
  width: 200px;
}


/* ========================================================
   RESPONSIVE — TABLET  (≤ 1024px)
   ======================================================== */
@media (max-width: 1024px) {
  :root { --container-px: 40px; }

  .hero-inner { gap: 28px; min-height: 560px; }

  .hero-heading { font-size: clamp(36px, 4.2vw, 56px); }

  /* Tighten the phone position slightly */
  .phone-mockup {
    left: calc(47% - 75px);
    width: 150px;
  }
  .phone-frame { border-radius: 28px; padding: 8px; }
  .phone-notch { width: 58px; height: 18px; }
}


/* ========================================================
   RESPONSIVE — MOBILE  (≤ 768px)
   ======================================================== */
@media (max-width: 768px) {
  :root {
    --container-px: 24px;
    --section-py:   56px;
  }

  /* Nav */
  .nav-tagline {
    position: absolute;
    top: 55px;
    right: 20px;
    color: var(--c-green);
  }

  /* Hero: single column */
  .hero { padding-block: 40px 56px; }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 0;
  }

  .hero-content { margin-bottom: 280px; }
  .hero-arrow   {
    top: 360px;
    left: 100px;
    transform: scalex(-1) rotate(35deg) scale(0.7);
  }
  .features     { text-align: left; max-width: 340px; }
  .feature-text span { font-size: 13px; }

  /* Phone: revert to in-flow positioning, centered below heading */
  .phone-mockup {
    width: 170px;
    left: 220px;
    top: 340px;
    transform: scale(0.7) rotate(3deg);
  }
  .phone-frame {
    box-shadow: 5px 10px 10px rgba(0,0,0,0.4);
  }
  .insta-cells { image-rendering: auto; }

  /* Website mockup: show below (shifted down via hero-content margin) */
  .hero-visual { z-index: 1; transform: scale(0.8) translateX(-50px);}

  /* Brush strokes: simplify */
  .deco-brush-teal-mr { display: none; }
  .deco-ellipse       { display: none; }
}


/* ========================================================
   RESPONSIVE — SMALL MOBILE  (≤ 480px)
   ======================================================== */
@media (max-width: 480px) {
  .hero-heading { font-size: 65px; font-weight: 700; }

  .hero-content { margin-bottom: 0; }

  .hero-features { position:initial; margin-top: 10px; }

  /* Stack the waitlist form */
  .waitlist-form { flex-direction: column; align-items: center; }

  .input-wrapper { max-width: 100%; width: 100%; }

  .waitlist {
    margin-top: 0;
  }
  .waitlist-form .btn {
    width: 100%;
    max-width: 100%;
  }

  .tagline-banner { padding-inline: var(--container-px); }
}
