/* Color system pulled from screenshot-ish */
:root {
  --gold: #b8831c;
  /* --tan-bg: #f2efe9; */
  --tan-bg: white;
  --tan-light: white;
  --deep-red: #6d0002;
  --nearly-black: #120704;
  --footer-bg: #f2efe9;
  --chip-bg: #000;
  --chip-text: #fff;
  --hero-bg: white;
  --body-font: "Georgia", "Times New Roman", serif;
  --ui-font: "Helvetica Neue", Arial, sans-serif;
  --border-radius-pill: 999px;
}

/* Global */
body {
  background-color: var(--tan-bg);
  font-family: var(--body-font);
  color: #000;
  line-height: 1.4;
}

.btn {
  background-color: var(--gold) !important;
  color: white !important;
  border-color: white !important;
  transition: all 350ms ease;
  border-radius: 0.75rem;
}

.btn:hover {
  background-color: var(--deep-red) !important;
  color: white !important;
  border-color: white !important;
}

.top-bar {
  background-color: black;
  font-family: var(--ui-font);
  font-weight: 500;
}

.site-header {
  background-color: var(--tan-light);
  font-family: var(--ui-font);
  font-size: 0.9rem;
  border-bottom: 0rem !important;
}

.main-nav .nav-link {
  color: #000 !important;
  font-weight: 500;
  font-size: 0.9rem;
}

.main-nav .nav-link:hover {
  text-decoration: underline;
}

.contact-btn {
  background-color: transparent;
  border-color: #000;
  border-radius: 0.25rem;
  font-size: 0.8rem;
  line-height: 1.2;
  padding: 0.4rem 0.6rem;
}

.checkout-btn {
  border-radius: 0.25rem;
  font-size: 0.8rem;
  line-height: 1.2;
  padding: 0.4rem 0.6rem;
  background-color: #000;
  color: #fff;
  border: 1px solid #000;
}

.checkout-btn:hover {
  background-color: #222;
  color: #fff;
}

.search-btn {
  color: #000;
  text-decoration: none;
}

body .navbar-brand {
  margin-right: 0rem;
  background-color: black;
}

@media(max-width: 991px) {
  .navbar-brand img {
    width: 220px;
  }
}

/* HERO */
.hero-section {
  background-color: var(--hero-bg);
  background-size: cover;
  background-position: center;
  mix-blend-mode: normal;
  position: relative;
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.hero-section::before {
  @media(max-width: 991px) {
      background: #FFF;
      background: linear-gradient(90deg,rgba(255, 255, 255, 1) 30%, rgba(255, 255, 255, 0) 100%);
  }
}

.hero-section::before {
  /* subtle overlay tint */
  content: "";
  position: absolute;
  inset: 0;
  background: #FFF;
  background: linear-gradient(90deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}
.hero-section .container {
  position: relative;
  z-index: 2;
}

.badge-new .badge-text {
  background-color: #000;
  color: #fff;
  font-size: 0.65rem;
  font-family: var(--ui-font);
  border-radius: var(--border-radius-pill);
  padding: 0.4rem 0.6rem;
  display: inline-block;
}

.hero-headline {
  font-family: var(--body-font);
  font-weight: 700;
  color: #000;
  font-size: clamp(2rem, 1.2rem + 2vw, 2.5rem);
  line-height: 1.15;
}

.hero-meta .meta-pill {
  background-color: #000;
  color: #fff;
  border-radius: var(--border-radius-pill);
  font-size: 0.7rem;
  line-height: 1.2;
  padding: 0.4rem 0.6rem;
  font-family: var(--ui-font);
  font-weight: 500;
}

.hero-stats .stat-box {
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 0.4rem;
  font-family: var(--ui-font);
  height: 100%;
  display: Flex;
  flex-direction: column;
  justify-content: center;
}
.stat-label {
  color: #000;
}
.stat-value {
  color: #000;
  font-size: 0.9rem;
}

.hero-image-frame {
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 0.25rem;
  max-width: 400px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Feature chip row */
.feature-chips {
  background-color: var(--tan-bg);
  font-family: var(--ui-font);
}
.feature-chip {
  background-color: #000;
  color: #fff;
  border-radius: var(--border-radius-pill);
  font-size: 0.7rem;
  line-height: 1.2;
  padding: 0.45rem 0.8rem;
  font-weight: 500;
}

/* Inside the Book */
.inside-book-section {
  background-color: var(--deep-red);
  color: #fff;
  font-family: var(--body-font);
}

.inside-book-section .two-col-text {
    justify-content: center;
    display: flex;
    align-items: start;
    flex-direction: column;
}

.inside-book-section .section-heading {
  color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.2;
  font-family: var(--body-font);
}

.checklist li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.4rem;
}
.checklist li::before {
  content: "✔";
  color: var(--gold);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.8rem;
  line-height: 1.2;
}

.inside-book-section .btn {
  font-family: var(--ui-font);
  font-size: 0.8rem;
  border-radius: 0.25rem;
}

.testimonial-card {
  background-image: url('/wp-content/themes/pcmpublishing/static/imgs/homepage-book.jpg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 0.75rem;
  min-height: 200px;
  border: 1px solid white;
  opacity: 0.9;
}

/* ===== Homepage gallery refresh ===== */

.page-template-page-about .gallery-section {
  background-color: var(--deep-red);
}

.gallery-section {
  background-color: var(--tan-bg);
}

.gallery-inner {
  max-width: 1100px;
  margin: 0 auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.gallery-heading {
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.2;
  color: #000;
}

/* Cards */

.gallery-card {
  border-radius: 0.6rem;
  border: 2px solid #000;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform 0.2s ease;
}

.gallery-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

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


/* Discover section */
.discover-section {
  background-color: var(--nearly-black);
  background-image: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.08) 0%, rgba(0,0,0,0) 60%);
  color: #fff;
  font-family: var(--body-font);
}
.discover-section .section-heading {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
}

.mini-card {
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 0.5rem;
  background-color: rgba(0,0,0,0.4);
  font-family: var(--ui-font);
  font-size: 0.8rem;
  color: #fff;
}
.mini-icon {
  font-size: 1.2rem;
}
@media(min-width: 992px) {
.mini-copy {
  min-height: 4rem;
}
}

.mini-card .btn {
  font-size: 0.75rem;
  border-radius: 0.25rem;
  color: #fff;
  border-color: #fff;
}
.mini-card .btn:hover {
  background-color: #fff;
  color: #000;
}

/* Wide band image */

.band-image img {
  display: block;
  object-fit: cover;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}

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

.site-footer {
  background-color: black;
  position: relative;
}

/* Top accent border */
.footer-top-border {
  height: 15px;
  background-color: var(--gold);
}

.site-footer .logo {
  max-width: 200px;
}

/* Optional subtle photo texture */
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://via.placeholder.com/1400x400?text=Subtle+Station+Texture");
  background-size: cover;
  background-position: center;
  opacity: 0.06; /* SUPER subtle */
  pointer-events: none;
}

/* Make sure content sits above texture */
.footer-main,
.footer-bottom {
  position: relative;
  z-index: 2;
}

/* Footer headings */
.footer-heading {
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 1rem;
  color: white;
}

/* Links */
.footer-links a {
  color: white;
  text-decoration: none;
}
.footer-links a:hover {
  text-decoration: underline;
}

/* Contact */
.footer-contact div {
  line-height: 1.4;
  color: white;
}

/* Divider above copyright */
.footer-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(0,0,0,0.15);
  margin-top: 0.5rem;
}

/* Bottom line spacing */
.footer-bottom {
  color: #000;
}
.footer-bottom-link {
  color: #000;
  text-decoration: none;
}
.footer-bottom-link:hover {
  text-decoration: underline;
}

/* Tighter vertical spacing overall */
.site-footer .container {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}




/* small tweaks for mobile spacing */
@media (max-width: 991.98px) {
  .site-header .logo img {
    max-width: 200px;
    height: auto;
  }

  .main-nav {
    font-size: 0.8rem;
  }

  .hero-headline {
    text-align: left;
  }
}

/* Sticky header shadow so it feels "fixed" */
.site-header.sticky-top {
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  z-index: 1030; /* above hero bg overlay */
  background-color: var(--tan-light);
}

/* Make sure navbar uses our tan, not default white */
.site-header .navbar {
  background-color: var(--tan-light) !important;
}

/* style collapsed area */
#mainNav {
  background-color: var(--tan-light);
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

  @media(max-width: 991px) {
    #mainNav {
      height: 0;
      opacity: 0;
      display: none;
      transition: all 350ms ease;
    }

  }

#mainNav.show {
  display: block !important;
  height: 100% !important;
  opacity: 1 !important;
}

/* space in mobile so items aren't jammed */
.header-actions .btn,
.header-actions .btn-link {
  font-size: 0.8rem;
}

@media(min-width: 992px) {
  .header-actions {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }
}

/* remove underline on btn-link search in mobile dropdown */
.header-actions .btn-link {
  text-decoration: none;
  color: #000;
}

/* on lg+ we want nav inline and tidy */
@media (min-width: 992px) {
  #mainNav {
    background-color: transparent;
    border-top: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.site-header {
  /* Desktop defaults */
  --topnav-max: 350; /* px */
  --topnav-min: 200;  /* px */
  --topnav-current: calc(var(--topnav-max) * 1px);

  /* Optional: also tighten the nav padding a bit */
  --navpad-max: 24; /* px (py-3-ish) */
  --navpad-min: 10; /* px */
  --navpad-current: calc(var(--navpad-max) * 1px);
}

/* Mobile defaults */
@media (max-width: 991.98px) {
  .site-header {
    --topnav-max: 110;
    --topnav-min: 78;
    --navpad-max: 18;
    --navpad-min: 10;
  }
}

/* This is the bar you want to actually shrink */
.site-header .top-nav {
  height: var(--topnav-current);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* prevents any weird bleed */
}

/* Make the anchor match the bar height */
.site-header .navbar-brand {
  height: 100%;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Make the image simply fill the anchor height */
.site-header .header-logo {
  height: 100%;
  width: auto;
  max-height: 100%;
  object-fit: contain;
}

/* Optional: tighten the navbar padding as the top bar shrinks */
.site-header .navbar {
  padding-top: var(--navpad-current) !important;
  padding-bottom: var(--navpad-current) !important;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .site-header .top-nav,
  .site-header .navbar {
    transition: none !important;
  }
}

/* ====== BLOG PAGE STYLES ====== */

/* Blog hero */
.blog-hero {
  background-color: var(--tan-bg);
  background-size: cover;
  background-position: center;
  position: relative;
}
.blog-hero .container {
  position: relative;
  z-index: 2;
}
.blog-headline {
  font-family: var(--body-font);
  font-weight: 700;
  color: #000;
  font-size: clamp(1.8rem, 1rem + 1vw, 2.2rem);
  line-height: 1.2;
}
.blog-hero-desc {
  font-family: var(--ui-font);
  color: #000;
  max-width: 42rem;
}
.blog-hero-img {
  background-color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

body .woocommerce-info {
    border-top-color: var(--deep-red);
}

body .woocommerce-info::before {
    color: var(--deep-red);
}

.blog-hero-img {
  max-height: 300px;
  object-fit: cover;
}

/* Featured article block */
.featured-article-section {
  background-color: var(--tan-bg);
  border-bottom: 1px solid rgba(0,0,0,0.15);
  border-top: 1px solid rgba(0,0,0,0.15);
}
.featured-article-card {
  background-color: var(--tan-light) !important;
  font-family: var(--body-font);
  color: #000;
}
.featured-article-title {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.25;
  font-family: var(--body-font);
  color: #000;
}
.featured-article-excerpt {
  font-family: var(--ui-font);
  color: #000;
}

/* Category chips */
.category-chip {
  background-color: #000;
  color: #fff;
  border-radius: var(--border-radius-pill);
  font-size: 0.7rem;
  line-height: 1.2;
  padding: 0.4rem 0.6rem 0.5rem 0.6rem;
  font-family: var(--ui-font);
  font-weight: 500;
  display: inline-block;
  text-transform: capitalize;
}

/* Blog listing section */
.blog-listing-section {
  background-color: var(--deep-red);
  padding-top: 5rem;
}

/* Post cards */
.post-card {
  background-color: var(--tan-light);
  font-family: var(--body-font);
  color: #000;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  position: relative;
}

.post-image-wrapper img {
  object-fit: cover;
}

.post-title {
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
  color: #000;
}

.post-excerpt-container {
   overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Number of lines to display */
  -webkit-box-orient: vertical;
  text-overflow: ellipsis; /* Optional: Adds an ellipsis at the end */
}

.post-excerpt {
  font-family: var(--ui-font);
  color: #000;
}

.read-more-link {
  color: #000;
  font-family: var(--ui-font);
  font-weight: 600;
  text-decoration: none;
}
.read-more-link:hover {
  text-decoration: underline;
}

/* Sidebar cards */
.sidebar-card {
  font-family: var(--body-font);
  color: #000;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  background-color: var(--gold)
}
.sidebar-heading {
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  color: #000;
}
.sidebar-card.bg-dark .sidebar-heading {
  color: #fff;
}
.sidebar-card.bg-dark .btn {
  font-family: var(--ui-font);
}
.sidebar-card .btn {
  font-family: var(--ui-font);
  font-size: 0.8rem;
  border-radius: 999px;
}



/* Events list in sidebar */
.event-detail-main {
  background-color: var(--deep-red);
}

.events-listing p {
  color: white;
}

.event-detail-body p {
  color: white;
}



.event-item .fw-bold {
  font-family: var(--body-font);
  font-size: 0.9rem;
}
.event-item .text-muted {
  font-family: var(--ui-font);
  font-size: 0.8rem;
}
.event-item div {
  font-family: var(--ui-font);
}

/* Pagination look tweak */
.blog-pagination .page-link {
  border-radius: 0 !important;
  border-width: 2px;
  font-family: var(--ui-font);
  font-weight: 500;
  line-height: 1.2;
  padding: 0.4rem 0.6rem;
}
.blog-pagination .page-item.active .page-link {
  border-color: #000;
}
.blog-pagination .page-item:not(.active) .page-link {
  background-color: transparent;
}


/* ====== SINGLE ARTICLE PAGE STYLES ====== */

.article-hero {
  background-color: var(--tan-bg);
  border-top: 1px solid rgba(0,0,0,0.15);
  background-size: cover;
  background-position: center;
  position: relative;
}
.article-hero .container {
  position: relative;
  z-index: 2;
}

.article-breadcrumb {
  font-family: var(--ui-font);
  color: #000;
}
.article-breadcrumb .crumb-link {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}
.article-breadcrumb .crumb-link:hover {
  text-decoration: underline;
}

.article-title {
  font-family: var(--body-font);
  font-weight: 700;
  color: #000;
  font-size: clamp(1.8rem, 1rem + 1vw, 2.2rem);
  line-height: 1.2;
  max-width: 50rem;
}

.article-meta {
  font-family: var(--ui-font);
  color: #444;
}

.article-sidebox {
  background-color: var(--tan-light) !important;
  font-family: var(--ui-font);
  font-size: 0.8rem;
  color: #000;
}
.article-sidebox .btn {
  font-size: 0.8rem;
  border-radius: 999px;
  font-family: var(--ui-font);
  font-weight: 500;
}

/* Featured image / hero image under title */
.article-featured-image {
  background-color: var(--tan-bg);
}
.article-featured-wrapper {
  background-color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
.article-featured-image .small {
  font-family: var(--ui-font);
}

/* Article body */
.article-body-section {
  background-color: var(--gold);
  font-family: var(--body-font);
  color: #000;
}

.article-body-content {
  max-width: 60rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #000;
}
.article-body-content p {
  font-family: var(--ui-font);
  color: #000;
}
.article-intro {
  font-family: var(--ui-font);
  font-size: 1rem;
  line-height: 1.5;
  color: #000;
  font-weight: 500;
  background-color: var(--tan-light);
  border-left: 4px solid #000;
  padding: 1rem 1rem 1rem 1.25rem;
  border-radius: 0.25rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.article-h2 {
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.3;
  color: #000;
}
.article-h3 {
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
  color: #000;
  position: relative;
  padding-left: 1rem;
}
.article-h3::before {
  content: "●";
  font-size: 0.6rem;
  color: var(--gold);
  position: absolute;
  left: 0;
  top: 0.2rem;
}

/* Pullquote */
.pullquote-card {
  background-color: var(--tan-light) !important;
  font-family: var(--body-font);
  color: #000;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.pullquote-text {
  font-size: 1.1rem;
  line-height: 1.4;
  font-weight: 600;
  font-family: var(--body-font);
  color: #000;
}

/* Inline figure inside article */
.article-inline-image img {
  object-fit: cover;
}
.article-inline-image figcaption {
  font-family: var(--ui-font);
  font-size: 0.8rem;
  line-height: 1.4;
  color: #444;
}

/* CTA at bottom of article */
.article-cta {
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
  text-align: center;
}
.article-cta-head {
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.3;
  color: #fff;
}

/* Related posts */
.related-posts-section {
  background-color: var(--deep-red);
  font-family: var(--body-font);
  color: #000;
}
.related-heading {
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.2;
  color: #000;
}
.related-card {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.related-card-link .related-title {
  font-family: var(--body-font);
  font-size: 0.95rem;
  line-height: 1.3;
}
.related-card-link:hover .related-title {
  text-decoration: underline;
}
.related-card .ratio img {
  object-fit: cover;
}


/* ====== ABOUT PAGE STYLES ====== */

/* HERO SECTION (tan like hero) */
.about-hero-section {
  background-color: var(--tan-bg);
  background-size: cover;
  background-position: center;
  position: relative;
  border-top: 1px solid rgba(0,0,0,0.15);
}
.about-hero-section .container {
  position: relative;
  z-index: 2;
}

.about-headline {
  font-family: var(--body-font);
  font-weight: 700;
  color: #000;
  font-size: clamp(1.8rem, 1rem + 1vw, 2.2rem);
  line-height: 1.2;
}

.about-intro {
  font-family: var(--ui-font);
  color: #000;
  line-height: 1.4;
  max-width: 40rem;
}

.about-stats-row .about-stat-box {
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 0.4rem;
  font-family: var(--ui-font);
}

.about-stat-box .stat-label {
  color: #000;
}

.about-stat-box .stat-value {
  color: #000;
  font-size: 0.9rem;
  font-weight: 700;
}

.about-hero-image-frame {
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 0.25rem;
  max-width: 450px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  display: inline-block;
}

/* STORY / CREDIBILITY SECTION (deep red block like "Inside the Book") */
.about-story-section {
  background-color: var(--deep-red);
  color: #fff;
}
.about-story-section .section-heading {
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.2;
}
.about-story-section p,
.about-story-section li {
  font-family: var(--ui-font);
  color: #fff;
}
.about-story-section .checklist li::before {
  color: var(--gold);
}
.about-quote-card {
  background-color: var(--tan-bg);
  border: 2px solid #000;
  border-radius: 0.25rem;
  font-family: var(--body-font);
  color: #000;
  font-size: 0.8rem;
  line-height: 1.4;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* WHAT WE DO / SERVICES (gold block like Gallery section / Discover cards) */
.about-services-section {
  background-color: var(--gold);
  color: #000;
  border-top: 1px solid rgba(0,0,0,0.4);
  border-bottom: 1px solid rgba(0,0,0,0.4);
}
.about-services-section .section-heading {
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.2;
  color: #000;
}
.about-services-section p {
  font-family: var(--ui-font);
  color: #000;
}
.about-services-section .mini-card {
  background-color: rgba(0,0,0,0.4);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 0.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.about-services-section .mini-card .mini-icon {
  font-size: 1.2rem;
}
.about-services-section .mini-card .btn {
  font-size: 0.75rem;
  border-radius: 0.25rem;
  color: #fff;
  border-color: #fff;
  font-family: var(--ui-font);
}
.about-services-section .mini-card .btn:hover {
  background-color: #fff;
  color: #000;
}

/* DARK CTA SECTION (near-black block like your "More to Discover") */
.about-cta-section {
  background-color: var(--nearly-black);
  background-image: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.07) 0%, rgba(0,0,0,0) 60%);
  color: #fff;
}
.about-cta-section .section-heading {
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.2;
}
.about-cta-section p,
.about-cta-section li {
  font-family: var(--ui-font);
}
.about-cta-image-frame {
  font-family: var(--ui-font);
  font-size: 0.8rem;
  line-height: 1.4;
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
}

/* PROOF / BOOK PROMO SECTION (tan band similar to band-image/closing section) */
/* ====== ABOUT (WYSIWYG-FRIENDLY VERSION) ====== */

/* Section backgrounds keep the brand but stay simple */

.about-simple-hero {
  background-color: var(--tan-bg);
  background-size: cover;
  background-position: center;
  position: relative;
  border-top: 1px solid rgba(0,0,0,0.15);
}
.about-simple-hero .container {
  position: relative;
  z-index: 2;
}

.about-simple-headline {
  font-family: var(--body-font);
  font-weight: 700;
  font-size: clamp(1.8rem, 1rem + 1vw, 2.2rem);
  line-height: 1.2;
  color: #000;
}
.about-simple-intro {
  font-family: var(--ui-font);
  color: #000;
  line-height: 1.4;
  max-width: 42rem;
}

.about-stat-pills .about-pill {
  background-color: #000;
  color: #fff;
  font-family: var(--ui-font);
  font-size: 0.7rem;
  line-height: 1.2;
  font-weight: 500;
  padding: 0.4rem 0.6rem;
  border-radius: 999px;
}

.about-hero-photo-frame {
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 0.25rem;
  max-width: 450px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* White section with simple body content */
.about-body-copy {
  background-color: var(--deep-red);
}
.about-body-copy .wysiwyg-block {
  font-family: var(--ui-font);
  color: white;
  line-height: 1.5;
  font-size: 1rem;
}
.about-body-heading {
  font-family: var(--body-font);
  font-weight: 700;
  color: white;
  font-size: 1.4rem;
  line-height: 1.2;
}
.about-body-sub {
  font-family: var(--body-font);
  font-weight: 700;
  color: white;
  font-size: 1rem;
  line-height: 1.3;
  margin-top: 1.5rem;
}
.about-body-copy p {
  margin-bottom: 1rem;
}
.about-body-copy ul {
  padding-left: 1rem;
  margin-bottom: 1.5rem;
}
.about-body-copy li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Gallery strip */
.about-gallery-strip {
  background-color: var(--tan-bg);
}
.about-gallery-card img {
  object-fit: cover;
  display: block;
  border-radius: 0.25rem 0.25rem 0 0;
  background-color: #fff;
  width: 100%;
  height: 100%;
}
.about-gallery-card {
  background-color: #fff;
}

/* Quote / trust */
.about-quote-section {
  background-color: var(--tan-light);
}
.about-quote-card-simple {
  font-family: var(--body-font);
  color: #000;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.about-quote-card-simple p {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #000;
  font-family: var(--body-font);
}
.about-quote-card-simple .text-muted {
  font-family: var(--ui-font);
  font-size: 0.8rem;
}

/* Bios */
.about-bios-section {
  background-color: white;
}
.about-bio-photo {
  background-color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.about-bio-photo img {
  object-fit: cover;
}
.about-bio-name {
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  color: #000;
}
.about-bios-section p {
  font-family: var(--ui-font);
  color: #000;
  line-height: 1.4;
  font-size: 0.9rem;
}

/* CTA / Services */
.about-cta-simple {
  background-color: var(--nearly-black);
  background-image: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.07) 0%, rgba(0,0,0,0) 60%);
  color: #fff;
}
.about-cta-head {
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.25;
}
.about-cta-side {
  font-family: var(--ui-font);
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
  font-size: 0.85rem;
  line-height: 1.4;
}
.about-cta-side strong {
  font-family: var(--body-font);
  font-weight: 700;
  color: #000;
}


/* ====== EVENTS PAGE STYLES ====== */

/* HERO */
.events-hero {
  background-color: var(--tan-bg);
  background-image: url("https://via.placeholder.com/1400x600?text=Show+Floor+Background");
  background-size: cover;
  background-position: center;
  position: relative;
  border-top: 1px solid rgba(0,0,0,0.15);
}
.events-hero .container {
  position: relative;
  z-index: 2;
}

.events-headline {
  font-family: var(--body-font);
  font-weight: 700;
  font-size: clamp(1.8rem, 1rem + 1vw, 2.2rem);
  line-height: 1.2;
  color: #000;
}
.events-intro {
  font-family: var(--ui-font);
  color: #000;
  line-height: 1.4;
  max-width: 42rem;
}
.events-hero-list {
  font-family: var(--ui-font);
  color: #000;
  padding-left: 1rem;
}
.events-hero-list li {
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  line-height: 1.4;
}
.events-hero-photo {
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);  
}
.inside-book-section .col-lg-6{
  display: flex;
  flex-direction: column;
}
.events-hero-photo img {
  object-fit: cover;
}

/* FEATURED / NEXT BIG SHOW */
.events-feature {
  background-color: var(--tan-light);
}
.events-feature-card {
  background-color: var(--tan-bg) !important;
  font-family: var(--body-font);
  color: #000;
}
.events-feature-title {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.25;
  font-family: var(--body-font);
  color: #000;
}
.events-feature-card p {
  font-family: var(--ui-font);
  color: #000;
  line-height: 1.4;
  font-size: 0.9rem;
}
.events-feature-image img {
  object-fit: cover;
  display: block;
  width: 100%;
  height: auto;
}

/* UPCOMING LIST */
.events-listing {
  background-color: var(--deep-red);
}
.event-card {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  font-family: var(--ui-font);
  color: #000;
}
.event-card-header {
  background-color: var(--tan-bg);
}

.event-date {
  font-family: var(--ui-font);
  letter-spacing: .03em;
  font-size: 0.7rem;
  color: #000;
}
.event-title {
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
  color: #000;
}

.event-card p {
  line-height: 1.4;
  font-size: 0.9rem;
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Number of lines to display */
  -webkit-box-orient: vertical;
  text-overflow: ellipsis; /* Optional: Adds an ellipsis at the end */
  overflow: hidden;
}

/* TIPS SECTION */
.events-tips {
  background-color: var(--gold);
}
.events-tips-card {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  font-family: var(--body-font);
  color: #000;
  background-color: var(--tan-light) !important;
}
.events-tips-head {
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.2;
  color: #000;
}
.events-tip-title {
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
  color: #000;
}
.events-tips-card p {
  font-family: var(--ui-font);
  font-size: 0.9rem;
  line-height: 1.4;
  color: #000;
}

/* CTA / BOOK THEM */
.events-cta {
  background-color: var(--nearly-black);
  background-image: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.07) 0%, rgba(0,0,0,0) 60%);
  color: #fff;
}
.events-cta-head {
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.25;
}
.events-cta-side {
  font-family: var(--ui-font);
  background-color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
  font-size: 0.85rem;
  line-height: 1.4;
  color: #000;
}
.events-cta-side strong {
  font-family: var(--body-font);
  font-weight: 700;
  color: #000;
}

/* ====== CONTACT PAGE ====== */

/* hero */
.contact-hero {
  background-color: var(--tan-bg);
  background-image: url("https://via.placeholder.com/1400x600?text=Station+Background");
  background-size: cover;
  background-position: center;
  position: relative;
  border-top: 1px solid rgba(0,0,0,0.15);
}
.contact-hero .container { position: relative; z-index: 2; }

.contact-headline {
  font-family: var(--body-font);
  font-weight: 700;
  font-size: clamp(1.8rem, 1rem + 1vw, 2.2rem);
  line-height: 1.2;
  color: #000;
}
.contact-intro { font-family: var(--ui-font); color: #000; }

/* form + cards */
.contact-main .form-control {
  border-color: var(--gold);
}

.contact-main .bg-white {
  background-color: var(--tan-light) !important;
}

.contact-main {
  border-top: 2px solid black;
}

.contact-main { background-color: var(--deep-red); }
.contact-form-card { background-color: var(--tan-light) !important; }
.contact-form .form-label { font-family: var(--ui-font); color: #000; }
.contact-form .form-control { border-width: 2px; }
.contact-form .btn { font-family: var(--ui-font); }

.contact-side .contact-card { box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.stack-16 > * + * { margin-top: 1rem; }

.contact-side .contact-card p:last-of-type {
  margin-bottom: 0rem;
}

/* info band */
.contact-info-band { background-color: #fff; }
.contact-info-band .small { font-family: var(--ui-font); color: #000; }

/* map */
.contact-map-section { background-color: var(--tan-bg); }
.contact-map-section .ratio img { object-fit: cover; }

/* faq */
.contact-faq-section { background-color: #fff; }
.contact-faq-section .accordion-button {
  font-family: var(--body-font);
  font-weight: 700;
  color: #000;
}
.contact-faq-section .accordion-body {
  font-family: var(--ui-font);
  color: #000;
}

/* hero photo */
.contact-hero-photo { box-shadow: 0 6px 20px rgba(0,0,0,0.3); }

.contact-hero-photo img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  max-height: 300px;
}

.animate__delay-custom {
  animation-delay: var(--animate-delay);
}

@media (prefers-reduced-motion: reduce) {
  .animate__animated {
    animation: none !important;
  }
}


/* ====== SERVICES PAGE ====== */

/* hero */
.services-hero {
  background-color: var(--tan-bg);
  background-image: url("https://via.placeholder.com/1400x600?text=Station+Background");
  background-size: cover;
  background-position: center;
  position: relative;
  border-top: 1px solid rgba(0,0,0,0.15);
}
.services-hero .container { position: relative; z-index: 2; }

.services-headline {
  font-family: var(--body-font);
  font-weight: 700;
  font-size: clamp(1.8rem, 1rem + 1vw, 2.2rem);
  line-height: 1.2;
  color: #000;
}
.services-intro { font-family: var(--ui-font); color: #000; }
.services-hero-photo { box-shadow: 0 6px 20px rgba(0,0,0,0.3); }

.services-hero-photo img {
  object-fit: cover;
}

/* grid */
.services-grid { background-color: var(--deep-red); }
.service-card { box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.service-title {
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
  color: #000;
}
.service-card p { font-family: var(--ui-font); color: #000; }

.service-card img {
  object-fit: cover;
}

/* process */
.services-process { background-color: #fff; }
.process-step { background-color: var(--tan-light); }

/* cta */
.services-cta {
  background-color: var(--nearly-black);
  background-image: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.07) 0%, rgba(0,0,0,0) 60%);
  color: #fff;
}
.services-cta-head {
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.25;
}
.services-cta-side {
  font-family: var(--ui-font);
  background-color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
  font-size: 0.85rem;
  line-height: 1.4;
  color: #000;
}
.services-cta-side strong {
  font-family: var(--body-font);
  font-weight: 700;
  color: #000;
}

/* hero */
.gallery-hero {
  background-color: var(--tan-bg);
  background-image: url("https://via.placeholder.com/1400x600?text=Station+Background");
  background-size: cover;
  background-position: center;
  position: relative;
  border-top: 1px solid rgba(0,0,0,0.15);
}
.gallery-hero .container { position: relative; z-index: 2; }

.gallery-headline {
  font-family: var(--body-font);
  font-weight: 700;
  font-size: clamp(1.8rem, 1rem + 1vw, 2.2rem);
  line-height: 1.2;
  color: #000;
}
.gallery-intro { font-family: var(--ui-font); color: #000; }

.gallery-search-wrapper .form-label { font-family: var(--ui-font); }
.gallery-search-wrapper .form-control { border-width: 2px; }

/* grid */
.gallery-grid-section { background-color: var(--deep-red); }

/* CSS Grid: add unlimited images, auto-fit columns */
.gallery-grid {
  /* display: grid; */
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.gallery-item {
  background: #fff;
  border: 2px solid #000;
  border-radius: 0.25rem;
  overflow: hidden;
  cursor: zoom-in;
  transition: transform .12s ease, box-shadow .12s ease;
}
.gallery-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.18);
}
.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3; /* keeps the grid tidy, but you can remove if you prefer natural aspect */
}
.gallery-item figcaption {
  font-family: var(--ui-font);
  font-size: .8rem;
  color: #000;
  padding: .5rem .6rem;
  background: var(--tan-light);
  border-top: 2px solid #000;
}

/* modal image */
#imageModal .modal-content { background-color: #fff; }
#imageModal .ratio { background: #fff; }
.modal-body:has(.ratio) {padding-bottom: 2rem !important; }
#imageModal img { object-fit: contain; }
#imageModal img:hover { cursor: pointer; }
#galleryGrid .wp-block-image { max-height: 300px; }

/* ===== Gallery Hover Effects ===== */

#galleryGrid .wp-block-image {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  background-color: #000;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#galleryGrid .wp-block-image img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1);
  transition: transform 0.35s ease;
}

/* Hover effect */
#galleryGrid .wp-block-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

#galleryGrid .wp-block-image:hover img {
  transform: scale(1.07);
}

/* util */
.object-fit-contain { object-fit: contain; }

/* ===== SEARCH PAGE ===== */

/* Hero matches the other tan heroes */
.search-hero {
  background-color: var(--tan-bg);
  background-image: url("https://via.placeholder.com/1400x400?text=Station+Background");
  background-size: cover;
  background-position: center;
  position: relative;
  border-top: 1px solid rgba(0,0,0,0.15);
}

#searchForm input[type="text"] {
background-color: black;
}

.search-hero-form {
  margin-top: 3rem;
}

.search-hero-form form div {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.search-hero-form form input[type="text"] {
  display: inline-block;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
}

.search-hero-form form input[type="submit"] {
display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: white;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: var(--gold) !important;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    border-radius: .25rem;
    transition: color .15s 
ease-in-out, background-color .15s 
ease-in-out, border-color .15s 
ease-in-out, box-shadow .15s 
ease-in-out;
}

.search-hero .container {
  position: relative;
  z-index: 2;
}

.search-headline {
  font-family: var(--body-font);
  font-weight: 700;
  font-size: clamp(1.8rem, 1rem + 1vw, 2.2rem);
  line-height: 1.2;
  color: #000;
}

.search-intro {
  font-family: var(--ui-font);
  color: #000;
}

/* Search form in hero */
.search-hero-form .search-form {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
}

.search-hero-form .search-field {
  flex: 1;
  border: 2px solid #000;
  border-right: 0;
  padding: 0.45rem 0.6rem;
  font-family: var(--ui-font);
  font-size: 0.9rem;
}

.search-hero-form .search-submit {
  border: 2px solid #000;
  background-color: #000;
  color: #fff;
  padding: 0.45rem 0.9rem;
  font-family: var(--ui-font);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.search-hero-form .search-submit:hover {
  background-color: #333;
}

/* Results area */
.search-results-section {
  background-color: var(--deep-red);
}

/* Card that wraps each tease */
.search-card {
  border: 2px solid #000;
  border-radius: 0.75rem;
  background-color: #f7f0de;
  padding: 1rem 1.25rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.search-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.24);
}

/* If your tease templates use .tease, make them blend nicely */
.search-card .tease {
  margin: 0; /* remove extra gaps */
}

/* Titles inside cards */
.search-card h2,
.search-card h3,
.search-card .entry-title {
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.search-card a {
  color: #000;
  text-decoration: none;
}

.search-card a:hover {
  text-decoration: underline;
}

/* Meta + excerpt tweaks (if present in tease.twig) */
.search-card .entry-meta,
.search-card .byline,
.search-card .post-meta {
  font-family: var(--ui-font);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #555;
  margin-bottom: 0.25rem;
}

.search-card p {
  font-family: var(--ui-font);
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Empty state box */
.search-empty {
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

/* Pagination styling */
.search-pagination {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.search-pagination .pagination {
  gap: 0.25rem;
}

.search-pagination .page-numbers {
  display: inline-block;
  min-width: 2.1rem;
  text-align: center;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  border: 2px solid #000;
  background-color: #f7f0de;
  font-family: var(--ui-font);
  font-size: 0.8rem;
  text-decoration: none;
  color: #000;
}

.search-pagination .page-numbers.current {
  background-color: #000;
  color: #fff;
}

.search-pagination .page-numbers:hover {
  background-color: #000;
  color: #fff;
}


/* ===== CART PAGE ===== */

/* Hero */
.cart-hero {
  background-color: var(--tan-bg);
  background-image: url("https://via.placeholder.com/1400x400?text=Station+Background");
  background-size: cover;
  background-position: center;
  position: relative;
  border-top: 1px solid rgba(0,0,0,0.15);
}

.cart-hero .container {
  position: relative;
  z-index: 2;
}

.cart-headline {
  font-family: var(--body-font);
  font-weight: 700;
  font-size: clamp(1.8rem, 1rem + 1vw, 2.2rem);
  line-height: 1.2;
  color: #000;
}

.cart-intro {
  font-family: var(--ui-font);
  color: #000;
}

/* Wrapper around Woo */
.cart-main {
  background-color: var(--deep-red);
}

.cart-wrapper {
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* WooCommerce defaults override */
.woocommerce-cart .cart {
  margin-bottom: 0;
}

/* Cart table */
.woocommerce table.shop_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 2px solid #000;
  border-radius: 0.75rem;
  overflow: hidden;
  background-color: white;
  font-family: var(--ui-font);
  font-size: 0.9rem;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  border-top: 1px solid rgba(0,0,0,0.12);
  padding: 0.75rem 0.9rem;
}

.woocommerce table.shop_table thead th {
  background-color: var(--tan-bg);
  font-family: var(--body-font);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
}

/* Product column */
.woocommerce-cart .product-name a {
  color: #000;
  text-decoration: none;
  font-family: var(--body-font);
  font-weight: 700;
}


.woocommerce-cart .product-name a:hover {
  text-decoration: underline;
}

/* Thumbnails smaller & with border */
.woocommerce-cart .product-thumbnail img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 0.4rem;
  border: 2px solid #000;
}

/* Quantity input */
.woocommerce .quantity .qty {
  width: 3.2rem;
  border: 2px solid #000;
  border-radius: 999px;
  padding: 0.15rem 0.4rem;
  text-align: center;
  font-size: 0.85rem;
}

/* Remove item link */
.woocommerce a.remove {
  color: #000 !important;
  border: 1px solid #000;
  border-radius: 999px;
  width: 1.4rem;
  height: 1.4rem;
  line-height: 1.1rem;
  text-align: center;
  font-size: 0.9rem;
}

.woocommerce a.remove:hover {
  background-color: #000;
  color: #fff !important;
}

/* Cart actions row */
.woocommerce-cart table.cart td.actions {
  padding: 0.75rem 0.9rem;
  background-color: var(--tan-bg);
}

/* Coupon */
.woocommerce-cart .coupon {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.woocommerce-cart .coupon label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.woocommerce-cart .coupon .input-text {
  border: 2px solid #000;
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-size: 0.85rem;
  min-width: 250px !important;
}

/* Buttons (update, apply coupon, proceed to checkout) */
.woocommerce button.button,
.woocommerce a.button {
  border-radius: 999px;
  border: 2px solid #000;
  background-color: #000;
  color: #fff;
  font-family: var(--ui-font);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 1.2rem;
}

.woocommerce button.button:hover,
.woocommerce a.button:hover {
  background-color: #333;
  color: #fff;
}

/* Cart totals box */
.woocommerce-cart .cart-collaterals {
  margin-top: 1.5rem;
}

.woocommerce-cart .cart_totals {
  border: 2px solid #000;
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  background-color: var(--tan-bg);
}

.woocommerce-cart .cart_totals h2 {
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.woocommerce-cart .cart_totals table.shop_table {
  border: 0;
  box-shadow: none;
  background-color: transparent;
}

.woocommerce-cart .cart_totals table.shop_table tr th,
.woocommerce-cart .cart_totals table.shop_table tr td {
  border-top: 0;
  padding: 0.25rem 0;
  font-size: 0.9rem;
}

/* Proceed to checkout button full width on small screens */
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  width: 100%;
  background-color: var(--gold) !important;
}

/* Notices inside cart wrapper */
.cart-wrapper .woocommerce-message,
.cart-wrapper .woocommerce-error,
.cart-wrapper .woocommerce-info {
  border-radius: 0.5rem;
  border-width: 2px;
  font-family: var(--ui-font);
}


.blog .tease-post .post-card  .category-chip {
  text-transform: capitalize;
}

.blog .tease-post .post-card {
  background-color: white;
  border-radius: .3rem !important;
  border: 1px solid #212529;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.blog .tease-post .post-card a {
  color: #212529; 
}

.input-group-text:has(.bi-search) {
  background-color: var(--deep-red);
}

body #galleryEmpty {
  color: white !important;
}

/* ===== SINGLE PRODUCT (BOOK) ===== */

.product-hero {
  background-color: var(--tan-light);
  background-image: url("https://via.placeholder.com/1400x400?text=Station+Background");
  background-size: cover;
  background-position: center;
  position: relative;
  border-top: 1px solid rgba(0,0,0,0.15);
}
@media(min-width: 992px) {
  .product-hero {
    padding-top: 2rem;
  }
}


.product-hero .container {
  position: relative;
  z-index: 2;
}

.product-hero-gallery {
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.product-title {
  font-family: var(--body-font);
  font-weight: 700;
  font-size: clamp(1.9rem, 1rem + 1.1vw, 2.4rem);
  line-height: 1.15;
  color: #000;
}

.product-subtitle {
  font-family: var(--ui-font);
  color: #000;
}

.product-price {
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 1.2rem;
  color: #000;
}

/* Woo price HTML inside */
.product-price .price {
  font-size: inherit;
}

/* Pill row */
.product-meta-pills .meta-pill {
  background-color: var(--tan-bg);
  border: 1px solid #000;
  border-radius: 999px;
  padding: 0.1rem 0.65rem;
  font-family: var(--ui-font);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* Short + long description */
.product-short-desc,
.product-long-desc,
.product-specs {
  font-family: var(--ui-font);
  color: #000;
  line-height: 1.5;
}

/* Woo add to cart button */
.product-add-to-cart .button,
.product-add-to-cart button.button {
  border-radius: 999px;
  border: 2px solid #000;
  background-color: #000;
  color: #fff;
  font-family: var(--ui-font);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 1.6rem;
}

.product-add-to-cart .button:hover,
.product-add-to-cart button.button:hover {
  background-color: #333;
  color: #fff;
}

.single-product .product-add-to-cart .woocommerce {
  padding: 0rem !important;
}

.single-product .product-add-to-cart .woocommerce span {
  display: none !important;
}

.add_to_cart_inline {
  background-color: transparent;
  border: none !important;
}

.add_to_cart_inline a.button {
  background-color: var(--gold) !important;
  color: white !important;
}

/* Meta */
.product-meta {
  font-family: var(--ui-font);
  font-size: 0.8rem;
}

/* Inside the book section */
.product-inside {
  background-color: #fff;
}

.product-sidebar {
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

/* Tabs */
.product-tabs-section {
  background-color: var(--deep-red);
}

.product-tabs-wrapper {
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

/* Related */
.product-related-section {
  background-color: var(--tan-bg);
}
.product-related-section .border {
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.woocommerce span.onsale {
  background-color: var(--deep-red) !important;
  color: white !important;
}

.wc-tabs a:-webkit-any-link {
  color: var(--deep-red) !important;
}

.single-product .posted_in a {
  color: var(--deep-red) !important;
}

.single-product span.onsale {
  padding: .10em .202em !important;
}

.woocommerce-shop section[role="main"]{
  background-color: var(--tan-light);
}

.woocommerce-shop .product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.woocommerce-shop .add_to_cart_inline .woocommerce-Price-amount {
  display: none !important;
}

.woocommerce-shop .woocommerce a.added_to_cart {
  margin-left: 1rem;
}

.woocommerce a.added_to_cart {
  margin-left: 1rem;
}

.woocommerce-checkout section[role="main"] {
  background-color: var(--tan-bg);
}

.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block {
  background-color: white;
}

@media(min-width: 992px) {
  .woocommerce-checkout .wp-block-woocommerce-checkout {
    max-width: 800px;
  }
}

@media(max-width: 991px) {
  .woocommerce-checkout .wp-block-woocommerce-checkout {
    padding: 0 10%;
  }
}

.woocommerce-checkout .wrapper {
  display: flex;
  justify-content: center;
}

.woocommerce-checkout .wc-block-components-radio-control-accordion-content {
  /* background-color: white; */
}

/* ===== Contact Form 7 – PCM Styling ===== */

/* Overall form card */
.wpcf7-form {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.75rem 1.9rem;
  border: 2px solid #000;
  border-radius: 0.9rem;
  background-color: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

/* Basic spacing */
.wpcf7-form .row {
  margin-left: 0;
  margin-right: 0;
}

.wpcf7-form p {
  margin-bottom: 0.75rem;
}

/* Labels */
.wpcf7-form .form-label {
  font-family: var(--ui-font, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #000;
}

/* Text inputs, email, tel, subject, textarea */
.wpcf7-form .wpcf7-form-control.wpcf7-text,
.wpcf7-form .wpcf7-form-control.wpcf7-email,
.wpcf7-form .wpcf7-form-control.wpcf7-tel,
.wpcf7-form .wpcf7-form-control.wpcf7-textarea {
  width: 100%;
  border: 2px solid #000;
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  font-size: 0.9rem;
  font-family: var(--ui-font, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
  background-color: #f2efe9;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

/* Textarea gets different radius and height */
.wpcf7-form .wpcf7-form-control.wpcf7-textarea {
  border-radius: 0.75rem;
  min-height: 160px;
  resize: vertical;
}

/* File input */
.wpcf7-form .wpcf7-form-control.wpcf7-file {
  width: 100%;
  border: 2px dashed #000;
  border-radius: 0.75rem;
  padding: 0.4rem 0.75rem;
  background-color: #f2efe9;
  font-size: 0.85rem;
}

/* Helper text under file input */
.wpcf7-form .form-text {
  font-size: 0.8rem;
  color: #555;
}

/* Focus state */
.wpcf7-form .wpcf7-form-control:focus {
  border-color: #000;
  background-color: #fff;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.12);
}

/* Submit button */
.wpcf7-form .wpcf7-submit {
  display: inline-block;
  border-radius: 999px;
  border: 2px solid #000;
  background-color: #000;
  color: #fff;
  padding: 0.45rem 1.75rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: var(--ui-font, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.1s ease;
}

.wpcf7-form .wpcf7-submit:hover {
  background-color: #333;
  transform: translateY(-1px);
}

/* CF7 messages + validation */
.wpcf7-form .wpcf7-response-output {
  margin-top: 1rem;
  border-radius: 0.6rem;
  padding: 0.6rem 0.9rem;
  font-size: 0.85rem;
}

.wpcf7-form .wpcf7-not-valid {
  border-color: #b00020;
}

.wpcf7-form .wpcf7-not-valid-tip {
  font-size: 0.75rem;
  color: #b00020;
  margin-top: 0.25rem;
}