/* v=20260106u */
/*
 * Spanish Guitar Music - HUB AUTHORITY OVERRIDES
 *
 * Purpose: Differentiate spanishguitarmusic.info as the canonical authority hub
 * This file layers ON TOP of custom-overrides.css
 *
 * Design intent:
 * - More reference-guide / authority hub feel
 * - Stronger typographic hierarchy
 * - Denser, more informational layout
 * - Clear section demarcation
 * - Less "brochure", more "booking authority"
 *
 * DO NOT:
 * - Apply to other network sites
 * - Copy danielfriesmusic.com aesthetics
 * - Change form logic or endpoints
 * - Modify schema or SEO elements
 */

/* ============================================
   GLOBAL FONT - MATCH INDEX PAGE
   ============================================ */

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  -webkit-font-smoothing: antialiased !important;
}

h1, h2, h3, h4, h5, h6,
.hero-title,
.hero-slogan {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* ============================================
   HUB IDENTITY - NAVIGATION PROMINENCE
   ============================================ */

/* Complete navbar override to match Index page exactly */
.navbar {
  background: linear-gradient(180deg, #1a1a2e 0%, #16162a 100%) !important;
  border-bottom: 3px solid var(--sgm-gold) !important;
  padding: 0.5rem 0 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
  /* Override Bootstrap navbar defaults */
  position: relative !important;
  display: block !important;
  flex-wrap: nowrap !important;
  margin-bottom: 0 !important;
}

/* Container inside navbar - CRITICAL: flexbox layout */
.navbar .container,
.navbar > .container {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  max-width: 1100px !important;
}

/* CRITICAL: Override Bootstrap .navbar-brand defaults */
.navbar-brand,
.navbar .navbar-brand {
  padding: 0 !important;
  margin: 0 !important;
  font-size: inherit !important;
  line-height: normal !important;
  display: inline-flex !important;
  align-items: center !important;
}

/* Logo container - must be visible */
.navbar-brand .logo,
.navbar .navbar-brand .logo {
  display: inline-block !important;
  margin-right: 0.5rem !important;
  vertical-align: middle !important;
}

.navbar-brand .logo img,
.navbar .navbar-brand .logo img {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
}

/* Hub indicator badge - on the title span, AFTER the logo */
.navbar-brand::before,
.navbar .navbar-brand::before {
  display: none !important;  /* Remove any ::before on brand itself */
}

.navbar-brand .navbar-title::before,
.navbar .navbar-brand .navbar-title::before {
  content: "BOOKING HUB" !important;
  display: block !important;
  font-size: 0.6rem !important;
  letter-spacing: 0.2em !important;
  color: var(--sgm-gold) !important;
  text-transform: uppercase !important;
  margin-bottom: 2px !important;
  font-weight: 600 !important;
}

.navbar-brand .navbar-title,
.navbar .navbar-brand .navbar-title {
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: #fff !important;
  letter-spacing: 0.03em !important;
  display: inline-block !important;
  vertical-align: middle !important;
}

/* Navigation list - CRITICAL: horizontal flex layout */
.navbar-nav,
.navbar .navbar-nav,
ul.navbar-nav {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
  list-style: none !important;
  gap: 0.25rem !important;
  flex-wrap: nowrap !important;
  -ms-flex-wrap: nowrap !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
  /* Override Bootstrap collapse behavior */
  position: relative !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
}

/* Hide Bootstrap collapse wrapper if present */
.navbar-collapse,
.navbar .navbar-collapse {
  display: flex !important;
  flex-basis: auto !important;
}

/* Hide hamburger toggler */
.navbar-toggler {
  display: none !important;
}

/* Nav items - inline, horizontal */
.nav-item,
.navbar-nav .nav-item,
.navbar-nav > .nav-item {
  display: inline-block !important;
  float: none !important;
  position: relative !important;
}

/* Nav links - consistent styling - MATCH INDEX EXACTLY */
.nav-link,
.navbar-nav .nav-link,
.navbar-nav > .nav-item > .nav-link {
  display: inline-block !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  padding: 0.4rem 0.6rem !important;
  color: rgba(255, 255, 255, 0.85) !important;
  transition: all 0.2s !important;
  border: none !important;
  background: transparent !important;
  white-space: nowrap !important;
}

.nav-link:hover,
.nav-item.active .nav-link,
.navbar-nav .nav-item.active .nav-link,
.navbar-nav > .nav-item.active > .nav-link {
  color: var(--sgm-gold) !important;
  background: rgba(201, 168, 108, 0.1) !important;
  border-radius: 3px !important;
}

/* Remove any underline animations or borders from Bootstrap */
.nav-link::after,
.navbar-nav .nav-link::after {
  display: none !important;
}

.navbar-nav > .nav-item > .nav-link {
  border-bottom: none !important;
  border-color: transparent !important;
}

/* ============================================
   HERO - COMPACT & INFORMATIONAL
   ============================================ */

/* Page header - compact style matching performances page */
.page-header {
  background: linear-gradient(135deg, #f8f6f3 0%, #f0ebe3 100%) !important;
  border-bottom: 1px solid rgba(201, 168, 108, 0.3) !important;
  padding: 1.5rem 0 !important;
  margin: 0 !important;
  text-align: center !important;
}

.page-title {
  font-size: 1.3rem !important;
  font-weight: 700 !important;
  color: #1a1a2e !important;
  margin: 0 0 0.25rem 0 !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

.page-subtitle {
  font-size: 0.85rem !important;
  color: #666 !important;
  margin: 0 !important;
  text-transform: none !important;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* Hero - legacy support */
.hero {
  padding: 0.5rem 0 !important;
  min-height: auto !important;
  background: linear-gradient(135deg, #f8f6f3 0%, #f0ebe3 100%) !important;
  border-bottom: 1px solid rgba(201, 168, 108, 0.3);
}

.hero .row {
  margin: 0 !important;
  padding: 0 !important;
}

.hero .col-lg-8 {
  padding: 0 !important;
}

/* Remove Bootstrap padding classes on hero */
.hero.pb-5,
.hero.pb-3 {
  padding-bottom: 1rem !important;
}

.hero .container {
  max-width: 1100px;
}

/* Logo smaller in hub context */
.hero .text-center img {
  max-width: 108px !important;
}

/* H1 - match index page exactly */
.hero-title {
  font-size: 1.4rem !important;
  font-weight: 700 !important;
  color: #1a1a2e !important;
  letter-spacing: 0.02em !important;
  margin-bottom: 0.25rem !important;
  text-transform: none !important;
}

/* Override Bootstrap margin classes on hero title */
.hero-title.mb-4,
.hero-title.mb-2 {
  margin-bottom: 0.25rem !important;
}

.hero-slogan {
  font-size: 0.9rem !important;
  color: #666 !important;
  font-style: normal !important;
  font-weight: 400 !important;
  text-transform: none !important;
}

/* ============================================
   CONTENT STRUCTURE - REFERENCE GUIDE FEEL
   ============================================ */

/* Main content area - more structured */
.container.pt-3,
.container.pt-5,
.container {
  max-width: 1100px !important;
  padding-top: 0.5rem !important;
}

/* Two-column layout adjustments for denser info */
.row.intro {
  gap: 2rem;
}

.row.intro > .col-sm-6:first-child {
  border-right: 1px solid rgba(201, 168, 108, 0.2);
  padding-right: 2rem;
}

/* Section headers - clear hierarchy - FORCE NO UPPERCASE */
h2, h3, h4,
.stacks_in h2,
.stacks_in h3,
.row.intro h2,
.row.intro h3,
.col-sm-6 h2,
.col-sm-6 h3,
.col-lg-8 h2,
.col-lg-8 h3,
.col-lg-8.mx-auto h2,
.col-lg-8.mx-auto h3,
.container h2,
.container h3,
.container .row h2,
.container .row h3,
.container .row.intro .col-lg-8 h2,
.container .row.intro .col-lg-8 h3 {
  font-size: 1.1rem !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  color: #1a1a2e !important;
  border-bottom: none !important;
  padding-bottom: 0 !important;
  margin-bottom: 0.75rem !important;
  margin-top: 1.5rem !important;
  font-weight: 700 !important;
}

/* Extra override for any remaining uppercase on headings */
body h2, body h3, body h4 {
  text-transform: none !important;
}

.sidebar-title {
  font-size: 0.85rem !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  color: var(--sgm-gold-dark) !important;
  border-bottom: 2px solid var(--sgm-gold-muted) !important;
  padding-bottom: 0.5rem !important;
  margin-bottom: 1rem !important;
  font-weight: 600 !important;
}

/* Content blocks - clear separation */
/* Content cards - match index page exactly */
.text_stack,
.stacks_in,
.stacks_out,
.row.intro > .col-sm-6:first-child,
.row.intro > .col-lg-8 {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-left: 3px solid var(--sgm-gold);
  padding: 1rem !important;
  margin-bottom: 1rem !important;
  border-radius: 0 4px 4px 0;
  font-size: 0.9rem !important;
  line-height: 1.65 !important;
  color: #333 !important;
}

/* Nested stacks shouldn't double the styling */
.stacks_in .stacks_in,
.stacks_out .stacks_out,
.stacks_in .stacks_out {
  border: none !important;
  border-left: none !important;
  padding: 0 !important;
  margin-bottom: 0.5rem !important;
  background: transparent !important;
}

/* Text density - consistent across site */
.text_stack p,
.stacks_in p,
.stacks_out p,
.row.intro p,
.col-sm-6 p,
.col-lg-8 p {
  font-size: 0.9rem !important;
  line-height: 1.65 !important;
  color: #333 !important;
  margin-bottom: 0.75rem !important;
}

/* Featured venues/info - highlight blocks - FORCE NO UPPERCASE */
strong,
body strong,
.text_stack strong,
.stacks_in strong,
.row.intro strong,
.col-lg-8 strong,
.col-lg-8.mx-auto strong,
.container strong,
li strong,
ul strong,
p strong {
  display: inline;
  background: none;
  padding: 0;
  margin: 0;
  font-size: inherit;
  text-transform: none !important;
  letter-spacing: normal !important;
  color: inherit;
  font-weight: 700;
}

/* ============================================
   LIVE MUSIC BOX - INFORMATION PANEL STYLE
   ============================================ */

.featured-link-box {
  border-radius: 4px !important;
  border: 2px solid var(--sgm-gold) !important;
  padding: 1rem !important;
  margin: 1rem 0 !important;
  position: relative;
}

.featured-link-box::before {
  content: "REGULAR PERFORMANCE";
  position: absolute;
  top: -10px;
  left: 15px;
  background: var(--sgm-gold);
  color: #1a1a2e;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 2px 8px;
  border-radius: 2px;
}

.featured-link-box img {
  max-width: 100px !important;
}

.featured-link-box span {
  font-size: 0.9rem !important;
  font-weight: 600 !important;
}

.featured-link-box .subtitle {
  font-size: 0.75rem !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================
   SIDEBAR - QUICK REFERENCE PANEL
   ============================================ */

.sidebar {
  background: #faf9f7 !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 4px !important;
  padding: 1.25rem !important;
}

.sidebar::before {
  content: "QUICK REFERENCE";
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--sgm-gold-dark);
  border-bottom: 1px solid var(--sgm-gold-muted);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

/* Yelp badge - more compact */
#yelp-biz-badge-rrc-N8pmnkja4YJ0XEYpyjbCrQ {
  transform: scale(0.9);
  transform-origin: top left;
}

/* ============================================
   BUTTONS - UTILITARIAN, NOT FLASHY
   ============================================ */

/* Primary button style - matches landing page */
.btn-primary,
.com_yourhead_stack_button_stack a,
[id$="_button"] a {
  display: inline-block !important;
  background: var(--sgm-dark) !important;
  border: 2px solid var(--sgm-gold) !important;
  border-radius: 4px !important;
  padding: 10px 24px !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: none !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
}

.btn-primary:hover,
.com_yourhead_stack_button_stack a:hover,
[id$="_button"] a:hover {
  background: var(--sgm-gold) !important;
  color: var(--sgm-dark) !important;
  transform: none !important;
  box-shadow: 0 2px 8px rgba(201, 168, 108, 0.3) !important;
}

/* ============================================
   YOUTUBE EMBED - CONTAINED
   ============================================ */

.html_stack iframe {
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  border-radius: 4px;
  max-width: 100%;
}

/* ============================================
   TESTIMONIALS - LIGHTER, SOFTER STYLE
   ============================================ */

blockquote {
  font-size: 0.95rem !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  color: #666 !important;
  border-left: 3px solid var(--sgm-gold) !important;
  padding: 0.75rem 1rem !important;
  margin: 1rem 0 !important;
  background: rgba(201, 168, 108, 0.05) !important;
  border-radius: 0 4px 4px 0 !important;
  font-style: italic !important;
}

blockquote strong,
blockquote .attribution {
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  font-style: normal !important;
  color: #888 !important;
  display: block !important;
  margin-top: 0.5rem !important;
}

.text_stack em,
.stacks_in em,
.row.intro em {
  display: block;
  font-size: 0.8rem !important;
  color: #888 !important;
  margin-top: 0.25rem;
  padding-left: 0.75rem;
  border-left: 2px solid var(--sgm-gold-muted);
}

/* Quote styling */
.text_stack p:has(+ em),
.text_stack br + br + * {
  font-style: italic;
  background: rgba(201, 168, 108, 0.05);
  padding: 0.75rem;
  border-radius: 4px;
  margin: 1rem 0 0.25rem;
}

/* ============================================
   FOOTER - INFORMATIONAL HUB FOOTER
   ============================================ */

.footer {
  background: #1a1a2e !important;
  border-top: 3px solid var(--sgm-gold) !important;
  padding: 1.5rem 0 !important;
}

.footer-content {
  font-size: 0.75rem !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.6 !important;
  text-align: center;
  margin-bottom: 1rem;
}

.footer .navbar-nav {
  justify-content: center;
  background: transparent !important;
  flex-wrap: wrap;
}

.footer .nav-link {
  font-size: 0.7rem !important;
  padding: 0.3rem 0.6rem !important;
  opacity: 0.7;
}

.footer .nav-link:hover {
  opacity: 1;
  background: rgba(201, 168, 108, 0.2) !important;
}

/* ============================================
   HORIZONTAL RULES - SECTION DIVIDERS
   ============================================ */

hr {
  border: none !important;
  height: 1px !important;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--sgm-gold-muted) 20%,
    var(--sgm-gold) 50%,
    var(--sgm-gold-muted) 80%,
    transparent 100%) !important;
  margin: 0.5rem 0 !important;
}

/* Override Bootstrap margin classes on hr */
hr.my-5 {
  margin: 0.5rem 0 !important;
}

/* ============================================
   REVERBNATION PLAYER - HIDDEN
   ============================================ */

/* Remove ReverbNation player - outdated, clutters the hub */
iframe[src*="reverbnation"],
.html_stack iframe[src*="reverbnation"] {
  display: none !important;
}

/* ============================================
   MOBILE ADJUSTMENTS - MATCH INDEX PAGE EXACTLY
   ============================================ */

@media (max-width: 992px) {
  /* Navbar stacks vertically - MUST override Bootstrap */
  .navbar .container,
  .navbar > .container {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 0.5rem 1rem !important;
  }

  .navbar-nav,
  .navbar .navbar-nav,
  ul.navbar-nav {
    flex-wrap: wrap !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    gap: 0.25rem !important;
    margin-top: 0.5rem !important;
    padding: 0 !important;
    width: 100% !important;
  }

  .nav-link,
  .navbar-nav .nav-link {
    font-size: 0.65rem !important;
    padding: 0.3rem 0.4rem !important;
  }

  .nav-item,
  .navbar-nav .nav-item {
    display: inline-block !important;
  }
}

@media (max-width: 768px) {
  /* Brand styling for mobile */
  .navbar-brand .navbar-title::before {
    font-size: 0.5rem !important;
  }

  .navbar-brand .navbar-title {
    font-size: 0.85rem !important;
    line-height: 1.3 !important;
  }

  .navbar-brand,
  .navbar .navbar-brand {
    padding: 0 !important;
    margin: 0 !important;
  }

  /* Stack columns vertically */
  .row, .row.intro {
    flex-direction: column;
  }

  .col-sm-6, .col {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  .row.intro > .col-sm-6:first-child {
    border-right: none;
    border-bottom: 1px solid rgba(201, 168, 108, 0.2);
    padding-right: 0;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }

  /* Hero adjustments */
  .hero {
    padding: 0.75rem 0 !important;
  }

  .hero-title {
    font-size: 1.2rem !important;
    padding: 0 0.5rem;
  }

  .hero-slogan {
    font-size: 0.85rem !important;
  }

  /* Content blocks */
  .text_stack {
    padding: 0.75rem !important;
    margin-bottom: 1rem !important;
  }

  .text_stack p,
  .stacks_in p {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
  }

  /* Sidebar */
  .sidebar {
    padding: 1rem !important;
    margin-top: 1rem;
  }

  .sidebar::before {
    font-size: 0.6rem;
  }

  /* Buttons */
  #stacks_in_17_button a,
  #stacks_in_19_button a,
  .btn-primary {
    padding: 8px 16px !important;
    font-size: 0.75rem !important;
    width: 100%;
    text-align: center;
    display: block !important;
  }

  /* Featured link box */
  .featured-link-box {
    padding: 0.75rem !important;
    margin: 0.75rem 0 !important;
  }

  .featured-link-box::before {
    font-size: 0.55rem;
    top: -8px;
    padding: 1px 6px;
  }

  .featured-link-box span {
    font-size: 0.8rem !important;
  }

  /* Embeds */
  .html_stack iframe {
    max-width: 100% !important;
    height: auto !important;
    min-height: 200px;
  }

  /* Footer */
  .footer {
    padding: 1rem 0 !important;
  }

  .footer-content {
    font-size: 0.65rem !important;
    line-height: 1.5;
  }

  .footer .navbar-nav {
    justify-content: center;
  }

  .footer .nav-link {
    font-size: 0.6rem !important;
    padding: 0.2rem 0.4rem !important;
  }
}

/* ============================================
   PRINT STYLES - REFERENCE DOCUMENT
   ============================================ */

@media print {
  .navbar,
  .featured-link-box,
  .html_stack iframe,
  #yelp-biz-badge-rrc-N8pmnkja4YJ0XEYpyjbCrQ,
  .fb-page {
    display: none !important;
  }

  .text_stack {
    border: 1px solid #ccc;
    page-break-inside: avoid;
  }

  body {
    background: white !important;
    color: black !important;
  }
}

/* ============================================
   CONTACT FORM - ELEGANT HUB STYLING
   ============================================ */

/* Form container */
#yd-form-page0 {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  padding: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Form labels */
#yd-form-page0 label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sgm-dark);
  text-transform: none;
  letter-spacing: normal;
  margin-bottom: 0.5rem;
  display: block;
}

/* Hide FontAwesome icons in labels */
#yd-form-page0 label .yd-icon {
  display: none;
}

/* Required asterisk */
#yd-form-page0 .yd-required-symbol {
  color: var(--sgm-gold);
}

/* Input fields */
#yd-form-page0 input[type="text"],
#yd-form-page0 input[type="email"],
#yd-form-page0 input[type="tel"],
#yd-form-page0 input[type="input"],
#yd-form-page0 textarea,
#yd-form-page0 select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  background: #faf9f7;
  color: var(--sgm-text);
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}

#yd-form-page0 input:focus,
#yd-form-page0 textarea:focus,
#yd-form-page0 select:focus {
  outline: none;
  border-color: var(--sgm-gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 108, 0.15);
}

#yd-form-page0 textarea {
  min-height: 120px;
  resize: vertical;
}

/* Control groups spacing */
#yd-form-page0 .control-group {
  margin-bottom: 1.25rem;
}

/* Sub-text helper */
#yd-form-page0 .yd-sub-text {
  font-size: 0.75rem;
  color: var(--sgm-text-light);
  margin-top: 0.25rem;
  font-style: italic;
}

/* Range slider */
#yd-form-page0 input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: rgba(201, 168, 108, 0.3);
  border-radius: 3px;
  border: none;
  padding: 0;
}

#yd-form-page0 input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: var(--sgm-gold);
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid var(--sgm-dark);
}

#yd-form-page0 output {
  display: inline-block;
  margin-left: 0.5rem;
  font-weight: 600;
  color: var(--sgm-gold-dark);
}

/* Submit and Reset buttons */
#yd-form-page0 .yd-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid var(--sgm-gold);
  font-family: inherit;
}

#yd-form-page0 .yd-btn.yd-primary {
  background: var(--sgm-dark);
  color: #fff;
}

#yd-form-page0 .yd-btn.yd-primary:hover {
  background: var(--sgm-gold);
  color: var(--sgm-dark);
}

#yd-form-page0 .yd-btn.yd-reset-btn {
  background: transparent;
  color: var(--sgm-text-light);
  border-color: rgba(0, 0, 0, 0.15);
}

#yd-form-page0 .yd-btn.yd-reset-btn:hover {
  border-color: var(--sgm-gold);
  color: var(--sgm-gold-dark);
}

/* Select dropdown */
#yd-form-page0 select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* Hide spam field */
#rellikmaps {
  display: none !important;
}

/* Form navigation (hide if single page) */
.form-navigation .previous,
.form-navigation .next {
  display: none;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  #yd-form-page0 {
    padding: 1.25rem;
  }

  #yd-form-page0 label {
    font-size: 0.8rem;
  }

  #yd-form-page0 input,
  #yd-form-page0 textarea,
  #yd-form-page0 select {
    font-size: 16px; /* Prevents iOS zoom */
  }

  #yd-form-page0 .yd-btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
