/* ══════════════════════════════════════════════════════
   HIT MADRID TOURS — Utility Classes
   Replaces all inline style= attributes site-wide.
   Loaded on every page via main.css @import or link tag.
   ══════════════════════════════════════════════════════ */

/* ── Colour backgrounds ── */
.bg-teal    { background: var(--teal); }
.bg-coral   { background: var(--coral); }
.bg-yellow  { background: var(--yellow); }
.bg-violet  { background: var(--violet); }
.bg-black   { background: var(--black); }
.bg-sand    { background: var(--sand, #f4f4f4); }
.bg-wa      { background: #25D366; }       /* WhatsApp green */
.bg-dark    { background: var(--dark-bg, #111111); }

/* Admin variants */
.bg-t  { background: var(--t, #4fccc4); }
.bg-c  { background: var(--c, #ff6b6b); }
.bg-y  { background: var(--y, #ffd93d); }
.bg-v  { background: var(--v, #c299ff); }

/* ── Colour text ── */
.text-coral  { color: var(--coral); }
.text-teal   { color: var(--teal); }
.text-yellow { color: var(--yellow); }
.text-violet { color: var(--violet); }
.text-white  { color: var(--white, #fff); }
.text-muted  { color: #aaa; }
.text-muted2 { color: #555; }
.text-muted3 { color: #999; }
.text-dark   { color: #2a2a2a; }
.text-accent { color: var(--accent, #4fccc4); }

/* Admin colour vars */
.tc  { color: var(--t, #4fccc4); }
.yc  { color: var(--y, #ffd93d); }
.cc  { color: var(--c, #ff6b6b); }

/* ── Display ── */
.d-none   { display: none !important; }
.d-block  { display: block; }
.d-flex   { display: flex; }
.d-inline-block { display: inline-block; }

/* ── Flex utilities ── */
.flex-col        { flex-direction: column; }
.flex-wrap       { flex-wrap: wrap; }
.align-center    { align-items: center; }
.align-start     { align-items: flex-start; }
.justify-center  { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end     { justify-content: flex-end; }
.gap-6   { gap: 6px; }
.gap-8   { gap: 8px; }
.gap-9   { gap: 9px; }
.gap-10  { gap: 10px; }
.gap-12  { gap: 12px; }
.gap-14  { gap: 14px; }
.gap-16  { gap: 16px; }
.gap-20  { gap: 20px; }
.gap-24  { gap: 24px; }

/* ── Spacing ── */
.mt-0  { margin-top: 0; }
.mt-4  { margin-top: 4px; }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }
.mt-28 { margin-top: 28px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0  { margin-bottom: 0; }
.mb-4  { margin-bottom: 4px; }
.mb-6  { margin-bottom: 6px; }
.mb-8  { margin-bottom: 8px; }
.mb-10 { margin-bottom: 10px; }
.mb-12 { margin-bottom: 12px; }
.mb-14 { margin-bottom: 14px; }
.mb-16 { margin-bottom: 16px; }
.mb-18 { margin-bottom: 18px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-28 { margin-bottom: 28px; }
.mb-32 { margin-bottom: 32px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.p-0 { padding: 0; }

/* ── Text ── */
.text-center  { text-align: center; }
.text-right   { text-align: right; }
.font-brand   { font-family: var(--font-brand, 'Anton', sans-serif); }
.text-xs      { font-size: 0.75rem; }
.text-sm      { font-size: 0.875rem; }
.font-bold    { font-weight: 700; }
.uppercase    { text-transform: uppercase; }
.lh-base      { line-height: 1.6; }
.lh-lg        { line-height: 1.8; }

/* ── Cursor ── */
.cursor-default  { cursor: default; }
.cursor-pointer  { cursor: pointer; }

/* ── Width/Max-width ── */
.w-full   { width: 100%; }
.mw-400   { max-width: 400px; }
.mw-440   { max-width: 440px; }
.mw-480   { max-width: 480px; }
.mw-540   { max-width: 540px; }
.mw-560   { max-width: 560px; }
.mw-620   { max-width: 620px; }

/* ── Position ── */
.pos-relative { position: relative; }
.pos-absolute { position: absolute; }

/* ── Border ── */
.border-top-none { border-top: none; }

/* ── Opacity ── */
.opacity-60 { opacity: 0.6; }

/* ── Overflow ── */
.overflow-hidden { overflow: hidden; }

/* ── Section backgrounds used inline previously ── */
.section-yellow-band {
  background: var(--yellow);
  padding: 80px 0;
  border-top: 3px solid #000;
}
.section-teal-band {
  background: var(--teal);
  padding: 60px 0;
  border-top: 3px solid #000;
}
.section-black-band {
  background: #304ee3;
  padding: 80px 0;
}
.section-dark-band {
  background: var(--dark-bg, #111);
  padding: 40px 0;
}

/* ── USP cards (about page) ── */
.usp-card-yellow { background: var(--yellow); border-radius: var(--radius); padding: 40px 32px; }
.usp-card-teal   { background: var(--teal);   border-radius: var(--radius); padding: 40px 32px; }
.usp-card-violet { background: var(--violet); border-radius: var(--radius); padding: 40px 32px; }

/* ── Testimonial borders ── */
.testi-border-yellow { border-top: 4px solid var(--yellow); }
.testi-border-teal   { border-top: 4px solid var(--teal);   }
.testi-border-coral  { border-top: 4px solid var(--coral);  }

/* ── Gallery/page hero accent colours ── */
.hero-accent-teal   { background: var(--teal); }
.hero-accent-yellow { background: var(--yellow); }
.hero-accent-coral  { background: var(--coral); }
.hero-accent-violet { background: var(--violet); }

/* ── Logo sizing ── */
.logo-sm { height: 34px; display: block; }
.logo-md { height: 44px; display: block; }

/* ── Gallery page utility (text over dark/yellow sections) ── */
.text-over-dark  { color: rgba(0,0,0,0.65); }
.desc-center     { margin: 12px auto 28px; max-width: 440px; color: rgba(0,0,0,0.65); }
.desc-center-lg  { margin: 16px auto 32px; max-width: 480px; color: rgba(0,0,0,0.65); }

/* ── Booking page ── */
.booking-subtitle-light { color: rgba(255,255,255,0.72); }
.cal-dot-black  { background: var(--black); }
.cal-dot-grey   { background: #ddd; }

/* ── FAQ bottom CTA ── */
.faq-cta-bg { background: var(--yellow); border-radius: var(--radius, 16px); }

/* ── 404 ── */
.logo-404 {
  height: 44px;
  opacity: 0.6;
  margin: 0 auto;
  display: block;
}
.lang-toggle-404 {
  position: absolute;
  top: -80px;
  right: 0;
}

/* ── Admin: btn-delete style ── */
.btn-danger-ghost {
  background: transparent;
  color: var(--c, #ff6b6b);
  border: 1px solid #2a1a1a;
}

/* ── Admin: prolong modal ── */
.prolong-event-name {
  font-family: var(--fb, 'Anton', sans-serif);
  font-size: 0.95rem;
  color: var(--wh, #fff);
  margin-bottom: 4px;
}
.prolong-days-left {
  font-size: 0.78rem;
  color: var(--mt, #555);
  margin-bottom: 18px;
}

/* ── Admin: spinner in loading card ── */
.spinner-lg {
  width: 28px;
  height: 28px;
  margin: 0 auto;
}

/* ── Admin: stat box accent colours ── */
.stat-num-yellow { color: var(--y, #ffd93d); }
.stat-num-coral  { color: var(--c, #ff6b6b); }

/* ── Admin: sidebar item fallback text ── */
.sb-empty-text {
  padding: 10px 12px;
  font-size: 0.75rem;
  color: #1e1e1e;
  text-align: center;
}

/* ── Responsive: display toggles ── */
@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
}
@media (min-width: 769px) {
  .hide-desktop { display: none !important; }
}

/* ── Additional page-specific classes ── */
/* Gallery grid areas (index.html) */
.gallery-area-a { grid-area: a; }
.gallery-area-b { grid-area: b; }
.gallery-area-c { grid-area: c; }
.gallery-area-d { grid-area: d; }

/* Testimonial borders */
.testi-border-yellow { border-top: 4px solid var(--yellow); }
.testi-border-teal   { border-top: 4px solid var(--teal); }
.testi-border-coral  { border-top: 4px solid var(--coral); }

/* USP cards (about page) */
.usp-card-yellow { background: var(--yellow); border-radius: var(--radius); padding: 40px 32px; }
.usp-card-teal   { background: var(--teal);   border-radius: var(--radius); padding: 40px 32px; }
.usp-card-violet { background: var(--violet); border-radius: var(--radius); padding: 40px 32px; }
.usp-icon  { font-size: 2.5rem; margin-bottom: 16px; }
.usp-title { font-family: var(--font-display); font-size: 1.4rem; text-transform: uppercase; margin-bottom: 12px; }
.usp-desc  { font-size: 0.9rem; color: rgba(0,0,0,0.65); line-height: 1.65; }

/* About body text */
.about-body-text { color: #555; font-size: 1rem; line-height: 1.8; margin-bottom: 16px; }
.about-cta-sub   { color: #aaa; margin: 0 auto 32px; max-width: 400px; }

/* Booking */
.booking-subtitle-light { color: rgba(255,255,255,0.72); }
.border-top-none { border-top: none; }
.bg-sand { background: var(--sand); color: var(--black); }
.justify-center { justify-content: center; }

/* Gallery note */
.gallery-note-text { color: #999; font-size: 0.85rem; font-family: var(--font-display); }

/* 404 */
.logo-404    { height: 44px; opacity: 0.6; margin: 0 auto; display: block; }
.lang-toggle-404 { position: absolute; top: -80px; right: 0; }
