/*
Theme Name: A Night to Sparkle
Theme URI: https://anighttosparkle.com
Author: Young Media
Description: A Night to Sparkle - Charity Art Auction for Help Fill a Dream Foundation
Version: 1.1.6
License: GNU General Public License v2 or later
Text Domain: nighttosparkle
*/

:root {
  --gold: #D4A574;
  --gd: #B89460;
  --black: #0A0A0A;
  --cream: #FAF9F6;
  --gray: #6B6B6B;
  --navy: #0D1B2A;
  --white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  background: var(--black);
  color: var(--cream);
  line-height: 1.6;
  font-size: 18px;
}

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

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

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
}

.label-text {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
}

/* =====================================================
   NAVIGATION
   ===================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(212, 165, 116, 0.2);
  transition: background 0.3s;
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.97);
}

.header-logo img {
  height: 56px;
  width: auto;
}
.main-nav {
  display: none;
}

.main-nav.open {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.97);
  padding: 20px 24px;
  z-index: 999;
}

.main-nav.open ul {
  flex-direction: column;
  gap: 16px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
  align-items: center;
}

.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 500;
  transition: color 0.2s;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.nav-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 10px 24px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  cursor: pointer;
  transition: all 0.2s;
}

.nav-btn:hover {
  background: var(--gold);
  color: var(--black);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
}

/* =====================================================
   HERO SECTION — PHOTO / VIDEO BACKGROUND
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  /* Fallback background color if no image/video set */
  background: var(--navy);
}

/* Hero background stars canvas — must be absolute so it does not push hero-content in flexbox */
.hero-bg-stars {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none !important;
}

/* ---- Photo background ---- */
.hero-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  display: block;
}

/* ---- Video background ---- */
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  display: block;
}

/* ---- Dark overlay so text stays readable ---- */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Gradient: darker at top/bottom, lighter in center */
  background: linear-gradient(to bottom,
      rgba(10, 10, 10, 0.55) 0%,
      rgba(10, 10, 10, 0.35) 40%,
      rgba(10, 10, 10, 0.45) 70%,
      rgba(10, 10, 10, 0.75) 100%);
}

/* Stars layer (shown when no image/video set, hidden otherwise) */
.hero-stars {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(212, 165, 116, 0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 50%, rgba(255, 255, 255, 0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 10%, rgba(212, 165, 116, 0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 70%, rgba(255, 255, 255, 0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 30%, rgba(212, 165, 116, 0.4) 0%, transparent 100%),
    radial-gradient(2px 2px at 20% 80%, rgba(255, 255, 255, 0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 90%, rgba(212, 165, 116, 0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 45% 60%, rgba(255, 255, 255, 0.25) 0%, transparent 100%);
  /* Hidden when photo/video is active */
  transition: opacity 0.5s;
}

.hero.has-bg .hero-stars {
  opacity: 0;
  pointer-events: none;
}

/* ---- Hero content sits above all layers ---- */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
}

.hero-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 20px;
}

.hero-logo {
  margin: 0 auto 28px;
  max-width: 280px;
}

.hero-logo img {
  width: 100%;
  height: auto;
}

.hero-super {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-date {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 249, 246, 0.8);
  margin-bottom: 40px;
}

.hero-btn-wrap {
  position: relative;
  display: inline-block;
}

.btn-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 18px 52px;
  background: var(--gold);
  color: var(--black);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gd);
}

.coming-soon-stamp {
  position: absolute;
  top: -20px;
  right: -30px;
  width: 90px;
  transform: rotate(12deg);
  pointer-events: none;
}

/* =====================================================
   FEATURES / 3-CARD SECTION
   ===================================================== */
.features {
  background: var(--black);
  padding: 80px 48px;
}

.features h2.section-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 16px;
}

.features .section-sub {
  text-align: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 52px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.feat-card {
  background: #141414;
  border: 1px solid rgba(212, 165, 116, 0.15);
  overflow: hidden;
  transition: border-color 0.2s;
}

.feat-card:hover {
  border-color: rgba(212, 165, 116, 0.4);
}

.feat-img-wrap {
  height: 220px;
  overflow: hidden;
}

.feat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.feat-card:hover .feat-img {
  transform: scale(1.04);
}

.feat-body {
  padding: 28px 24px 32px;
}

.feat-date {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.feat-title {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 14px;
}

.feat-desc {
  font-size: 0.95rem;
  color: rgba(250, 249, 246, 0.7);
  line-height: 1.7;
}

/* =====================================================
   EDITORIAL
   ===================================================== */
.editorial {
  background: var(--cream);
  color: var(--black);
  padding: 96px 48px;
  text-align: center;
}

.editorial-inner {
  max-width: 760px;
  margin: 0 auto;
}

.editorial .section-label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gd);
  margin-bottom: 24px;
}

.editorial h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 28px;
}

.editorial p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 16px;
}
/* Editorial two-column with image */
.editorial-inner.editorial-with-image {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  text-align: left;
}

.editorial-img-wrap {
  flex: 0 0 420px;
  max-width: 420px;
  min-width: 0;
}

.editorial-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

.editorial-text {
  flex: 1;
  min-width: 0;
}

.editorial-inner.editorial-with-image h2,
.editorial-inner.editorial-with-image .section-label,
.editorial-inner.editorial-with-image p {
  text-align: left;
}

@media (max-width: 768px) {
  .editorial-inner.editorial-with-image {
    flex-direction: column !important;
    gap: 32px;
    text-align: center;
  }
  .editorial-img-wrap {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
  }
  .editorial-img {
    height: 280px;
  }
  .editorial-inner.editorial-with-image h2,
  .editorial-inner.editorial-with-image .section-label,
  .editorial-inner.editorial-with-image p {
    text-align: center;
  }
}



/* Editorial two-column with video (video LEFT 1/4, text RIGHT 3/4) */
.editorial-inner.editorial-with-video {
  display: flex !important;
  flex-direction: row;
  align-items: flex-start;
  gap: 48px;
  max-width: 1200px;
  text-align: left;
}

.editorial-video-wrap {
  flex: 0 0 25%;
  max-width: 25%;
  min-width: 0;
}

.editorial-video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

.editorial-inner.editorial-with-video .editorial-text {
  flex: 0 0 calc(75% - 48px);
  max-width: calc(75% - 48px);
  min-width: 0;
  padding-top: 12px;
}

.editorial-inner.editorial-with-video h2,
.editorial-inner.editorial-with-video .section-label,
.editorial-inner.editorial-with-video p {
  text-align: left;
}

@media (max-width: 768px) {
  .editorial-inner.editorial-with-video {
    flex-direction: column !important;
    gap: 32px;
    text-align: center;
  }
  .editorial-video-wrap {
    flex: 0 0 auto;
    max-width: 60%;
    width: 60%;
    margin: 0 auto;
  }
  .editorial-inner.editorial-with-video .editorial-text {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
    padding-top: 0;
  }
  .editorial-inner.editorial-with-video h2,
  .editorial-inner.editorial-with-video .section-label,
  .editorial-inner.editorial-with-video p {
    text-align: center;
  }
}

/* =====================================================
   40 YEARS / SLIDESHOW
   ===================================================== */
.forty-years {
  background: var(--black);
  padding: 96px 48px;
}

.forty-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.forty-text .section-label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.forty-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 24px;
  line-height: 1.2;
}

.forty-text h2 em {
  font-style: italic;
  color: var(--gold);
}

.forty-text p {
  font-size: 1rem;
  color: rgba(250, 249, 246, 0.75);
  line-height: 1.8;
  margin-bottom: 16px;
}

.forty-text .gold-line {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 24px;
}

/* Forty-years section: optional left image (3-col: img | text | slideshow) */
.forty-inner.forty-has-img {
  grid-template-columns: 1fr 1fr;
}

.forty-img-wrap {
  min-width: 0;
}

.forty-img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  max-height: 500px;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

@media (max-width: 900px) {
  .forty-inner.forty-has-img {
    grid-template-columns: 1fr 1fr;
  }
  .forty-img-wrap {
    grid-column: 1 / -1;
  }
  .forty-img {
    max-height: 280px;
    min-height: unset;
  }
}

@media (max-width: 600px) {
  .forty-inner.forty-has-img {
    grid-template-columns: 1fr;
  }
}


.slideshow-wrap {
  position: relative;
  height: 480px;
  overflow: hidden;
  border: 1px solid rgba(212, 165, 116, 0.2);
}

.slideshow-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.slideshow-wrap img.on {
  opacity: 1;
}

/* =====================================================
   HFAD SECTION
   ===================================================== */
.hfad-section {
  background: var(--navy);
  padding: 96px 48px;
}

.hfad-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.hfad-img-wrap {
  overflow: hidden;
  border: 1px solid rgba(212, 165, 116, 0.2);
}

.hfad-img-wrap a {
  display: block;
  overflow: hidden;
}

.hfad-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.4s;
}

.hfad-img-wrap a:hover img {
  transform: scale(1.04);
}

.hfad-text .section-label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hfad-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 24px;
}

.hfad-text h2 em {
  font-style: italic;
  color: var(--gold);
}

.hfad-text p {
  font-size: 1rem;
  color: rgba(250, 249, 246, 0.75);
  line-height: 1.8;
  margin-bottom: 16px;
}

.hfad-text .gold-line {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 24px;
}

.hfad-text .btn-secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 14px 36px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  cursor: pointer;
  display: inline-block;
  margin-top: 8px;
  transition: all 0.2s;
}

.hfad-text .btn-secondary:hover {
  background: var(--gold);
  color: var(--black);
}

/* =====================================================
   ARTISTS GRID
   ===================================================== */
.artists-section {
  background: var(--black);
  padding: 96px 48px;
}

.artists-section .section-header {
  text-align: center;
  margin-bottom: 56px;
}

.artists-section .section-label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.artists-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--cream);
}

.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.artist-card {
  background: #111;
  border: 1px solid rgba(212, 165, 116, 0.12);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
}

.artist-card:hover {
  border-color: rgba(212, 165, 116, 0.4);
  transform: translateY(-3px);
}

.artist-card-img {
  height: 200px;
  overflow: hidden;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.artist-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artist-card-img .placeholder-icon {
  color: rgba(212, 165, 116, 0.2);
  font-size: 3rem;
}

.artist-card-body {
  padding: 20px;
}

.artist-card-name {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 6px;
}

.artist-card-medium {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* =====================================================
   ARTIST PROFILE PAGE
   ===================================================== */
.prof-hero {
  min-height: 80vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.prof-hero .hero-stars {
  position: absolute;
  inset: 0;
}

.prof-hero-inner {
  position: relative;
  z-index: 2;
}

.prof-hero .hero-logo {
  max-width: 240px;
  margin: 0 auto 24px;
}

.prof-hero .hero-super {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.prof-hero .hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 20px;
}

.prof-hero .hero-title em {
  font-style: italic;
  color: var(--gold);
}

.prof-hero .hero-date {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 249, 246, 0.65);
  margin-bottom: 32px;
}

.prof-info {
  background: var(--white);
  padding: 80px 48px;
}

.prof-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
}

.back-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gd);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.back-btn:hover {
  color: var(--gold);
}

.artist-name {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--black);
  margin-bottom: 8px;
}

.artist-medium {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gd);
  margin-bottom: 24px;
}

.artist-divider {
  width: 48px;
  height: 1px;
  background: var(--gd);
  margin-bottom: 24px;
}

.artist-bio {
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 24px;
}

.artist-website a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gd);
  border-bottom: 1px solid var(--gd);
  padding-bottom: 2px;
  transition: color 0.2s;
}

.artist-website a:hover {
  color: var(--gold);
}

.prof-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.prof-imgs img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  background: #050505;
  border-top: 1px solid rgba(212, 165, 116, 0.15);
  padding: 56px 48px 32px;
  text-align: center;
}

.footer-logo {
  max-width: 160px;
  margin: 0 auto 24px;
}

.footer-logo img {
  width: 100%;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 249, 246, 0.5);
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-copy {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.65rem;
  color: #ffffff !important;
  letter-spacing: 0.05em;
  opacity: 1 !important;
}

.footer-credit-link {
  color: var(--gold);
  transition: color 0.2s;
  text-decoration: none;
}

.footer-credit-link:hover {
  color: var(--white);
}

.footer-hfad {
  margin-top: 12px;
  font-size: 0.85rem;
  color: rgba(250, 249, 246, 0.4);
}

.footer-hfad a {
  color: var(--gold);
  border-bottom: 1px solid rgba(212, 165, 116, 0.3);
}

/* =====================================================
   PAGE TEMPLATES
   ===================================================== */
.page-banner {
  background: var(--navy);
  padding: 160px 48px 80px;
  text-align: center;
}

.page-banner .section-label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.page-banner h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--cream);
}

.page-content {
  background: var(--cream);
  color: var(--black);
  padding: 72px 48px;
}

.page-content-inner {
  max-width: 860px;
  margin: 0 auto;
}

.page-content h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--black);
}

.page-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  display: block;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid #ddd;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gd);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* =====================================================
   OVERLAY OPACITY CONTROL (Customizer setting)
   ===================================================== */
.hero-overlay-dark {
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.70) 0%, rgba(10, 10, 10, 0.45) 40%, rgba(10, 10, 10, 0.55) 70%, rgba(10, 10, 10, 0.85) 100%);
}

.hero-overlay-medium {
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.55) 0%, rgba(10, 10, 10, 0.30) 40%, rgba(10, 10, 10, 0.40) 70%, rgba(10, 10, 10, 0.70) 100%);
}

.hero-overlay-light {
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.40) 0%, rgba(10, 10, 10, 0.15) 40%, rgba(10, 10, 10, 0.25) 70%, rgba(10, 10, 10, 0.55) 100%);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 900px) {
  .site-header {
    padding: 16px 24px;
  }
.hamburger {
    display: flex;
  }

  .features {
    padding: 60px 24px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .forty-inner,
  .hfad-inner,
  .prof-inner {
    grid-template-columns: 1fr;
  }

  .forty-years,
  .hfad-section,
  .editorial,
  .artists-section {
    padding: 60px 24px;
  }

  .prof-info {
    padding: 60px 24px;
  }

  .site-footer {
    padding: 40px 24px 24px;
  }

  .hero-bg-video {
    display: none;
  }
}

@media (max-width: 600px) {
  .artists-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .prof-imgs {
    grid-template-columns: 1fr;
  }
}


/* =====================================================
   ARTIST GRID - UPDATED CARDS
   ===================================================== */
.artists-section {
  padding: 80px 24px;
  background: var(--navy);
}

.artists-section .section-inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.artist-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 165, 116, 0.18);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.artist-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  text-decoration: none;
}

.artist-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #111;
  position: relative;
}

.artist-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.artist-card:hover .artist-card-img img {
  transform: scale(1.05);
}

.artist-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 165, 116, 0.08);
}

.artist-card-placeholder .dashicons {
  font-size: 48px;
  width: 48px;
  height: 48px;
  color: rgba(212, 165, 116, 0.4);
}

.artist-card-info {
  padding: 18px 20px;
}

.artist-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 6px;
  line-height: 1.3;
}

.artist-card-medium {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
  opacity: 0.85;
}

/* =====================================================
   ARTIST PROFILE PAGE
   ===================================================== */
.artist-profile-page {
  background: var(--navy);
  min-height: 100vh;
}

/* Hero */
.artist-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  background: #0d1520 center/cover no-repeat;
}

.artist-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 14, 26, 0.92) 0%, rgba(8, 14, 26, 0.5) 50%, rgba(8, 14, 26, 0.3) 100%);
}

.artist-hero-content {
  position: relative;
  z-index: 1;
  padding: 60px 48px;
  max-width: 900px;
}

.artist-hero-back {
  margin-bottom: 16px;
}

.artist-hero-back a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}

.artist-hero-back a:hover {
  color: var(--gold);
}

.artist-hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 600;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.1;
}

.artist-hero-medium {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 20px;
}

.artist-hero-website {
  display: inline-block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.artist-hero-website:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* Profile Body */
.artist-profile-body {
  padding: 64px 24px 80px;
}

.artist-profile-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Profile Top: Photo + Bio side by side */
.artist-profile-top {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 64px;
}

.artist-profile-photo {
  position: sticky;
  top: 100px;
}

.artist-profile-img {
  width: 100%;
  border-radius: 4px;
  display: block;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.artist-bio-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 16px;
}

.artist-bio-medium {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 24px;
}

.artist-bio-medium span {
  color: rgba(255, 255, 255, 0.5);
}

.artist-bio-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.artist-bio-text p {
  margin-bottom: 1em;
}

.btn-outline {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
}

/* Artwork Gallery */
.artist-gallery {
  margin-bottom: 56px;
}

.artist-gallery-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}

.artist-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.artist-gallery-item {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(212, 165, 116, 0.12);
  transition: border-color 0.2s;
}

.artist-gallery-item:hover {
  border-color: var(--gold);
}

.artist-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.artist-gallery-item:hover img {
  transform: scale(1.06);
}

/* Profile Footer */
.artist-profile-footer {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(212, 165, 116, 0.15);
}

.btn-gold {
  display: inline-block;
  padding: 14px 36px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s;
}

.btn-gold:hover {
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 860px) {
  .artist-profile-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .artist-profile-photo {
    position: static;
  }

  .artist-hero-content {
    padding: 40px 24px;
  }

  .artists-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
    padding: 0 12px;
  }
}

@media (max-width: 480px) {
  .artists-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .artist-card-name {
    font-size: 1rem;
  }
}

/* ================================================
   ARTISTS NAV DROPDOWN
   ================================================ */
.main-nav .menu-item-has-children {
  position: relative !important;
}

.main-nav .sub-menu {
  display: none !important;
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  background: rgba(10, 20, 40, 0.97) !important;
  min-width: 220px !important;
  border-top: 2px solid var(--gold) !important;
  z-index: 100 !important;
  padding: 8px 0 !important;
  flex-direction: column !important;
  max-height: 80vh !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
  margin: 0 !important;
}

.main-nav .menu-item-has-children:hover .sub-menu {
  display: flex !important;
}

.main-nav .sub-menu li {
  list-style: none;
}

.main-nav .sub-menu li a {
  display: block !important;
  padding: 10px 20px !important;
  color: var(--cream) !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  border-bottom: none !important;
  white-space: nowrap !important;
  text-decoration: none !important;
}

.main-nav .sub-menu li a:hover {
  color: var(--gold) !important;
  background: rgba(255, 255, 255, 0.05) !important;
}

/* =====================================================
   ONLINE AUCTION ARTIST SLIDESHOW
   ===================================================== */
.feat-auction-slideshow-link {
  display: block;
  width: 100%;
  height: 100%;
}
.feat-auction-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.feat-auction-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
.feat-auction-slide.active {
  opacity: 1;
}


/* === Hero: HTML animation (iframe) background === */
.hero-bg-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: auto;
  z-index: 0;
  overflow: hidden;
}

/* =====================================================
   SOCIAL ICONS (HEADER NAV)
   ===================================================== */

/* Desktop: icons in header-right, left of Online Auction button */
.nav-social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 16px;
}
.nav-social-icons .social-icon-link {
  display: inline-flex;
  align-items: center;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.nav-social-icons .social-icon-link:hover {
  opacity: 1;
}
.nav-social-icons .social-icon {
  width: 44px;
  height: 44px;
  display: block;
}

/* Mobile: icons inside the hamburger/collapsed nav */
.nav-social-icons-mobile {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 16px 20px 8px;
}
.nav-social-icons-mobile .social-icon-link {
  display: inline-flex;
  align-items: center;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.nav-social-icons-mobile .social-icon-link:hover {
  opacity: 1;
}
.nav-social-icons-mobile .social-icon {
  width: 44px;
  height: 44px;
  display: block;
}

/* Hide mobile icons on desktop, show desktop icons on desktop */
.nav-social-icons { display: flex; }
.nav-social-icons-mobile { display: none; }

@media (max-width: 900px) {
  /* On mobile: hide desktop icons, show mobile icons in nav */
  .nav-social-icons { display: none; }
  .nav-social-icons-mobile { display: flex; }
}
/* =====================================================
   HAMBURGER ACTIVE (X) STATE
   ===================================================== */
.hamburger span {
    transition: transform 0.25s ease, opacity 0.2s ease;
}
.hamburger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
