/* =========================
   Base reset (light touch)
   ========================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

/* =========================
   Page background (atmosphere)
   ========================= */

body {
  margin: 0;
  padding: 3rem 1.5rem;
  background-color: #2b1f1f; /* emergency fallback */
  background-image: url("../wg_stained_canvas_backgrounds_5.jpg");
  background-repeat: repeat;
  font-family:
    Georgia,
    "Iowan Old Style",
    "Times New Roman",
    serif;
  line-height: 1.6;
}

/* =========================
   Central gallery wall
   ========================= */

.page {
  max-width: 72rem;
  margin: 0 auto;
  padding: 3rem 3rem 2.5rem;
  background-color: rgba(247, 242, 225, 0.97);
    color: #2b2b2b;
  border-radius: 12px;
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,0.04),
    0 0 30px rgba(0,0,0,0.08);
}

.page-nav {
  display: flex;
  justify-content: center;
  margin: 3rem 0 2rem;
}

.page-nav a {
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: #7b0000;          /* same oxblood as main nav */
  border-bottom: none;
  padding: 0.2rem 0.4rem;
}

.page-nav a:hover {
  background-color: #dbeaf2;
  color: #000;
}

.appearance-list {
  font-size: 1.35rem;
  line-height: 1.7;
  max-width: 42rem;
  margin: 0 auto;
  padding-left: 1.5rem;
}

.appearance-list li {
  margin-bottom: 0.6rem;
}

/* =========================
   Typography
   ========================= */

h1,
h2,
h3 {
  font-weight: normal;
  letter-spacing: 0.02em;
  margin: 2.5rem 0 1rem;
}

p {
  margin: 0 0 1.25rem;
  max-width: 42rem;
}

/* =========================
   Header
   ========================= */

.site-header {
  text-align: center;
  margin: 1rem 0 2rem;
}

.site-title {
  /* font-size: 3.5rem; */
  font-size: 5rem;
  margin: 0;
}

/* =========================
   Banner image
   ========================= */

.banner {
  margin: 2.5rem auto 4.5rem; /* breathing room */
  text-align: center;
}

.banner img,
.artwork img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
    box-shadow:
    0 0 0 1px rgba(0,0,0,0.08),
    12px 14px 18px rgba(123, 0, 0, 0.45);
}

/* =========================
   Navigation
   ========================= */

.site-nav {
  max-width: 40rem;
  margin: 0 auto 3rem;
  display: flex;
  gap: 3rem;
}

.site-nav .nav-group {
  flex: 1;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

/* Lists */

.nav-list {
  list-style: none;
  padding-left: 1.4rem;
  margin: 0;
}

.nav-list li {
  position: relative;
  margin-bottom: 0.35rem;
  line-height: 1.15;              
}

.nav-list li::before {
  content: "-";                  /* or "■" etc */
  position: absolute;
  left: -1.2rem;

  top: 50%;
  transform: translateY(-50%);   /* <-- vertical centering */

  font-size: 1.5em;
  color: #7b0000; 
}

.nav-list a {
  position: relative;
  padding-left: 1.4em;   /* space for icon */
}

/* Social icon row */

/* Social icons added via pseudo-elements — no HTML changes */


.social-icons {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.2rem;
  margin-top: 0.85rem;
}

.social-icons li {
  margin: 0;
}

.social-icons a {
  display: block;
  width: 1.35em;
  height: 1.35em;
  text-indent: -9999px;
  overflow: hidden;
  position: relative;
}

.social-icons a::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.85;
}

/* platform icons */
.social-icons a[href*="facebook.com"]::before {
  background-image: url("facebook.svg");
}

.social-icons a[href*="linkedin.com"]::before {
  background-image: url("linkedin.svg");
}

.social-icons a[href*="x.com"]::before {
  background-image: url("x.svg");
}

.social-icons a:hover::before {
  opacity: 1;
}

/* --- Navigation links (gallery labels) --- */

.site-nav a {
  color: #7b0000;          /* oxblood */
  font-size: 2rem;         /* matches old <font size=6> */
  line-height: 1.6;
  letter-spacing: 0.02em;
  display: inline-block;
  padding: 0.15rem 0.3rem;
  border-bottom: none;
}

.site-nav a:hover {
  background-color: #dbeaf2;
  color: #000;
}

.resume-section {
  max-width: 44rem;
  margin: 3rem auto;
}

.resume-section h2 {
  margin-top: 3rem;
}

.resume-location,
.resume-links {
  margin: 0.5rem auto 0;
  font-size: 1.15rem;
  text-align: center;
  max-width: none;      /* undo global p max-width */
  width: 100%;          /* make it span the page block */
}

.resume-links a {
  color: #7b0000;
}


/* =========================
   Global links (body text)
   ========================= */

a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  transition: background-color 0.2s ease, color 0.2s ease;
}

a:hover {
  background-color: #dbeaf2;
  color: #000;
}

/* =========================
   Artist statement
   ========================= */

.artist-statement {
  display: flex;
  justify-content: center;
  margin: 3rem 0 1rem;
}

.statement-body {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 1.5rem;     /* raised to meet nav authority */
  line-height: 1.7;
  max-width: 42rem;
}

.artwork {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 3rem auto;
  text-align: center;
}

.hidden {
  display: none;
}

.artwork::after {
  content: attr(data-title);
  display: block;
  margin-top: 0.75rem;
  font-size: 1.5rem;
  line-height: 1.4;
  font-style: italic;
  letter-spacing: 0.03em;
  color: #4a3b2f; /* warm umber, Rothko-adjacent */
}

.artwork[data-media-display]:not([data-media-display=""])::after {
  content: attr(data-title) " - " attr(data-media-display);
}

.artwork[data-dimensions]:not([data-dimensions=""])::after {
  content: attr(data-title) " (" attr(data-dimensions) ")";
}

.artwork[data-media-display]:not([data-media-display=""])[data-dimensions]:not([data-dimensions=""])::after {
  content: attr(data-title) " - " attr(data-media-display) " (" attr(data-dimensions) ")";
}


/* =========================
   Footer
   ========================= */

.site-footer {
  text-align: center;
}

.site-footer p {
  max-width: none;     /* remove the body constraint */
  margin: 0;           /* reset margins */
  text-align: center;
}

/* =========================
   Separators
   ========================= */

hr {
  border: none;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.25);
  margin: 1rem 0;
}

.divider {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 600px) {
  body {
    padding: 2rem 1rem;
  }

  .page {
    padding: 2rem 1.5rem;
  }

  .site-nav {
    flex-direction: column;
  }

  .site-nav a {
    font-size: 1.75rem;
  }
}
