/* Design System Tokens - BoldWP Magazine Style (Teal/Blue/Orange) */
:root {
  --color-primary-teal: #3D8C95; /* Top Bar, Badges, Accents */
  --color-secondary-blue: #225675; /* Main Nav, Footer, Headings */
  --color-highlight-orange: #E6873C; /* Buttons, Links */
  --color-background: #FFFFFF; /* Clean White */
  --color-text-main: #222222; /* Dark Gray */
  --font-sans: 'Inter', 'Roboto', Arial, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --base-font-size: 16px;
}

html {
  font-family: var(--font-sans);
  font-size: var(--base-font-size);
  background: var(--color-background);
  color: var(--color-text-main);
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Playfair Display for all headings */
h1, h2, h3, h4, h5, h6,
.entry-title,
.boldwp-fp05-post-title,
.boldwp-widget-title {
  font-family: var(--font-display);
}

/* BoldWP Thumbnail Utility */
.boldwp-thumbnail {
  object-fit: cover;
  border-radius: 2px;
}

/* BoldWP Related Articles Card (Image Top 16:9, Text Bottom) */
.boldwp-card {
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.boldwp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.boldwp-card-image {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  position: relative;
  overflow: hidden;
}

.boldwp-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.boldwp-card-content {
  padding: 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.boldwp-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 0.6rem 0;
  color: var(--color-secondary-blue);
  line-height: 1.3;
}

.boldwp-card-meta {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-primary-teal);
  margin: 0;
}

/* BoldWP Overlay Card (Image Background + Dark Gradient + White Text) */
.boldwp-overlay-card {
  position: relative;
  height: 320px;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  display: block;
}

.boldwp-overlay-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.boldwp-overlay-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.boldwp-overlay-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
  padding: 1.5rem;
  color: #fff;
}

.boldwp-overlay-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: #fff;
  line-height: 1.3;
}

.boldwp-overlay-card-meta {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  margin: 0;
}

/* Mobile responsive adjustments */
@media (max-width: 767px) {
  .boldwp-nav-bar .nav-links {
    flex-direction: column;
    gap: 0;
  }
  .boldwp-nav-bar .nav-links a {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .boldwp-logo-bar img {
    max-height: 60px !important;
  }
  
  /* Concert sidebar list mobile adjustments */
  .concert-item {
    flex-wrap: wrap;
  }
  .concert-action {
    width: 100%;
    margin-top: 0.5rem;
  }
  .concert-action a {
    display: block !important;
    text-align: center;
  }
}

footer {
  background: #225675;
  color: #fff;
  text-align: center;
  padding: 1.5rem 0 1rem 0;
  margin-top: auto;
}

.footer-social {
  margin-bottom: 0.5rem;
}

.footer-social a {
  display: inline-block;
  margin: 0 0.5rem;
  color: #fff;
  font-size: 1.5rem;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: #3D8C95;
}

.footer-contact {
  display: block;
  margin-bottom: 0.5rem;
  color: #fff;
  text-decoration: underline;
}

/* Typography Overrides - Lighter Weights for Elegance */
h1, h2, h3, h4, h5, h6 {
  font-weight: 400 !important;
}

.entry-title,
.boldwp-fp05-post-title,
.boldwp-widget-title {
  font-weight: 500 !important;
}

body,
.entry-content,
.boldwp-box-inside {
  font-weight: 300;
}

/* Subtle Container Shadows */
.boldwp-site-wrapper {
  box-shadow: 0 4px 20px rgba(0,0,0,0.05) !important;
}

.boldwp-box {
  box-shadow: 0 2px 8px rgba(0,0,0,0.04) !important;
}

/* Date Badge Overlay (Concert Detail) - ORANGE */
.date-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background-color: #E6873C;
  color: #fff;
  padding: 12px 18px;
  text-align: center;
  font-family: var(--font-display);
  border-radius: 8px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  min-width: 75px;
}

.date-month {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 3px;
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.date-day {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Venue Name Styling */
.venue-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-secondary-blue);
  margin: 0 0 0.3rem 0;
  font-family: var(--font-display);
}

/* Remove Bootstrap/Default Conflicts */
* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

ul, ol {
  margin: 0;
  padding: 0;
}

/* Stretched Link Pattern - Makes entire card clickable */
.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

/* Ensure child links/buttons stay on top */
.stretched-link ~ a,
.stretched-link ~ button {
  position: relative;
  z-index: 2;
}

/* Marquee Ticker Animation */
.ticker-wrap {
  overflow: hidden;
  white-space: nowrap;
  background: var(--color-primary-teal);
  color: #fff;
  padding: 0.7rem 0;
  font-weight: 600;
  font-size: 1.05rem;
}

.ticker-move {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: ticker 50s linear infinite;
}

@keyframes ticker {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}

/* Stats Grid Widget */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1rem;
}

.stats-card {
  background: var(--color-secondary-blue);
  color: #fff;
  text-align: center;
  padding: 1.25rem 0.75rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(34, 86, 117, 0.2);
}

.stats-number {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.35rem;
  color: var(--color-highlight-orange);
}

.stats-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.95;
  font-weight: 600;
}

/* ===== Submit a Resource ===== */
.submit-hub {
  max-width: 900px;
  margin: 2.5rem auto;
  padding: 0 1rem;
}
.submit-hub-header {
  text-align: center;
  margin-bottom: 2rem;
}
.submit-hub-header h1 {
  color: var(--color-secondary-blue);
  margin-bottom: 0.5rem;
}
.submit-hub-header p {
  color: #555;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.submit-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (min-width: 700px) {
  .submit-hub-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.submit-hub-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border: 2px solid #e0e8ed;
  border-radius: 10px;
  padding: 1.5rem 1.25rem;
  text-decoration: none;
  color: var(--color-text-main);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.submit-hub-card:hover {
  border-color: var(--color-primary-teal);
  box-shadow: 0 4px 16px rgba(61,140,149,0.18);
  transform: translateY(-2px);
}
.submit-hub-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.submit-hub-card h2 {
  font-size: 1.1rem;
  color: var(--color-secondary-blue);
  margin: 0 0 0.4rem;
}
.submit-hub-card p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.5;
  margin: 0 0 0.75rem;
  flex: 1;
}
.submit-hub-cta {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-highlight-orange);
}

/* Submit Form Layout */
.submit-form-wrap {
  max-width: 720px;
  margin: 2.5rem auto;
  padding: 0 1rem 3rem;
}
.submit-form-wrap h1 {
  color: var(--color-primary-teal);
  margin-bottom: 0.4rem;
}
.submit-form-wrap .submit-breadcrumb {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 1.5rem;
}
.submit-form-wrap .submit-breadcrumb a {
  color: var(--color-primary-teal);
  text-decoration: none;
}
.submit-section {
  background: #f5f8fa;
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}
.submit-section-title {
  color: var(--color-secondary-blue);
  font-size: 1rem;
  margin: 0 0 1rem;
  font-family: var(--font-sans);
}
.submit-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 600px) {
  .submit-grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}
.submit-field {
  display: flex;
  flex-direction: column;
}
.submit-field.full-width {
  grid-column: 1 / -1;
}
.submit-field label {
  display: block;
  font-weight: 600;
  color: #225675;
  margin-bottom: 0.3rem;
  font-size: 0.88rem;
}
.submit-field input[type="text"],
.submit-field input[type="email"],
.submit-field input[type="tel"],
.submit-field input[type="url"],
.submit-field input[type="date"],
.submit-field select,
.submit-field textarea {
  padding: 0.65rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  color: var(--color-text-main);
  background: #fff;
  width: 100%;
  box-sizing: border-box;
}
.submit-field textarea {
  min-height: 90px;
  resize: vertical;
}
.submit-field input:focus,
.submit-field select:focus,
.submit-field textarea:focus {
  outline: none;
  border-color: var(--color-primary-teal);
  box-shadow: 0 0 0 2px rgba(61,140,149,0.15);
}
.submit-radio-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}
.submit-radio-group label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 400;
  color: #444;
  cursor: pointer;
}
.submit-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
  margin-top: 0.75rem;
  font-size: 0.88rem;
  color: #444;
  line-height: 1.5;
}
.submit-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.req { color: #dc3545; }
.submit-btn {
  display: inline-block;
  padding: 0.8rem 2.5rem;
  background: var(--color-highlight-orange);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.2s;
}
.submit-btn:hover {
  background: #d07530;
}
.submit-note {
  color: #888;
  font-size: 0.82rem;
  margin-top: 0.5rem;
}
.submit-alert {
  padding: 1rem 1.25rem;
  border-radius: 6px;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}
.submit-alert.success {
  background: var(--color-primary-teal);
  color: #fff;
}
.submit-alert.error {
  background: #dc3545;
  color: #fff;
}

/* Report a Problem link (appears below listing cards) */
.report-link {
  display: inline-block;
  font-size: 0.78rem;
  color: #aaa;
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  transition: color 0.15s;
}
.report-link:hover {
  color: #b94040;
}

/* Report a Problem section (detail pages above footer) */
.report-problem {
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
}
.report-problem a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--color-primary-teal);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
}
.report-problem a:hover {
  color: var(--color-highlight-orange);
}
