/* ==========================================================
   AMY CRITCHETT — Stylesheet
   To edit: find the section below you want to change.
   Colors are in :root at the top.
   ========================================================== */

:root {
  --olive: #bada55;       /* BE*CAUSE section green */
  --black: #000000;
  --white: #ffffff;
  --nav-h: 110px;         /* header height */
}

/* --- Base reset ------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: Arial, "MS PGothic", sans-serif;
  font-size: 18px;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; }

/* ==========================================================
   HEADER / NAV
   ========================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: #fff;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
}

/* Logo */
.logo a {
  display: block;
  text-align: center;
  line-height: 1.25;
}
.logo span {
  display: block;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}
.logo .star-line {
  letter-spacing: 0;
  font-size: 18px;
}

/* Nav links */
.site-nav {
  list-style: none;
  display: flex;
  gap: 30px;
}
.site-nav > li {
  display: flex;
  align-items: center;
  height: var(--nav-h); /* fill header height so dropdown aligns to bottom edge */
}
.site-nav a {
  font-family: Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--black);
  transition: opacity 0.2s;
}
.site-nav a:hover,
.site-nav a.active { opacity: 0.5; }

/* Dropdown indicator */
.has-dropdown > a::after {
  content: " ▾";
  font-size: 10px;
  vertical-align: middle;
  opacity: 0.5;
}

/* Dropdown menu */
.has-dropdown {
  position: relative;
}
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  list-style: none;
  min-width: 180px;
  border: 2px solid var(--black);
  border-top: none;
  z-index: 300;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}
.has-dropdown:hover .dropdown {
  display: block;
}
.dropdown li a {
  display: block;
  padding: 13px 20px;
  font-family: Arial, sans-serif;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--black);
  border-bottom: 1px solid #ebebeb;
  transition: background 0.15s;
  opacity: 1;
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover {
  background: var(--olive);
  opacity: 1;
}

/* Mobile hamburger (hidden on desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
}

/* Push content below fixed header */
main { padding-top: var(--nav-h); }

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 28px 52px;
  font-size: 14px;
  color: #aaa;
  background: var(--black);
}
.site-footer span { text-align: left; }
.site-footer .footer-center { text-align: center; }
.site-footer .footer-right { text-align: right; }
.site-footer a {
  color: #aaa;
  transition: color 0.2s;
}
.site-footer a:hover { color: var(--white); }

/* ==========================================================
   HOME — HERO
   ========================================================== */
.hero {
  position: relative;
  height: calc(100vh - var(--nav-h));
  min-height: 500px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://static.wixstatic.com/media/b61598_b00e885a997942d3ae113cdf99a24580~mv2.jpg');
  background-size: cover;
  background-position: center;
}
.hero-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 28px 24px;
  width: 32vw;
  min-width: 260px;
}
.hero-card h1 {
  font-family: "Arial Black", Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(44px, 7.75vw, 110px);
  line-height: 0.87;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  word-break: break-word;
}

/* ==========================================================
   HOME — ARTWORK STRIP
   ========================================================== */
.art-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 380px;
}
.art-item {
  position: relative;
  overflow: hidden;
}
.art-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.art-item:hover img { transform: scale(1.05); }
/* --- Shared image label style — edit here to update site-wide --- */
figcaption {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
  background: #fff;
  padding: 6px 12px;
  text-align: center;
  max-width: 90%;
}

.art-item figcaption {
  /* inherits shared figcaption style above */
}

/* ==========================================================
   HOME — BE*CAUSE SECTION
   ========================================================== */
.becauses {
  background: var(--olive);
  padding: 80px 40px;
  text-align: center;
}
.becauses-heading {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 40px;
}
.bc-line {
  display: block;
  text-align: center;
}
.bc-star {
  display: block;
  text-align: center;
  letter-spacing: 0.55em;
  line-height: 1.2;
  margin-bottom: -0.2em;
}
.becauses p {
  max-width: 700px;
  margin: 0 auto 16px;
  font-size: 18px;
  line-height: 1.4;
}

/* ==========================================================
   THE WHY
   ========================================================== */
.why-photo {
  display: block;
  width: min(600px, 88%);
  margin: 60px auto 0;
  position: relative;
  overflow: hidden;
}
.why-photo img { width: 100%; height: auto; }

.why-text {
  max-width: 740px;
  margin: 0 auto;
  padding: 48px 40px 80px;
}
.why-text h2 {
  font-size: 17px;
  font-weight: 700;
  margin: 34px 0 8px;
}
.why-text p {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 18px;
}

/* ==========================================================
   PROGRESSIVE PRACTICE
   ========================================================== */
.prog-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 500px;
}
.prog-strip-item {
  position: relative;
  overflow: hidden;
}
.prog-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prog-strip-item figcaption {
  /* inherits shared figcaption style above */
}

.prog-text {
  max-width: 840px;
  margin: 0 auto;
  padding: 64px 40px 80px;
}
.prog-text > h2 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 50px;
}
.prog-act { margin-bottom: 40px; }
.prog-act h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.prog-act p {
  font-size: 18px;
  line-height: 1.4;
}

/* ==========================================================
   THE WORK
   ========================================================== */
.work-page {
  min-height: calc(100vh - var(--nav-h));
  background-image: url('https://static.wixstatic.com/media/b61598_6d3b602582af402a891dc924dc6ece81~mv2.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  gap: 50px;
}
.work-cards {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
}
.work-card {
  position: relative;
  width: 290px;
  height: 450px;
  overflow: hidden;
}
.work-card a {
  display: block;
  width: 100%;
  height: 100%;
}
.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.work-card:hover img { transform: scale(1.04); }
.work-card figcaption {
  z-index: 2;
}
.work-tagline {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  color: #000;
  background: #fff;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  align-self: flex-start;
}

/* ==========================================================
   SITUATION SPECIFIC
   ========================================================== */
.situation-text {
  max-width: 840px;
  margin: 0 auto;
  padding: 60px 40px 48px;
}
.situation-text h1 {
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.situation-text p {
  font-size: 18px;
  line-height: 1.4;
}

.situation-gallery {
  max-width: 940px;
  margin: 0 auto;
  padding: 0 40px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.situation-gallery img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}
.situation-gallery .tall {
  height: 560px;
}
.situation-gallery .full {
  grid-column: span 2;
  height: 260px;
}

/* ==========================================================
   THE SHOP
   ========================================================== */
.shop-text {
  max-width: 840px;
  margin: 0 auto;
  padding: 60px 40px 80px;
}
.shop-text h1 {
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 36px;
}
.shop-text p {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 24px;
}
.shop-text a {
  font-weight: 700;
  text-decoration: underline;
}

.poem-divider {
  text-align: center;
  font-size: 22px;
  color: #aaa;
  margin: 44px 0;
}
.poem h2 {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 6px;
}
.poem .poem-sub {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 40px;
  display: block;
}
.poem p {
  font-size: 18px;
  line-height: 2;
  margin-bottom: 24px;
}

/* ==========================================================
   SHOP TEST PAGE
   ========================================================== */

/* Banner at top of test page */
.test-banner {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Shop intro / hero */
.shop-hero {
  background: var(--olive);
  padding: 70px 52px 60px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.shop-hero h1 {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(36px, 7vw, 90px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.02em;
}
.shop-hero p {
  max-width: 320px;
  font-size: 15px;
  line-height: 1.4;
  flex-shrink: 0;
}

/* Collection heading */
.collection-heading {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 60px 52px 32px;
  border-bottom: 2px solid var(--black);
  margin-bottom: 40px;
}
.collection-heading h2 {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(20px, 3.5vw, 36px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.collection-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--white);
  padding: 4px 10px;
  white-space: nowrap;
}
.collection-badge.contrado { background: #333; }
.collection-badge.printify { background: #1a1a7e; }
.collection-badge.original { background: var(--olive); color: var(--black); }

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
  padding: 0 52px 70px;
}

/* Product card */
.product-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.product-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: #f2f2f2;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.product-card:hover .product-card-img img {
  transform: scale(1.05);
}
.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--olive);
  color: var(--black);
  padding: 3px 8px;
}
.sold-tag {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.1em;
}

.product-info {
  padding: 14px 0 0;
}
.product-name {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.product-type {
  font-size: 12px;
  color: #777;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.product-price {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 14px;
}
.btn-buy {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 2px solid var(--black);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-align: center;
  width: 100%;
}
.btn-buy:hover {
  background: var(--olive);
  color: var(--black);
  border-color: var(--olive);
}
.btn-buy.sold {
  background: #ccc;
  border-color: #ccc;
  color: #fff;
  cursor: not-allowed;
}
.btn-buy.external::after {
  content: " →";
}

/* Divider between sections */
.section-divider {
  margin: 0 52px;
  border: none;
  border-top: 1px solid #e0e0e0;
}

/* Shop CTA at bottom */
.shop-cta {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 70px 40px;
}
.shop-cta h2 {
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}
.shop-cta p {
  font-size: 18px;
  line-height: 1.4;
  max-width: 500px;
  margin: 0 auto 36px;
  color: #ccc;
}
.btn-cta {
  display: inline-block;
  background: var(--olive);
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 36px;
  transition: opacity 0.2s;
}
.btn-cta:hover { opacity: 0.85; }

/* Responsive shop */
@media (max-width: 800px) {
  .shop-hero,
  .collection-heading,
  .product-grid,
  .section-divider { padding-left: 20px; padding-right: 20px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
}

/* ==========================================================
   RESPONSIVE — MOBILE
   ========================================================== */
@media (max-width: 800px) {
  :root { --nav-h: 80px; }

  .site-header { padding: 0 20px; }

  /* Smaller logo on mobile */
  .logo span { font-size: 14px; letter-spacing: 0.2em; }
  .logo .star-line { font-size: 13px; }

  /* Show hamburger, hide nav by default */
  .site-nav {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px 24px;
    gap: 0;
    border-bottom: 1px solid #e8e8e8;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  }
  .site-nav.open { display: flex; }
  .hamburger { display: flex; }

  /* Mobile: nav items full-height reset */
  .site-nav > li {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px solid #f0f0f0;
    padding: 14px 0;
  }
  .site-nav > li:last-child { border-bottom: none; }

  /* Mobile: dropdown appears inline, indented */
  .dropdown {
    position: static;
    display: none;
    border: none;
    border-left: 3px solid var(--olive);
    box-shadow: none;
    min-width: 0;
    margin-top: 10px;
    padding-left: 4px;
  }
  .has-dropdown.open .dropdown { display: block; }
  .dropdown li a {
    padding: 9px 16px;
    font-size: 14px;
    border-bottom: none;
  }
  .has-dropdown > a::after { content: " ▾"; }
  .has-dropdown.open > a::after { content: " ▴"; }

  /* Hero */
  .hero-card {
    width: 84vw;
    padding: 22px 24px;
  }

  /* Art strip — 2 col */
  .art-strip {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }
  .art-item { height: 200px; }
  .art-item:first-child { grid-column: span 2; }

  /* Prog strip — 2 col */
  .prog-strip {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }
  .prog-strip-item { height: 220px; }

  /* Work cards — stack */
  .work-cards { flex-direction: column; align-items: center; }

  /* Situation gallery — single col */
  .situation-gallery {
    grid-template-columns: 1fr;
  }
  .situation-gallery .tall,
  .situation-gallery .full {
    grid-column: span 1;
    height: 280px;
  }

  /* Footer */
  .site-footer {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
    padding: 24px 20px;
  }
  .site-footer span,
  .site-footer .footer-center,
  .site-footer .footer-right { text-align: center; }

  /* Text section padding */
  .why-text,
  .prog-text,
  .situation-text,
  .shop-text { padding-left: 20px; padding-right: 20px; }

  /* Figcaption — smaller on mobile for long captions */
  figcaption { font-size: 10px; padding: 4px 8px; }

  /* Bio page */
  .bio-page { padding-left: 20px; padding-right: 20px; }
}
