/* ========================================
   Egypt Trip 2026 — Global Styles
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --gold:    #D4AF37;
  --gold-lt: #F0D060;
  --sand:    #F5E6C8;
  --sand-dk: #E8D0A0;
  --navy:    #1B3A5C;
  --navy-lt: #2A5080;
  --white:   #FFFFFF;
  --text:    #2C2C2C;
  --text-lt: #6B6B6B;
  --border:  #DDD0B0;
  --shadow:  0 4px 24px rgba(27,58,92,0.10);
  --radius:  12px;
  --font-h:  'Cormorant Garamond', Georgia, serif;
  --font-b:  'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-b);
  color: var(--text);
  background: var(--sand);
  line-height: 1.6;
  font-size: 16px;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-h);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 6vw, 4rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.8rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 0.75rem; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--gold); }

/* ── Navbar ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 60px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.navbar-brand {
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
  text-decoration: none;
}
.navbar-brand span { color: var(--white); }

.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.80);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(255,255,255,0.08);
}

.nav-private a {
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--gold) !important;
}
.nav-private a:hover { background: rgba(212,175,55,0.25); }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 1rem;
    gap: 0.25rem;
    transform: translateY(-110%);
    transition: transform 0.3s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 0.6rem 1rem; font-size: 1rem; }
}

/* ── Page Hero ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lt) 100%);
  color: var(--white);
  padding: 4rem 2rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.05'%3E%3Cpolygon points='30 0 60 60 0 60'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 60px 60px;
}
.page-hero h1 { color: var(--white); position: relative; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; position: relative; }
.page-hero .gold-accent { color: var(--gold); }

/* ── Container ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Section ── */
.section {
  padding: 4rem 0;
}
.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-title h2 { margin-bottom: 0.5rem; }
.section-title p { color: var(--text-lt); font-size: 1.05rem; }
.gold-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

/* ── Cards ── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(27,58,92,0.15);
}
.card-body { padding: 1.5rem; }
.card-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

/* ── Grid ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

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

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  border-radius: 8px;
  font-family: var(--font-b);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover { background: var(--gold-lt); color: var(--navy); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover { background: var(--sand); color: var(--navy); }

.btn-sm { padding: 0.4rem 0.9rem; font-size: 0.85rem; }

/* ── Accordion ── */
.accordion-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  box-shadow: 0 2px 8px rgba(27,58,92,0.07);
  overflow: hidden;
}
.accordion-btn {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  transition: background 0.2s;
}
.accordion-btn:hover { background: var(--sand); }
.accordion-btn .acc-left { display: flex; align-items: center; gap: 0.6rem; }
.accordion-btn .acc-icon { font-size: 1.4rem; }
.accordion-arrow {
  font-size: 1rem;
  color: var(--gold);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.accordion-item.open .accordion-arrow { transform: rotate(180deg); }
.accordion-body {
  padding: 0 1.4rem 1.2rem;
  color: var(--text);
  display: none;
  border-top: 1px solid var(--sand-dk);
}
.accordion-item.open .accordion-body { display: block; }

.acc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.acc-tag {
  background: var(--sand);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  border: 1px solid var(--border);
}
.acc-tag.price { background: #FFF8E7; border-color: var(--gold); color: #8B6914; }
.acc-tag.tip { background: #E8F4FD; border-color: #A0C8E8; color: #1B4F72; }
.acc-tag.must { background: #FFF0F0; border-color: #F0A0A0; color: #8B2020; }

/* ── Tabs ── */
.tab-nav {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 0.6rem 1.4rem;
  border-radius: 8px;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-lt);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  font-family: var(--font-b);
  transition: all 0.2s;
}
.tab-btn:hover { border-color: var(--navy); color: var(--navy); }
.tab-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--gold);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── Checklist ── */
.checklist { list-style: none; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--sand-dk);
  font-size: 0.95rem;
}
.checklist li:last-child { border-bottom: none; }
.checklist input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}
.checklist label {
  cursor: pointer;
  flex: 1;
  transition: color 0.2s;
}
.checklist input:checked + label {
  text-decoration: line-through;
  color: var(--text-lt);
}

/* ── Table ── */
.styled-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.styled-table thead {
  background: var(--navy);
  color: var(--white);
}
.styled-table th {
  padding: 0.85rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.styled-table td {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--sand-dk);
  vertical-align: middle;
}
.styled-table tr:last-child td { border-bottom: none; }
.styled-table tr:hover td { background: var(--sand); }
.styled-table .total-row td { font-weight: 700; background: var(--sand); color: var(--navy); }

/* ── Timeline / Day Plan ── */
.day-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.day-header {
  background: var(--navy);
  color: var(--white);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.day-number {
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1.1rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.day-title { font-family: var(--font-h); font-size: 1.2rem; font-weight: 600; }
.day-date { color: rgba(255,255,255,0.65); font-size: 0.85rem; }
.day-body { padding: 1.25rem 1.5rem; }
.time-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--sand-dk);
}
.time-row:last-child { border-bottom: none; }
.time-row .time {
  font-weight: 600;
  color: var(--navy);
  min-width: 70px;
  font-size: 0.88rem;
  padding-top: 2px;
}
.time-row .event { flex: 1; font-size: 0.93rem; }
.time-row .event strong { color: var(--navy); }

/* ── Budget table checkboxes ── */
.budget-paid {
  text-align: center;
}
.budget-paid input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  cursor: pointer;
}
tr.is-paid td { color: var(--text-lt); }
tr.is-paid .budget-amount { text-decoration: line-through; }

/* ── Password overlay ── */
.password-overlay {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
}
.password-box {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 380px;
  text-align: center;
}
.password-box h2 { color: var(--gold); margin-bottom: 0.5rem; }
.password-box p { color: rgba(255,255,255,0.65); margin-bottom: 1.5rem; font-size: 0.92rem; }
.password-input {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  border: 2px solid rgba(212,175,55,0.3);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font-b);
  margin-bottom: 1rem;
  outline: none;
  transition: border-color 0.2s;
  text-align: center;
  letter-spacing: 0.1em;
}
.password-input:focus { border-color: var(--gold); }
.password-input::placeholder { color: rgba(255,255,255,0.35); letter-spacing: 0; }
.password-error {
  color: #FF8080;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  min-height: 1.2em;
}

/* ── Map ── */
#map {
  height: calc(100vh - 60px);
  width: 100%;
}
.leaflet-popup-content-wrapper {
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.map-popup-title {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.map-popup-desc {
  font-size: 0.85rem;
  color: var(--text-lt);
  margin: 0;
}
.map-popup-tag {
  display: inline-block;
  background: var(--sand);
  color: var(--navy);
  font-size: 0.75rem;
  padding: 0.1rem 0.5rem;
  border-radius: 10px;
  margin-top: 0.35rem;
  font-weight: 500;
}

/* ── Form ── */
.form-group {
  margin-bottom: 1.25rem;
}
.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.4rem;
  font-size: 0.92rem;
  color: var(--navy);
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-b);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--navy);
}
.form-textarea { resize: vertical; min-height: 100px; }

.form-radio-group { display: flex; gap: 1rem; flex-wrap: wrap; }
.form-radio-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  font-size: 0.93rem;
}
.form-radio-label input { accent-color: var(--gold); }

.rating-group { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.rating-btn {
  padding: 0.4rem 0.9rem;
  border: 2px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.rating-btn.selected { background: var(--gold); border-color: var(--gold); color: var(--navy); font-weight: 600; }

/* ── Hero (index) ── */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy) 0%, #0D2240 60%, #1A3A5C 100%);
  padding: 5rem 2rem 4rem;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(212,175,55,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(212,175,55,0.06) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23D4AF37' fill-opacity='0.04' fill-rule='evenodd'%3E%3Cpolygon points='40 0 80 80 0 80'/%3E%3C/g%3E%3C/svg%3E");
  background-size: auto, auto, 80px 80px;
}
.hero-content { position: relative; z-index: 1; max-width: 720px; }
.hero-eyebrow {
  font-family: var(--font-b);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hero h1 { color: var(--white); margin-bottom: 1rem; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub { color: rgba(255,255,255,0.70); font-size: 1.15rem; margin-bottom: 2.5rem; }

.countdown-bar {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.countdown-item {
  text-align: center;
}
.countdown-num {
  font-family: var(--font-h);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.countdown-lbl {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.countdown-sep {
  font-size: 2rem;
  color: rgba(212,175,55,0.4);
  line-height: 1;
  padding-top: 0.25rem;
}

.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Route strip */
.route-strip {
  background: var(--white);
  padding: 1.75rem 0;
  border-bottom: 3px solid var(--gold);
}
.route-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.route-city {
  text-align: center;
  padding: 0 0.5rem;
}
.route-city-icon { font-size: 1.8rem; }
.route-city-name {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
}
.route-city-days { font-size: 0.78rem; color: var(--text-lt); }
.route-arrow {
  color: var(--gold);
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* City cards on index */
.city-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.city-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(27,58,92,0.18); }
.city-card-header {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  flex-shrink: 0;
}
.city-card-body { padding: 1.25rem; flex: 1; }
.city-card-body h3 { margin-bottom: 0.3rem; font-size: 1.3rem; }
.city-card-body p { font-size: 0.88rem; color: var(--text-lt); margin-bottom: 1rem; }
.city-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
}
.city-card-link:hover { color: var(--gold); }

/* Badge */
.badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
}
.badge-gold { background: #FFF8E1; color: #8B6914; border: 1px solid var(--gold); }
.badge-navy { background: var(--navy); color: var(--white); }
.badge-green { background: #E8F8E8; color: #2A7A2A; border: 1px solid #90D090; }

/* Tip box */
.tip-box {
  background: #E8F4FD;
  border-left: 4px solid var(--navy);
  border-radius: 0 8px 8px 0;
  padding: 1rem 1.2rem;
  margin: 1rem 0;
  font-size: 0.92rem;
}
.tip-box strong { color: var(--navy); }

/* Alert */
.alert {
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  font-size: 0.92rem;
  margin-bottom: 1rem;
}
.alert-info { background: #E8F4FD; border: 1px solid #A0C8E8; color: #1B4F72; }
.alert-warn { background: #FFF8E1; border: 1px solid #F0C040; color: #7A5A00; }

/* Footer */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.55);
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.85rem;
  margin-top: 4rem;
}
.footer a { color: var(--gold); }
.footer strong { color: rgba(255,255,255,0.85); }

/* ── Music Player ── */
.music-player {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.music-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(27,58,92,0.35);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  position: relative;
  overflow: hidden;
}
.music-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(212,175,55,0.35);
  background: var(--navy-lt);
}
.music-btn.playing { background: var(--navy-lt); }

.music-note {
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1;
  transition: opacity 0.2s;
  user-select: none;
}
.music-btn.playing .music-note { opacity: 0; position: absolute; }

/* Equalizer bars — hidden when paused */
.music-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 22px;
  opacity: 0;
  position: absolute;
  transition: opacity 0.2s;
}
.music-btn.playing .music-bars { opacity: 1; }
.music-bars span {
  display: block;
  width: 4px;
  background: var(--gold);
  border-radius: 2px;
  animation: none;
}
.music-btn.playing .music-bars span:nth-child(1) { animation: eq1 0.8s ease-in-out infinite alternate; }
.music-btn.playing .music-bars span:nth-child(2) { animation: eq2 0.6s ease-in-out infinite alternate; }
.music-btn.playing .music-bars span:nth-child(3) { animation: eq3 0.9s ease-in-out infinite alternate; }
.music-btn.playing .music-bars span:nth-child(4) { animation: eq4 0.5s ease-in-out infinite alternate; }

@keyframes eq1 { from { height: 6px; } to { height: 20px; } }
@keyframes eq2 { from { height: 14px; } to { height: 8px; } }
@keyframes eq3 { from { height: 4px; } to { height: 18px; } }
@keyframes eq4 { from { height: 10px; } to { height: 6px; } }

.music-label {
  background: rgba(27,58,92,0.85);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.15rem 0.55rem;
  border-radius: 10px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
  letter-spacing: 0.03em;
  border: 1px solid rgba(212,175,55,0.25);
}
.music-player:hover .music-label {
  opacity: 1;
  transform: translateY(0);
}

/* Utility */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-muted { color: var(--text-lt); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.flex-wrap { flex-wrap: wrap; }
