/* ===========================
   VARIABLES
=========================== */
:root {
  --bg:        #0a0a0a;
  --bg2:       #111111;
  --bg3:       #181818;
  --border:    rgba(255,255,255,0.08);
  --gold:      #c9a96e;
  --gold-glow: rgba(201,169,110,0.15);
  --gold-dim:  rgba(201,169,110,0.4);
  --white:     #f5f0e8;
  --muted:     #888880;
  --radius:    16px;
  --ff-serif:  'Cormorant Garamond', Georgia, serif;
  --ff-sans:   'Outfit', system-ui, sans-serif;
}

/* ===========================
   RESET
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--ff-sans);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===========================
   NAV
=========================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2rem;
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.nav-names {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.nav-cta {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}

.nav-cta:hover { opacity: 0.85; transform: translateY(-1px); }

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.65) 60%, var(--bg) 100%),
    url('https://images.unsplash.com/photo-1519741497674-611481863552?w=1800&q=80') center/cover no-repeat;
  z-index: 0;
}

/* Grain overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 2rem;
  animation: fadeUp 1.2s ease both;
}

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

.pretitle {
  font-family: var(--ff-sans);
  font-size: clamp(0.65rem, 2vw, 0.8rem);
  font-weight: 400;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: #f5f0e8; text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  margin-bottom: 2rem;
}

.names {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, 3vw, 2.5rem);
  line-height: 0.9;
  margin-bottom: 2rem;
}

.name-left, .name-right { font-family: Georgia, "Times New Roman", serif; font-size: clamp(4rem, 14vw, 11rem); font-weight: 700; color: var(--white); letter-spacing: 0.05em; }

/* Pinyon Script - Installed Locally */
@font-face {
  font-family: 'Pinyon Script';
  src: url('./fonts/PinyonScript-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.name-left, .name-right {
  font-family: 'Pinyon Script', cursive;
  font-size: clamp(4rem, 14vw, 11rem);
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.05em;
}

.ampersand {
  font-family: var(--ff-serif);
  font-size: clamp(2.5rem, 8vw, 6.5rem);
  font-style: italic;
  color: var(--gold);
  line-height: 1;
}

.date-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  padding: 0.55rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.date-pill span {
  font-size: clamp(0.75rem, 2vw, 0.95rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 400;
}

.hero-tagline {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: #f5f0e8;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.hero-btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 0 40px var(--gold-glow);
}

.hero-btn:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(201,169,110,0.35);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ===========================
   SHARED SECTION UTILS
=========================== */
.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 6vw, 3.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.section-sub {
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
}

.section-sub strong { color: var(--white); font-weight: 400; }

.section-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.intro-number {
  font-family: var(--ff-serif);
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 600;
  color: rgba(201,169,110,0.12);
  line-height: 1;
  flex-shrink: 0;
  margin-top: -0.5rem;
  user-select: none;
}

/* ===========================
   INTRO
=========================== */
.intro-section {
  padding: 7rem 2rem;
  max-width: 860px;
  margin: 0 auto;
}

.intro-grid {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.intro-content { flex: 1; }

.intro-text {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1.1rem;
}

.intro-quote {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  color: var(--gold);
  margin-top: 2.5rem;
  line-height: 1.5;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold-dim);
}

/* ===========================
   COUNTDOWN
=========================== */
.countdown-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4.5rem 2rem;
  text-align: center;
}

.countdown-label {
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
}

.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.8rem;
  min-width: 100px;
}

.cd-block span {
  font-family: var(--ff-serif);
  font-size: clamp(2.8rem, 9vw, 5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}

.cd-block small {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.5rem;
  font-weight: 400;
}

.cd-sep {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--gold-dim);
  align-self: center;
  padding-bottom: 1.5rem;
}

/* ===========================
   TIMELINE CARDS
=========================== */
.timeline-section {
  padding: 7rem 2rem;
  max-width: 960px;
  margin: 0 auto;
}

.tl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

@media (max-width: 600px) {
  .tl-grid { grid-template-columns: 1fr; }
  .section-header { flex-direction: column; gap: 0.5rem; }
  .intro-grid { flex-direction: column; }
  .intro-number { font-size: 3rem; }
}

.tl-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: border-color 0.2s, transform 0.2s;
}

.tl-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-3px);
}

.tl-card--highlight {
  background: linear-gradient(135deg, #1a1408, #0f0f0f);
  border-color: var(--gold-dim);
}

.tl-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.tl-emoji { font-size: 1.8rem; }

.tl-tag {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--gold);
  background: var(--gold-glow);
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  border: 1px solid var(--gold-dim);
}

.tl-card h3 {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.tl-place {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.tl-time {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
}

.tl-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ===========================
   MAPS
=========================== */
.maps-section {
  padding: 7rem 2rem;
  max-width: 960px;
  margin: 0 auto;
}

.maps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

@media (max-width: 700px) {
  .maps-grid { grid-template-columns: 1fr; }
}

.map-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.map-card:hover { border-color: var(--gold-dim); }

.map-label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.1rem 1.3rem;
  border-bottom: 1px solid var(--border);
}

.map-icon { font-size: 1.6rem; }

.map-label h3 {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--white);
}

.map-label p {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.1rem;
}

.map-frame { line-height: 0; }
.map-frame iframe { display: block; filter: grayscale(20%) brightness(0.9); }

.map-link {
  display: block;
  padding: 0.8rem 1.3rem;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  border-top: 1px solid var(--border);
  transition: background 0.2s;
}

.map-link:hover { background: rgba(201,169,110,0.05); }

/* ===========================
   BUS
=========================== */
.bus-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 2rem;
  text-align: center;
}

.bus-inner {
  max-width: 560px;
  margin: 0 auto;
}

.bus-emoji { font-size: 3rem; margin-bottom: 1rem; }

.bus-section h2 {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.bus-section p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 0.7rem;
}

.bus-section strong { color: var(--gold); font-weight: 400; }

/* ===========================
   RSVP
=========================== */
.rsvp-section {
  padding: 7rem 2rem;
  max-width: 680px;
  margin: 0 auto;
}

.rsvp-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-top: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}

.form-group label small {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.72rem;
  color: #555;
}

.req { color: var(--gold); }

.form-group input,
.form-group textarea {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #444; }

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold-dim);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

/* RADIO CARDS */
.radio-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.radio-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.2rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  text-align: center;
}

.radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-card:has(input:checked) {
  border-color: var(--gold-dim);
  background: linear-gradient(135deg, #1a1408, #0f0f0f);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--gold-glow);
}

.radio-icon { font-size: 1.8rem; }

.radio-text {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.3;
}

.radio-card:has(input:checked) .radio-text { color: var(--white); }

/* EXTRAS */
.extras {
  border-top: 1px solid var(--border);
  padding-top: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  animation: slideDown 0.3s ease both;
}

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

/* SUBMIT */
.btn-submit {
  display: block;
  width: 100%;
  padding: 1.1rem 2rem;
  background: var(--gold);
  border: none;
  border-radius: 50px;
  color: var(--bg);
  font-family: var(--ff-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 30px var(--gold-glow);
}

.btn-submit:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(201,169,110,0.3);
}

.btn-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.form-message {
  padding: 1rem 1.2rem;
  border-radius: 10px;
  font-size: 0.92rem;
  text-align: center;
  line-height: 1.6;
  animation: fadeUp 0.3s ease;
}

.form-message.success {
  background: rgba(39,174,96,0.1);
  border: 1px solid rgba(39,174,96,0.25);
  color: #7ecca0;
}

.form-message.error {
  background: rgba(231,76,60,0.1);
  border: 1px solid rgba(231,76,60,0.25);
  color: #e07b72;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 4rem 2rem;
  text-align: center;
}

.footer-top { margin-bottom: 2rem; }

.footer-names {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.footer-date {
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: #444;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.footer-disclaimer {
  font-style: italic;
  font-size: 0.7rem !important;
}

/* ===========================
   SCROLL ANIMATIONS
=========================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ===========================
   INPUT NUMBER CHROME FIX
=========================== */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
input[type=number] { -moz-appearance: textfield; }

/* ===========================
   THEME TOGGLE
=========================== */

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.theme-toggle {
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  border-radius: 8px;
}

.theme-toggle:hover {
  transform: rotate(20deg) scale(1.1);
}

.theme-toggle:active {
  transform: rotate(20deg) scale(0.95);
}

/* Light theme */
body.light-theme {
  --muted:     #555555;
  --bg:        #f5f5f5;
  --bg2:       #ffffff;
  --bg3:       #e8e8e8;
  --border:    rgba(0,0,0,0.08);
  --gold:      #a68557;
  --gold-glow: rgba(166,133,87,0.15);
  --gold-dim:  rgba(166,133,87,0.4);
  --white:     #1a1a1a;
  --muted:     #555555;
}

body.light-theme .nav {
  background: rgba(245,245,245,0.8);
  border-bottom-color: rgba(0,0,0,0.15);
}

body.light-theme .hero-bg {
  background: linear-gradient(to bottom, rgba(245,245,245,0.2) 0%, rgba(245,245,245,0.5) 60%, var(--bg) 100%), url('https://images.unsplash.com/photo-1519741497674-611481863552?w=1800&q=80') center/cover no-repeat !important;
}

body.light-theme .nav-cta,
body.light-theme .hero-btn,
body.light-theme .btn-submit,
body.light-theme .tl-tag {
  color: #ffffff;
}

body.light-theme .tl-card--highlight {
  background: linear-gradient(135deg, #f0e8d8, #f5f5f5) !important;
}

body.light-theme .radio-card:has(input:checked) {
  background: linear-gradient(135deg, #f0e8d8, #f5f5f5) !important;
}

body.light-theme .form-group input,
body.light-theme .form-group textarea {
  background: var(--bg3);
  color: var(--white);
}

body.light-theme .form-group input::placeholder,
body.light-theme .form-group textarea::placeholder {
  color: #666666;
}

body.light-theme .map-frame iframe {
  filter: grayscale(20%) brightness(1.1) !important;
}

body.light-theme .form-message.success {
  color: #27ae60;
}

body.light-theme .form-message.error {
  color: #e74c3c;
}

/* ===========================
   REGALO
=========================== */
.regalo-section {
  padding: 7rem 2rem;
  background: var(--bg2);
  text-align: center;
}

.regalo-content {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
}

.regalo-content strong {
  font-weight: 600;
  color: var(--gold);
  font-family: monospace;
  letter-spacing: 0.05em;
}

/* ===========================
   ACCORDION
=========================== */
.accordion-header {
  cursor: pointer;
  padding: 1.2rem;
  background: var(--bg2);
  border: 2px solid var(--gold);
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background: rgba(215, 175, 90, 0.1);
}

.accordion-header.active {
  background: var(--gold);
  color: var(--bg);
}

.accordion-toggle {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.accordion-header.active .accordion-toggle {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--bg3);
  border-left: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  border-radius: 0 0 10px 10px;
}

.accordion-content.active {
  max-height: 500px;
  padding: 2rem;
}

/* ===========================
   REGALO
=========================== */
.regalo-section {
  padding: 7rem 2rem;
}

.regalo-section .section-header {
  max-width: 960px;
  margin: 0 auto 3rem;
}

.regalo-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.8;
  text-align: center;
  color: var(--text);
}

.regalo-content strong {
  font-weight: 600;
  color: var(--gold);
  font-family: monospace;
  letter-spacing: 0.1em;
  display: block;
  margin-top: 1rem;
  font-size: 1.05rem;
}

.music-toggle {
  font-size: 1.2rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  transition: transform 0.2s;
  margin-right: 1rem;
}

.music-toggle:hover {
  transform: scale(1.1);
}
