/* ============================================================
   BENCH Art Project — Global Styles
   Font: EB Garamond (matches Adobe Garamond Pro used on site)
   Colors: #7D2935 burgundy · #E9D694 yellow
   ============================================================ */

/* ---------- Google Font: EB Garamond (closest to Adobe Garamond Pro) ---------- */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700;1,800&display=swap');

/* ---------- Variables ---------- */
:root {
  --burgundy:      #7D2935;
  --burgundy-dark: #5C1E28;
  --yellow:        #E9D694;
  --yellow-light:  #EDD99A;
  --olive:         #BDB76B;
  --brown:         #4F2C21;
  --black:         #1A1716;
  --white:         #FFFCF8;

  --font:          'EB Garamond', 'Adobe Garamond Pro', Georgia, serif;
  --nav-height:    70px;
  --max-width:     1200px;
  --transition:    0.22s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  color: var(--black);
  background: var(--white);
}
img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: var(--burgundy-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--white);
  font-family: var(--font);
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  opacity: 0.9;
  transition: opacity var(--transition);
}
.nav-links a:hover   { opacity: 1; }
.nav-links a.active  { text-decoration: underline; text-underline-offset: 4px; opacity: 1; }

/* Nav button style for Store, Artists, Services, Projects */
.nav-links a.nav-btn {
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 3px;
  padding: 4px 14px;
  opacity: 1;
  transition: background var(--transition), opacity var(--transition);
}
.nav-links a.nav-btn:hover {
  background: rgba(255,255,255,0.15);
  opacity: 1;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Page wrapper ---------- */
.page { padding-top: var(--nav-height); }

/* ---------- Hero ---------- */
.hero {
  width: 100%;
  min-height: calc(100vh - var(--nav-height));
  background-image: url('../Materials/Home/Screenshot 2025-03-26 at 23.57.19.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ---------- Join Community Section ---------- */
.join-section {
  background: var(--yellow);
  padding: 90px 48px 80px;
}
.join-inner {
  max-width: 640px;
  margin: 0 auto;
}

.join-inner h2 {
  font-family: var(--font);
  font-weight: 400;
  font-style: normal;
  font-size: 3rem;
  color: var(--burgundy);
  margin-bottom: 52px;
  line-height: 1.4;
  letter-spacing: 0;
}

/* Form fields */
.form-field {
  margin-bottom: 32px;
}
.form-field-label {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}
.form-field-label .label-text {
  font-family: var(--font);
  font-weight: 400;
  font-style: normal;
  font-size: 1.875rem;
  color: var(--burgundy);
  line-height: 1.4;
  letter-spacing: 0;
}
.form-field-label .label-req {
  font-family: var(--font);
  font-weight: 400;
  font-size: 1rem;
  color: var(--burgundy);
  opacity: 0.75;
  font-style: normal;
  letter-spacing: 0;
}
.form-field input[type="text"],
.form-field input[type="email"] {
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--burgundy);
  background: transparent;
  font-family: var(--font);
  font-weight: 300;
  font-size: 1rem;
  color: var(--burgundy);
  padding: 6px 0;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-field input::placeholder { color: transparent; }
.form-field input:focus { border-bottom-color: var(--burgundy-dark); }

/* Checkbox row */
.form-check {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
}
.form-check input[type="checkbox"] {
  width: 15px;
  height: 15px;
  border: 1.5px solid var(--burgundy);
  background: transparent;
  border-radius: 2px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.form-check input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 3px; top: 0px;
  width: 5px; height: 9px;
  border: 2px solid var(--burgundy);
  border-top: none; border-left: none;
  transform: rotate(45deg);
}
.form-check label {
  font-family: var(--font);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--burgundy);
  cursor: pointer;
}

/* Submit button */
.btn-submit {
  display: inline-block;
  background: var(--burgundy-dark);
  color: var(--white);
  font-family: var(--font);
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.04em;
  padding: 15px 48px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: opacity var(--transition);
}
.btn-submit:hover { opacity: 0.85; }

/* Privacy text */
.privacy-text {
  margin-top: 36px;
  font-family: var(--font);
  font-weight: 300;
  font-size: 0.82rem;
  color: var(--burgundy);
  line-height: 1.65;
  opacity: 0.9;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--yellow);
  border-top: 1px solid rgba(125, 41, 53, 0.12);
  padding: 48px 56px 40px;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 0;
}
.footer-brand {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 28px;
}
.footer-email {
  font-family: var(--font);
  font-style: italic;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--burgundy);
  letter-spacing: 0;
  line-height: 1.4;
}
.footer-logo-img {
  height: 28px;
  width: auto;
  display: block;
  margin-top: 10px;
  align-self: flex-start;
}
.footer-social {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-top: 4px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--white);
  transition: opacity var(--transition);
  flex-shrink: 0;
}
.footer-social a:hover { opacity: 0.75; }
.footer-social svg { width: 20px; height: 20px; fill: currentColor; }

.footer-bottom {
  grid-column: 2;
  grid-row: 2;
  text-align: right;
  font-family: var(--font);
  font-weight: 400;
  font-size: 1rem;
  color: var(--burgundy);
  padding-top: 12px;
  letter-spacing: 0;
}

/* ---------- About page ---------- */
.about-hero-section {
  background: var(--white);
  padding: 80px 48px;
}
.about-hero-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.about-hero-grid h1 {
  font-family: var(--font);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--burgundy);
  margin-bottom: 28px;
  line-height: 1.2;
}
.about-hero-grid p {
  font-family: var(--font);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--black);
  line-height: 1.7;
}
.about-img {
  width: 100%;
  object-fit: cover;
  border-radius: 3px;
}

.about-focus-section {
  background: var(--white);
  padding: 0 48px 80px;
}
.about-focus-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.focus-heading {
  font-family: var(--font);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--burgundy);
  margin-bottom: 28px;
}
.focus-item {
  margin-bottom: 20px;
  font-family: var(--font);
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--black);
}
.focus-item strong {
  font-weight: 600;
  color: var(--burgundy);
}

.about-bio-section {
  background: var(--yellow);
  padding: 80px 48px;
}
.about-bio-inner {
  max-width: 720px;
  margin: 0 auto;
}
.about-bio-inner h2 {
  font-family: var(--font);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--burgundy);
  margin-bottom: 28px;
}
.about-bio-inner p {
  font-family: var(--font);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--burgundy);
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* ---------- Shop ---------- */
.shop-header {
  background: var(--burgundy-dark);
  padding: 60px 48px 50px;
  text-align: center;
}
.shop-header h1 {
  font-family: var(--font);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
}
.shop-header p {
  font-family: var(--font);
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  margin-top: 10px;
  font-size: 0.95rem;
}
.shop-grid {
  max-width: var(--max-width);
  margin: 60px auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 36px;
}
.art-card {
  cursor: pointer;
  border-radius: 3px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}
.art-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.13);
}
.art-card-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--yellow);
}
.art-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.art-card:hover .art-card-image img { transform: scale(1.04); }
.art-card-info { padding: 16px 18px 20px; }
.art-card-artist {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--burgundy);
  opacity: 0.65;
  margin-bottom: 4px;
}
.art-card-title {
  font-family: var(--font);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--burgundy);
  margin-bottom: 4px;
}
.art-card-medium {
  font-size: 0.78rem;
  color: var(--black);
  opacity: 0.55;
  margin-bottom: 8px;
  font-weight: 300;
}
.art-card-price {
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--burgundy);
  font-weight: 600;
}

/* ---------- Modal ---------- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(26,23,22,0.65);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white);
  border-radius: 6px;
  max-width: 860px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  animation: modal-in 0.28s ease;
}
@keyframes modal-in {
  from { opacity: 0; transform: scale(0.96) translateY(10px); }
  to   { opacity: 1; transform: none; }
}
.modal-close {
  position: absolute;
  top: 14px; right: 18px;
  font-size: 1.4rem;
  color: var(--burgundy);
  opacity: 0.6;
  z-index: 10;
  transition: opacity var(--transition);
  line-height: 1;
  cursor: pointer;
}
.modal-close:hover { opacity: 1; }
.modal-image {
  background: var(--yellow);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-image img { width: 100%; height: 100%; object-fit: cover; }
.modal-details {
  padding: 48px 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.modal-artist { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--burgundy); opacity: 0.6; margin-bottom: 8px; }
.modal-title  { font-family: var(--font); font-style: italic; font-size: 1.7rem; color: var(--burgundy); margin-bottom: 4px; line-height: 1.2; }
.modal-year   { font-size: 0.82rem; color: var(--black); opacity: 0.45; margin-bottom: 18px; font-weight: 300; }
.modal-description { font-size: 0.88rem; line-height: 1.75; color: var(--black); opacity: 0.78; margin-bottom: 20px; font-weight: 300; }
.modal-meta   { font-size: 0.8rem; color: var(--burgundy); opacity: 0.6; margin-bottom: 24px; display: flex; flex-direction: column; gap: 3px; font-weight: 300; }
.modal-price  { font-family: var(--font); font-size: 1.5rem; color: var(--burgundy); font-weight: 600; margin-bottom: 20px; }
.modal-actions { display: flex; flex-direction: column; gap: 10px; }
.btn-buy {
  background: var(--burgundy-dark);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  padding: 13px 28px;
  border-radius: 50px;
  text-align: center;
  width: 100%;
  transition: opacity var(--transition);
  cursor: pointer;
  border: none;
}
.btn-buy:hover { opacity: 0.82; }
.btn-inquire {
  display: block;
  background: transparent;
  color: var(--burgundy);
  font-family: var(--font);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  padding: 11px 28px;
  border-radius: 50px;
  border: 1.5px solid rgba(125,41,53,0.35);
  text-align: center;
  width: 100%;
  transition: border-color var(--transition);
}
.btn-inquire:hover { border-color: var(--burgundy); }

/* ---------- Contact ---------- */
.contact-section { background: var(--white); padding: 80px 48px; }
.contact-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
}
.contact-heading {
  font-family: var(--font);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--burgundy);
  margin-bottom: 20px;
}
.contact-email-link {
  display: inline-block;
  font-family: var(--font);
  font-style: italic;
  font-size: 1rem;
  color: var(--burgundy);
  margin-top: 20px;
}

/* ---------- Shared buttons ---------- */
.btn-primary {
  display: inline-block;
  background: var(--burgundy-dark);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.95rem;
  padding: 13px 40px;
  border-radius: 50px;
  transition: opacity var(--transition);
  border: none;
  cursor: pointer;
}
.btn-primary:hover { opacity: 0.82; }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--burgundy);
  font-family: var(--font);
  font-size: 0.92rem;
  padding: 11px 36px;
  border-radius: 50px;
  border: 1.5px solid var(--burgundy);
  transition: background var(--transition), color var(--transition);
}
.btn-secondary:hover { background: var(--burgundy); color: var(--white); }

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height); left: 0; right: 0;
    background: var(--burgundy-dark);
    flex-direction: column;
    padding: 20px 28px 28px;
    gap: 18px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .join-section { padding: 70px 24px; }
  .footer { padding: 36px 24px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-social { justify-content: flex-start; }

  .about-hero-grid,
  .about-focus-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .modal { grid-template-columns: 1fr; }
  .modal-image { min-height: 260px; }
  .modal-details { padding: 28px 22px; }

  .shop-grid { padding: 0 20px; gap: 22px; margin: 36px auto; }
}
