/*
Theme Name: Concordian Dawn
Theme URI: https://concordiandawn.com
Author: Traveling Troubadour Designs & Media
Author URI: https://www.nicholastamagna.com/tt-media-designs
Description: A mystical medieval-themed WordPress theme for Concordian Dawn, ensemble for medieval music. Features twinkling stars, animated creatures, and an immersive dark aesthetic inspired by illuminated manuscripts.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: concordian-dawn
Tags: one-column, custom-menu, featured-images, theme-options, dark, entertainment, music

Concordian Dawn WordPress Theme
Copyright 2025 Traveling Troubadour Designs & Media
*/

/* ==========================================================================
   CSS VARIABLES
   ========================================================================== */
:root {
  --midnight: #0d1117;
  --deep-blue: #161b22;
  --twilight: #21262d;
  --mist: #8b949e;
  --moonlight: #c9d1d9;
  --starlight: #f0f6fc;
  --gold-ancient: #cda434;
  --gold-glow: #f0c14b;
  --crimson-deep: #8b1538;
  --wine: #58111a;
  
  /* Spacing */
  --section-padding: 6rem 2rem;
  --container-max: 1100px;
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Spectral', Georgia, serif;
  background-color: var(--midnight);
  color: var(--moonlight);
  line-height: 1.8;
  font-size: 17px;
  overflow-x: hidden;
}

/* Hide default WordPress/theme elements we're replacing */
.site-header,
.entry-header,
.page-header .entry-title,
.site-footer {
  display: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--deep-blue);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-ancient);
  border-radius: 4px;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Almendra', serif;
  color: var(--starlight);
  line-height: 1.3;
}

a {
  color: var(--gold-ancient);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--gold-glow);
}

p {
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.cd-navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  background: linear-gradient(to bottom, rgba(13, 17, 23, 0.95), rgba(13, 17, 23, 0));
  transition: all 0.4s ease;
}

.cd-navigation.scrolled {
  background: rgba(13, 17, 23, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.cd-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.cd-nav-logo,
.cd-header-logo {
  display: none;
}

/* Main Menu */
.cd-main-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cd-main-menu ul {
  display: flex;
  list-style: none;
  gap: 0.3rem;
}

.cd-main-menu li {
  position: relative;
}

.cd-main-menu a {
  display: block;
  padding: 0.6rem 1rem;
  font-family: 'Almendra', serif;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--moonlight);
  transition: all 0.3s ease;
  position: relative;
}

.cd-main-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold-ancient);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.cd-main-menu a:hover,
.cd-main-menu .current-menu-item a,
.cd-main-menu .current_page_item a {
  color: var(--gold-glow);
}

.cd-main-menu a:hover::after,
.cd-main-menu .current-menu-item a::after,
.cd-main-menu .current_page_item a::after {
  width: 80%;
}

/* Mobile Menu Toggle */
.cd-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold-ancient);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

.cd-menu-close {
  display: none;
}

@media (max-width: 900px) {
  .cd-menu-toggle {
    display: block;
  }
  
  .cd-main-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--deep-blue);
    flex-direction: column;
    justify-content: flex-start;
    padding: 5rem 2rem 2rem;
    transition: right 0.4s ease;
    border-left: 1px solid var(--gold-ancient);
  }
  
  .cd-main-menu.active {
    right: 0;
  }
  
  .cd-main-menu ul {
    flex-direction: column;
    width: 100%;
  }
  
  .cd-main-menu a {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--twilight);
  }
  
  .cd-main-menu .cd-menu-close {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--mist);
    font-size: 1.5rem;
    cursor: pointer;
  }
}

.cd-menu-close,
button.cd-menu-close,
.cd-navigation .cd-menu-close,
.cd-nav-inner .cd-menu-close {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

@media (max-width: 900px) {
    .cd-main-menu .cd-menu-close,
    .cd-main-menu button.cd-menu-close {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
}
/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background:
    linear-gradient(to bottom, rgba(13, 17, 23, 0.3), rgba(13, 17, 23, 0.85)),
    url('https://concordiandawn.com/wp-content/uploads/2025/12/lute.png') center / cover no-repeat;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero {
    background:
      linear-gradient(to bottom, rgba(13, 17, 23, 0.75), rgba(13, 17, 23, 0.95)),
      url('https://concordiandawn.com/wp-content/uploads/2025/12/lute.png') center top / cover no-repeat;
  }
}

/* Stars Overlay */
.stars-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.star {
  position: absolute;
  width: 12px;
  height: 12px;
  background: url('https://concordiandawn.com/wp-content/uploads/2025/12/star-parchment.png') center / contain no-repeat;
  opacity: 0;
  animation: twinkleStar var(--duration) ease-in-out infinite;
  animation-delay: var(--delay);
}

@keyframes twinkleStar {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50% { opacity: var(--max-opacity); transform: scale(1); }
}

/* Hero Content */
.hero-content {
  text-align: center;
  z-index: 2;
  padding: 2rem;
  animation: riseUp 1.5s ease-out;
}

@keyframes riseUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-logo {
  max-width: 750px;
  width: 100%;
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 30px rgba(205, 164, 52, 0.3));
  animation: logoBreath 4s ease-in-out infinite;
}

@keyframes logoBreath {
  0%, 100% { filter: drop-shadow(0 0 30px rgba(205, 164, 52, 0.3)); transform: scale(1); }
  50% { filter: drop-shadow(0 0 50px rgba(205, 164, 52, 0.5)); transform: scale(1.02); }
}

.hero-tagline {
  font-family: 'Almendra', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-style: italic;
  color: var(--gold-glow);
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 20px rgba(205, 164, 52, 0.5);
}

.hero-subtitle {
  font-family: 'Spectral', serif;
  font-size: 1.55rem;
  font-weight: 300;
  color: white;
  max-width: 650px;
  margin: 0 auto;
  line-height: 2;
}

/* Scroll Cue */
.scroll-cue {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: pulse 2s ease-in-out infinite;
}

.scroll-cue span {
  font-family: 'Almendra', serif;
  font-size: 1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mist);
}

.scroll-cue a {
  color: var(--gold-ancient);
  font-size: 1.8rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.scroll-cue a:hover {
  color: var(--gold-glow);
  text-shadow: 0 0 15px var(--gold-glow);
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(5px); }
}

/* ==========================================================================
   DOG ANIMATION
   ========================================================================== */
.hero-dog {
  position: absolute;
  bottom: 12%;
  right: -59%;
  width: 50em;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-dog.active {
  opacity: 0.85;
}

.hero-dog.at-top {
  opacity: 0 !important;
}

.hero-dog-inner {
  width: 100%;
  display: block;
  transform-origin: 50% 100%;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,0.4));
  animation: dogBob 2.4s ease-in-out infinite, dogBreath 4.5s ease-in-out infinite;
  animation-play-state: paused;
  transition: transform 0.6s ease;
}

@keyframes dogBob {
  0%   { transform: translateY(0) rotate(-0.25deg); }
  25%  { transform: translateY(-4px) rotate(0.3deg); }
  50%  { transform: translateY(0) rotate(-0.2deg); }
  75%  { transform: translateY(-3px) rotate(-0.12deg); }
  100% { transform: translateY(0) rotate(-0.25deg); }
}

@keyframes dogBreath {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.015); }
}

.hero-dog-orient {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}

.hero-dog-orient.flip {
  transform: scaleX(-1);
}

@media (max-width: 768px) {
  .hero-dog {
    width: 150px;
    bottom: 10%;
  }
}

/* ==========================================================================
   SECTIONS - GENERAL
   ========================================================================== */
section {
  padding: var(--section-padding);
  position: relative;
  z-index: 1;
}

.section-inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-family: 'Almendra Display', serif;
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--starlight);
  letter-spacing: 0.1em;
  position: relative;
  display: inline-block;
  animation: dancingTitle 4s ease-in-out infinite;
}

@keyframes dancingTitle {
  0%, 100% { transform: rotate(-0.5deg) translateY(0); }
  25% { transform: rotate(0.5deg) translateY(-2px); }
  50% { transform: rotate(-0.3deg) translateY(0); }
  75% { transform: rotate(0.4deg) translateY(2px); }
}

.section-header h2::before {
  content: '☽';
  position: absolute;
  left: -2.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-ancient);
  font-size: 1.5rem;
}

.section-header h2::after {
  content: '☾';
  position: absolute;
  right: -2.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-ancient);
  font-size: 1.5rem;
}

.section-subtitle {
  font-family: 'Spectral', serif;
  font-style: italic;
  font-weight: 300;
  color: var(--mist);
  margin-top: 0.8rem;
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .section-inner {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 0.01em;
  }
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
#about {
  background: linear-gradient(to bottom, var(--midnight), var(--deep-blue)),
    url("https://concordiandawn.com/wp-content/uploads/2025/12/dog.png") center / cover no-repeat;
  background-position: bottom, right -100px bottom -50px;
  background-size: auto, 300px;
}

.about-text {
  font-size: 1.4rem;
  line-height: 2.1;
  color: var(--moonlight);
  max-width: 850px;
  margin: 0 auto;
}

.about-text p {
  margin-bottom: 1.8rem;
}

.about-text p:first-of-type::first-letter {
  font-family: 'Uncial Antiqua', cursive;
  float: left;
  font-size: 5.5rem;
  line-height: 0.75;
  padding-right: 0.1em;
  padding-top: 0.1em;
  color: var(--gold-ancient);
  text-shadow: 3px 3px 0 var(--crimson-deep);
}

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

.about-text strong,
.about-text b {
  color: var(--gold-glow);
  font-weight: inherit;
  font-style: italic;
}

/* ==========================================================================
   DISCOGRAPHY SECTION
   ========================================================================== */
#discography {
  position: relative;
  background: linear-gradient(135deg, var(--wine) 0%, var(--crimson-deep) 50%, var(--midnight) 100%);
  overflow: hidden;
}

#discography::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background-image: url("https://concordiandawn.com/wp-content/uploads/2025/12/backgroundnotation.png");
  background-repeat: repeat;
  background-size: 520px auto;
  opacity: 0.35;
  filter: blur(0.5px) contrast(0.9);
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: 0;
  transform: rotate(-90deg);
  animation: notationScroll 120s linear infinite;
}

@keyframes notationScroll {
  from { background-position: 0 0; }
  to { background-position: 0 2000px; }
}

.albums-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .albums-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

.album-card {
  background: rgba(13, 17, 23, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(205, 164, 52, 0.2);
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}

.album-card:hover {
  transform: translateY(-15px);
  border-color: var(--gold-ancient);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.album-cover {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.album-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: saturate(0.9);
}

.album-card:hover .album-cover img {
  transform: scale(1.1);
  filter: saturate(1.1);
}

.album-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(13, 17, 23, 0.95), transparent);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.album-card:hover .album-overlay {
  transform: translateY(0);
}

.album-links {
  display: flex;
  gap: 1rem;
}

.album-links a {
  color: var(--starlight);
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

.album-links a:hover {
  color: var(--gold-glow);
  transform: scale(1.2);
}

.album-info {
  padding: 1.2rem;
  text-align: center;
  background: rgba(13, 17, 23, 0.8);
}

.album-info h3 {
  font-family: 'Almendra', serif;
  font-size: 1rem;
  color: var(--starlight);
  margin-bottom: 0.4rem;
}

.album-info .album-meta {
  font-size: 0.8rem;
  color: var(--gold-ancient);
}

/* ==========================================================================
   EVENTS SECTION
   ========================================================================== */
#events {
  position: relative;
  background: linear-gradient(to bottom, var(--deep-blue), var(--midnight));
  overflow: hidden;
}

#events::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('https://concordiandawn.com/wp-content/uploads/2025/12/animated-dog.gif');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 0;
  pointer-events: none;
}

#events::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 8, 14, 0.7);
  z-index: 1;
  pointer-events: none;
}

#events > * {
  position: relative;
  z-index: 2;
}

.events-container {
  max-width: 800px;
  margin: 0 auto;
}

/* Event Card */
.event-card {
  background: linear-gradient(135deg, rgba(22, 27, 34, 0.85), rgba(13, 17, 23, 0.92));
  border-left: 3px solid var(--gold-ancient);
  padding: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  overflow: hidden;
}

.event-card:hover {
  transform: translateX(10px);
  border-left-color: var(--gold-glow);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Event Card Star - Twinkles, then flies to button on hover */
.event-card::after {
  content: '';
  position: absolute;
  left: -9px;
  top: 2rem;
  width: 20px;
  height: 20px;
  background: url('https://concordiandawn.com/wp-content/uploads/2025/12/star-parchment.png') center / contain no-repeat;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  animation: eventStarTwinkle 3s ease-in-out infinite;
  z-index: 10;
}

.event-card:hover::after {
  left: 1rem;
  top: calc(100% - 3.5rem);
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 0 10px var(--gold-glow));
  transform: rotate(360deg);
  animation: none;
  opacity: 1;
}

@keyframes eventStarTwinkle {
  0%, 100% { 
    opacity: 0.5; 
    transform: scale(0.9);
    filter: drop-shadow(0 0 2px var(--gold-glow));
  }
  50% { 
    opacity: 1; 
    transform: scale(1.1);
    filter: drop-shadow(0 0 12px var(--gold-glow));
  }
}

/* Event Card Stars Overlay (twinkling background stars) */
.event-stars-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
  border-radius: inherit;
}

.event-stars-overlay .star {
  position: absolute;
  background: url('https://concordiandawn.com/wp-content/uploads/2025/12/star-parchment.png') center / contain no-repeat;
  opacity: 0;
  animation: twinkleStar var(--duration) ease-in-out infinite;
  animation-delay: var(--delay);
}

/* Keep event card content above stars */
.event-card > *:not(.event-stars-overlay):not(.event-star) {
  position: relative;
  z-index: 1;
}

/* Hide the span star (using CSS pseudo-element instead) */
.event-star {
  display: none;
}

/* Event Card Typography */
.event-date {
  font-family: 'Almendra', serif;
  font-size: 1.15rem;
  color: var(--gold-glow);
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}

.event-title {
  font-size: 1.5rem;
  color: var(--starlight);
  margin-bottom: 0.8rem;
}

.event-title em {
  font-size: 1.25rem;
  color: var(--gold-ancient);
  font-style: italic;
}

.event-venue {
  font-size: 1.05rem;
  color: var(--mist);
  margin-bottom: 0.5rem;
}

.event-venue i,
.event-time i {
  color: var(--gold-ancient);
  margin-right: 0.5rem;
  width: 16px;
}

.event-time {
  font-size: 1rem;
  color: var(--mist);
  opacity: 0.8;
}

/* Ticket Button */
.event-link {
  display: inline-block;
  margin-top: 1.2rem;
  font-family: 'Almendra', serif;
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: #fff;
  background: linear-gradient(135deg, var(--gold-ancient), var(--gold-glow));
  padding: 0.7rem 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.event-link:hover {
  transform: translateY(-2px);
  color: #444;
  box-shadow: 0 5px 20px rgba(205, 164, 52, 0.4);
}

/* Ticket button glow when card is hovered */
.event-card:hover .event-link {
  box-shadow: 0 0 25px rgba(205, 164, 52, 0.7);
}

/* No Events State */
.no-events {
  text-align: center;
  padding: 4rem 2rem;
  background: rgba(33, 38, 45, 0.5);
  border: 1px dashed var(--twilight);
}

.no-events i {
  font-size: 3rem;
  color: var(--gold-ancient);
  margin-bottom: 1rem;
  opacity: 0.4;
}

.no-events p {
  font-family: 'Almendra', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--mist);
}

/* ==========================================================================
   ARTISTS SECTION
   ========================================================================== */
#artists {
  position: relative;
  overflow: hidden;
}

#artists::before {
  content: "";
  position: absolute;
  inset: -10%;
  background-image: url("https://concordiandawn.com/wp-content/uploads/2025/12/rosetta_concordian.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  animation: rosetta-rotate 340s linear infinite;
  transform-origin: center;
  filter: blur(1.5px) contrast(1.05) brightness(0.95);
  z-index: 0;
}

@media (max-width: 768px) {
  #artists::before {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

#artists::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--midnight), var(--deep-blue));
  opacity: 0.9;
  z-index: 1;
}

#artists > * {
  position: relative;
  z-index: 2;
}

@keyframes rosetta-rotate {
  from { transform: rotate(0deg) scale(1.05); }
  to { transform: rotate(360deg) scale(1.05); }
}

@media (prefers-reduced-motion: reduce) {
  #artists::before {
    animation: none;
  }
}

.artists-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

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

.artist-card {
  text-align: center;
  transition: transform 0.4s ease;
  cursor: pointer;
  position: relative;
}

.artist-card:hover {
  transform: translateY(-10px);
}

.artist-image-wrapper {
  position: relative;
  width: 240px;
  height: 240px;
  margin: 0 auto 1rem;
}

.artist-image-wrapper::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px solid var(--gold-ancient);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
  transform: scale(0.9);
}

.artist-card:hover .artist-image-wrapper::before {
  opacity: 1;
  transform: scale(1);
}

.artist-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(30%);
  transition: all 0.4s ease;
}

.artist-card:hover .artist-image {
  filter: grayscale(0%);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.artist-name {
  font-family: 'Almendra', serif;
  font-size: 1.55rem;
  color: var(--starlight);
  margin-bottom: 0.3rem;
}

.artist-role {
  font-family: 'Spectral', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--gold-ancient);
}

/* Artist Modal */
.artist-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 17, 23, 0.95);
  z-index: 1000;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.artist-modal.active {
  display: flex;
  opacity: 1;
}

.artist-modal-content {
  background: linear-gradient(135deg, var(--twilight), var(--deep-blue));
  border: 2px solid var(--gold-ancient);
  max-width: 500px;
  width: 100%;
  padding: 3rem;
  text-align: center;
  position: relative;
  animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
  from { transform: translateY(-30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.artist-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--mist);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.artist-modal-close:hover {
  color: var(--gold-glow);
}

.artist-modal-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold-ancient);
  margin-bottom: 1.5rem;
}

.artist-modal-name {
  font-family: 'Almendra Display', serif;
  font-size: 2rem;
  color: var(--starlight);
  margin-bottom: 0.5rem;
}

.artist-modal-role {
  font-family: 'Spectral', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold-ancient);
  margin-bottom: 1.5rem;
}

.artist-modal-bio {
  font-family: 'Spectral', serif;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--moonlight);
}

/* ==========================================================================
   PRESS SECTION
   ========================================================================== */
#press {
  background: radial-gradient(ellipse at center, var(--twilight), var(--midnight));
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.press-container {
  max-width: 850px;
  margin: 0 auto;
}

.press-quote {
  position: relative;
  padding: 2.5rem;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, rgba(205, 164, 52, 0.05), transparent);
  border: 1px solid rgba(205, 164, 52, 0.15);
}

.press-quote:last-child {
  margin-bottom: 0;
}

.press-quote::before {
  content: '❝';
  font-size: 4rem;
  color: var(--gold-ancient);
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  opacity: 0.3;
  line-height: 1;
}

.press-quote::after {
  content: '❞';
  font-size: 4rem;
  color: var(--gold-ancient);
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  opacity: 0.3;
  line-height: 1;
}

.press-quote blockquote {
  font-family: 'Spectral', serif;
  font-size: 1.55rem;
  font-style: italic;
  font-weight: 300;
  line-height: 2;
  color: var(--moonlight);
  margin-bottom: 1.2rem;
  padding-left: 2rem;
}

.press-quote cite {
  font-size: 1rem;
  color: var(--gold-ancient);
  display: block;
  padding-left: 2rem;
}

.press-container a {
  color: white;
  text-decoration: none;
}

.press-container a:hover {
  color: var(--moonlight);
}

/* ==========================================================================
   CONTACT / FOOTER SECTION
   ========================================================================== */
#contact {
  background: linear-gradient(to bottom, var(--deep-blue), var(--midnight));
  text-align: center;
}

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

.contact-booking {
  margin-bottom: 2rem;
}

.contact-booking p {
  font-family: 'Spectral', serif;
  font-style: italic;
  color: var(--mist);
  margin-bottom: 0.8rem;
}

.contact-email {
  font-family: 'Almendra', serif;
  font-size: 1.3rem;
  color: var(--starlight);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-email:hover {
  color: var(--gold-glow);
  text-shadow: 0 0 20px rgba(205, 164, 52, 0.5);
}

.gems-link {
  margin: 2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.gems-link img {
  height: 120px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.gems-link img:hover {
  opacity: 1;
}

.support-btn {
  display: inline-block;
  font-family: 'Almendra', serif;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--gold-ancient), var(--gold-glow));
  padding: 1rem 2.5rem;
  text-decoration: none;
  margin: 1.5rem 0;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(205, 164, 52, 0.3);
}

.support-btn:hover {
  color: #666;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(205, 164, 52, 0.5);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
}

.social-links a {
  color: var(--mist);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: var(--gold-glow);
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--twilight);
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--mist);
  opacity: 0.6;
}

.fiscal-note {
  font-size: 0.75rem;
  color: var(--mist);
  opacity: 0.4;
  font-style: italic;
  margin-top: 0.5rem;
}

/* Footer Links (Privacy, Terms, etc.) */
.footer-links {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--mist);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold-ancient);
  opacity: 1;
}

/* ==========================================================================
   SCROLL UP BUTTON
   ========================================================================== */
.scroll-up {
  position: fixed;
  right: 2rem;
  bottom: 3rem;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transform: translateY(10px);
  z-index: 999;
}

.scroll-up.visible {
  display: flex;
  opacity: 0.8;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-up span {
  font-family: 'Almendra', serif;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mist);
}

.scroll-up a {
  color: var(--gold-ancient);
  font-size: 1.8rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.scroll-up a:hover {
  color: var(--gold-glow);
  text-shadow: 0 0 15px var(--gold-glow);
}

@media (max-width: 768px) {
  .scroll-up {
    right: 50%;
    transform: translateX(50%) translateY(10px);
  }
  
  .scroll-up.visible {
    transform: translateX(50%) translateY(0);
  }
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.invert {
  filter: invert(1) contrast(1.2);
}

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   LEGAL / POLICY PAGES
   ========================================================================== */
.page-legal {
  background: var(--midnight);
  min-height: 100vh;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
}

.legal-content h1 {
  font-family: 'Almendra Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--starlight);
  margin-bottom: 1rem;
  text-align: center;
}

.legal-content .last-updated {
  text-align: center;
  color: var(--mist);
  font-style: italic;
  margin-bottom: 3rem;
  font-size: 0.9rem;
}

.legal-content h2 {
  font-family: 'Almendra', serif;
  font-size: 1.8rem;
  color: var(--gold-ancient);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--twilight);
}

.legal-content h3 {
  font-family: 'Almendra', serif;
  font-size: 1.3rem;
  color: var(--gold-glow);
  margin: 1.5rem 0 0.8rem;
}

.legal-content p {
  color: var(--moonlight);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

.legal-content ul,
.legal-content ol {
  color: var(--moonlight);
  margin: 1rem 0 1.5rem 2rem;
  line-height: 1.9;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: var(--gold-ancient);
}

.legal-content a:hover {
  color: var(--gold-glow);
  text-decoration: underline;
}

.legal-back {
  display: inline-block;
  margin-top: 3rem;
  font-family: 'Almendra', serif;
  font-size: 1rem;
  color: var(--gold-ancient);
  text-decoration: none;
  transition: all 0.3s ease;
}

.legal-back i {
  margin-right: 0.5rem;
}

.legal-back:hover {
  color: var(--gold-glow);
  transform: translateX(-5px);
}

/* ==========================================================================
   WORDPRESS SPECIFIC OVERRIDES
   ========================================================================== */
.wp-block-image img {
  border-radius: 4px;
}

.wp-block-quote {
  border-left: 3px solid var(--gold-ancient);
  padding-left: 1.5rem;
  font-style: italic;
  color: var(--moonlight);
}

.wp-block-button__link {
  background: linear-gradient(135deg, var(--gold-ancient), var(--gold-glow));
  color: #fff;
  font-family: 'Almendra', serif;
  padding: 0.8rem 1.5rem;
  transition: all 0.3s ease;
}

.wp-block-button__link:hover {
  color: #444;
  transform: translateY(-2px);
}

/* Hide admin bar offset on frontend */
html {
  margin-top: 0 !important;
}

#wpadminbar {
  position: fixed !important;
}
/* ==========================================================================
   PRESS QUOTES - CONCORDIAN DAWN STYLING
   Add this CSS to your theme's style.css or the Customizer > Additional CSS
   ========================================================================== */

/* Carousel Structure */
.ttpq-carousel {
    position: relative;
    max-width: 850px;
    margin: 0 auto;
    padding: 0 80px; /* Space for side arrows */
}

.ttpq-carousel__viewport {
    overflow: hidden;
}

.ttpq-carousel__track {
    position: relative;
}

.ttpq-carousel__slide {
    display: none;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.ttpq-carousel__slide.is-active {
    display: block;
    opacity: 1;
    animation: fadeInQuote 2s ease-in-out;
}

@keyframes fadeInQuote {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Background Image Support */
.ttpq-slide__background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.ttpq-slide__background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ttpq-slide__background-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 17, 23, 0.8);
}

.ttpq-slide__content {
    position: relative;
    z-index: 1;
}

/* Individual Quote Styling */
.ttpq-quote {
    position: relative;
    padding: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, rgba(205, 164, 52, 0.05), transparent);
    border: 1px solid rgba(205, 164, 52, 0.15);
}

.ttpq-quote:last-child {
    margin-bottom: 0;
}

/* Decorative Quote Mark */
.ttpq-quote::before {
    content: '❝';
    font-size: 4rem;
    color: var(--gold-ancient, #cda434);
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    opacity: 0.3;
    line-height: 1;
}

/* Quote Text */
.ttpq-quote__text {
    font-family: 'Spectral', serif;
    font-size: 1.55rem;
    font-style: italic;
    font-weight: 300;
    line-height: 2;
    color: var(--moonlight, #c9d1d9);
    margin: 0 0 1.2rem 0;
    padding-left: 2rem;
    border: none;
    quotes: none;
}

/* Remove default blockquote styling */
.ttpq-quote__text::before,
.ttpq-quote__text::after {
    content: none;
}

/* Attribution */
.ttpq-quote__attribution {
    font-family: 'Spectral', serif;
    font-size: 1rem;
    color: var(--gold-ancient, #cda434);
    display: block;
    padding-left: 2rem;
}

.ttpq-quote__author {
    font-weight: 500;
}

.ttpq-quote__author::after {
    content: ' — ';
}

.ttpq-quote__publication {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

a.ttpq-quote__publication:hover {
    color: var(--moonlight, #c9d1d9);
}

.ttpq-quote__date {
    opacity: 0.7;
    margin-left: 0.5rem;
}

.ttpq-quote__date::before {
    content: '(';
}

.ttpq-quote__date::after {
    content: ')';
}

/* Closing Quote Mark */
.ttpq-quote::after {
    content: '❞';
    font-size: 4rem;
    color: var(--gold-ancient, #cda434);
    position: absolute;
    bottom: 1.5rem;
    right: 2rem;
    opacity: 0.3;
    line-height: 1;
}

/* Medieval Arrow Navigation - Positioned on Sides */
.ttpq-carousel__navigation {
    display: block;
}

.ttpq-carousel__button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 60px;
    height: 60px;
    opacity: 0.7;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10;
}

.ttpq-carousel__button::before {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Left arrow - pulls left on hover like a bow */
.ttpq-carousel__button--prev {
    left: 0;
    transform-origin: right center;
}

.ttpq-carousel__button--prev:hover {
    opacity: 1;
    transform: translateY(-50%) translateX(-8px);
    filter: drop-shadow(0 0 15px rgba(205, 164, 52, 0.6));
}

.ttpq-carousel__button--prev:hover::before {
    transform: scaleX(1.25) scaleY(0.92);
}

/* Right arrow - pulls right on hover like a bow */
.ttpq-carousel__button--next {
    right: 0;
    transform-origin: left center;
}

.ttpq-carousel__button--next:hover {
    opacity: 1;
    transform: translateY(-50%) translateX(8px);
    filter: drop-shadow(0 0 15px rgba(205, 164, 52, 0.6));
}

.ttpq-carousel__button--next:hover::before {
    transform: scaleX(1.25) scaleY(0.92);
}

/* Bounce animation on click */
.ttpq-carousel__button.clicked {
    animation: bowRelease 0.6s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

.ttpq-carousel__button--prev.clicked::before {
    animation: arrowBouncePrev 0.6s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

.ttpq-carousel__button--next.clicked::before {
    animation: arrowBounceNext 0.6s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

@keyframes bowRelease {
    0% { transform: translateY(-50%) scale(0.85); }
    15% { transform: translateY(-50%) scale(1.2); }
    30% { transform: translateY(-50%) scale(0.9); }
    45% { transform: translateY(-50%) scale(1.1); }
    60% { transform: translateY(-50%) scale(0.95); }
    75% { transform: translateY(-50%) scale(1.05); }
    90% { transform: translateY(-50%) scale(0.98); }
    100% { transform: translateY(-50%) scale(1); }
}

@keyframes arrowBouncePrev {
    0% { transform: scaleX(1.4) translateX(-10px); }
    15% { transform: scaleX(0.7) translateX(15px); }
    30% { transform: scaleX(1.2) translateX(-8px); }
    45% { transform: scaleX(0.85) translateX(10px); }
    60% { transform: scaleX(1.1) translateX(-5px); }
    75% { transform: scaleX(0.92) translateX(6px); }
    90% { transform: scaleX(1.03) translateX(-2px); }
    100% { transform: scaleX(1) translateX(0); }
}

@keyframes arrowBounceNext {
    0% { transform: scaleX(1.4) translateX(10px); }
    15% { transform: scaleX(0.7) translateX(-15px); }
    30% { transform: scaleX(1.2) translateX(8px); }
    45% { transform: scaleX(0.85) translateX(-10px); }
    60% { transform: scaleX(1.1) translateX(5px); }
    75% { transform: scaleX(0.92) translateX(-6px); }
    90% { transform: scaleX(1.03) translateX(2px); }
    100% { transform: scaleX(1) translateX(0); }
}

/* Hide default arrow text */
.ttpq-carousel__button-icon {
    display: none;
}

/* Medieval Arrow Images */
.ttpq-carousel__button--prev::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: url('https://concordiandawn.com/wp-content/uploads/2025/12/CD-Left-Medieval-Nav.png') center / contain no-repeat;
}

.ttpq-carousel__button--next::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: url('https://concordiandawn.com/wp-content/uploads/2025/12/CD-Right-Medieval-Nav.png') center / contain no-repeat;
}

/* Hide Dot Indicators */
.ttpq-carousel__indicators {
    display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .ttpq-carousel {
        padding: 0 50px;
    }
    
    .ttpq-quote {
        padding: 1.5rem;
    }
    
    .ttpq-quote::before {
        font-size: 3rem;
        top: 1rem;
        left: 1rem;
    }
    
    .ttpq-quote::after {
        font-size: 3rem;
        bottom: 1rem;
        right: 1rem;
    }
    
    .ttpq-quote__text {
        font-size: 1.2rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .ttpq-quote__attribution {
        padding-left: 1.5rem;
    }
    
    .ttpq-carousel__button {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 500px) {
    .ttpq-carousel {
        padding: 0 35px;
    }
    
    .ttpq-carousel__button {
        width: 30px;
        height: 30px;
    }
}

.cd-header-logo img {
    visibility: hidden;
}

@media (max-width: 900px) {
    .cd-header-logo {
        visibility: hidden;
    }
}

.scroll-up.visible.faded {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(10px) !important;
}

@media (max-width: 768px) {
    .scroll-up.visible.faded {
        transform: translateX(50%) translateY(10px) !important;
    }
}

@media (max-width: 768px) {
    .artist-modal-content {
        max-height: 80vh !important;
        overflow-y: auto !important;
        margin: auto 1rem !important;
    }
    
    .artist-modal-body {
        max-height: none !important;
        overflow-y: visible !important;
    }
    
    .artist-modal-image {
        width: 120px !important;
        height: 120px !important;
        flex-shrink: 0;
    }
}

/* ==========================================================================
   SUPPORT BUTTON SPARKLE EFFECT
   ========================================================================== */
.support-btn {
  position: relative;
  overflow: visible;
}

.support-btn-wrapper {
  position: relative;
  display: inline-block;
}

.support-sparkles {
  position: absolute;
  inset: -40px;
  pointer-events: none;
  z-index: 0;
}

.support-sparkle {
  position: absolute;
  width: 16px;
  height: 16px;
  background: url('https://concordiandawn.com/wp-content/uploads/2025/12/star-parchment.png') center / contain no-repeat;
  opacity: 0;
  pointer-events: none;
}

.support-btn-wrapper:hover .support-sparkle {
  animation: sparkleOut var(--duration) ease-out forwards;
  animation-delay: var(--delay);
}

@keyframes sparkleOut {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(0.3) rotate(0deg);
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(var(--tx), var(--ty)) scale(1) rotate(360deg);
    filter: drop-shadow(0 0 8px var(--gold-glow));
  }
}