:root {
  --bg: #07070f;
  --surface: #121229;
  --surface-alt: #1f1f35;
  --text: #f4f4ff;
  --muted: #b7b8d2;
  --accent: #ff4c6d;
  --accent-soft: #ff758d;
  --border: rgba(255, 255, 255, 0.08);
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 76, 109, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(255, 76, 109, 0);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 76, 109, 0.3), 0 8px 20px rgba(0, 0, 0, 0.2);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 76, 109, 0.5), 0 8px 30px rgba(0, 0, 0, 0.3);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html[data-theme='light'] {
  --bg: #f8f9ff;
  --surface: #ffffff;
  --surface-alt: #f3f5ff;
  --text: #0f172a;
  --muted: #475569;
  --accent: #1d5cff;
  --accent-soft: #7c9cff;
  --border: rgba(15, 23, 42, 0.12);
}

.hero-note {
  margin-top: 1.5rem;
  color: #7cc8ff;
  font-size: 0.96rem;
  max-width: 34rem;
  line-height: 1.7;
  border-left: 3px solid rgba(124, 200, 255, 0.35);
  padding-left: 1rem;
  opacity: 0.95;
}

html[data-theme='light'] {
  --bg: #f8f9ff;
  --surface: #ffffff;
  --surface-alt: #f3f5ff;
  --text: #0f172a;
  --muted: #475569;
  --accent: #1d5cff;
  --accent-soft: #7c9cff;
  --border: rgba(15, 23, 42, 0.12);
}

html[data-theme='light'] body {
  background: linear-gradient(180deg, #f7f9ff 0%, #e2e8ff 100%);
}

.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 20% 25%, rgba(29, 92, 255, 0.14), transparent 16%),
    radial-gradient(circle at 80% 12%, rgba(255, 76, 109, 0.14), transparent 18%),
    radial-gradient(circle at 55% 80%, rgba(0, 212, 255, 0.08), transparent 22%);
  animation: heroGlow 16s ease-in-out infinite;
}

.hero-section::after {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 76, 109, 0.14);
  top: 10%;
  right: -6%;
  filter: blur(90px);
  animation: floatSlow 18s ease-in-out infinite;
}

@keyframes heroGlow {
  0%, 100% {
    opacity: 0.55;
    transform: translateX(0px);
  }
  50% {
    opacity: 0.7;
    transform: translateX(18px);
  }
}

@keyframes floatSlow {
  0%, 100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(18px) scale(1.08);
  }
}

.track-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.track-button {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.track-button:hover,
.track-button.active {
  background: var(--accent);
  color: #fff;
}

.track-status {
  margin-top: 0.85rem;
  color: var(--accent-soft);
  font-size: 0.95rem;
}

.testimonials-grid {
  position: relative;
  min-height: 260px;
}

.testimonial-card {
  display: none;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.testimonial-card.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.testimonial-controls {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  justify-content: flex-end;
}

.testimonial-nav {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  border-radius: 999px;
  width: 45px;
  height: 45px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.testimonial-nav:hover {
  transform: translateY(-2px);
  background: rgba(255, 76, 109, 0.16);
}

.faq-grid {
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.25rem;
}

.faq-item.open .faq-answer {
  max-height: 16rem;
  padding: 1rem 1.25rem 1.25rem;
}

.social-grid {
  display: grid;
  gap: 1.5rem;
}

.social-card {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  overflow: hidden;
}

.social-card-preview {
  background: rgba(255, 255, 255, 0.04);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-embed-placeholder {
  width: 100%;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(29, 92, 255, 0.16), rgba(255, 76, 109, 0.14));
  color: #f8f8ff;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
}

.selected-date-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

..selected-date-note.calendar-warning {
  color: #ffb86c;
}

.calendar-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 40;
}

.calendar-modal.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.calendar-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 15, 0.8);
  backdrop-filter: blur(6px);
}

.calendar-modal-content {
  position: relative;
  z-index: 1;
  width: min(520px, calc(100% - 2rem));
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
}

.calendar-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.calendar-modal-close {
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.calendar-modal-content p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.calendar-modal button.btn {
  width: 100%;
}

.calendar {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}

.calendar-header,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.calendar-header {
  background: rgba(255, 255, 255, 0.03);
}

.calendar-header .day-name,
.calendar-grid .day {
  padding: 0.85rem 0.65rem;
  font-size: 0.85rem;
  text-align: center;
}

.calendar-grid .day.available {
  background: rgba(29, 92, 255, 0.08);
  cursor: pointer;
}

.calendar-grid .day.booked {
  opacity: 0.45;
}

.calendar-grid .day.selected {
  background: var(--accent);
  color: #fff;
}

.lazy-image {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.lazy-image.loaded {
  opacity: 1;
  transform: translateY(0);
}

.reveal-hidden {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

html, body {
  margin: 0;
  min-height: 100%;
  font-family: 'Montserrat', sans-serif;
  background: radial-gradient(circle at top, rgba(255, 76, 109, 0.14), transparent 28%),
    linear-gradient(180deg, #0b0b17 0%, #07070f 100%);
  color: var(--text);
  font-size: 16px;
}

body {
  line-height: 1.6;
}

.skip-link {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-120%);
  background: rgba(7, 7, 15, 0.95);
  color: var(--text);
  padding: 0.85rem 1rem;
  z-index: 50;
  text-decoration: none;
  border-bottom-right-radius: 0.5rem;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(7, 7, 15, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  color: var(--text);
  font-size: 1.35rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 1px;
}

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

.language-switcher {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  overflow: hidden;
}

.language-switcher select {
  border: none;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 0.6rem 0.9rem;
  font-weight: 600;
  appearance: none;
  cursor: pointer;
}

.language-switcher select:focus {
  outline: 2px solid rgba(255, 76, 109, 0.4);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-nav a,
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--text);
}

.site-nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin-bottom: 5px;
  border-radius: 999px;
  background: var(--text);
}

.hero-section {
  padding: 6rem 0 4rem;
  background: radial-gradient(circle at top left, rgba(255, 76, 109, 0.14), transparent 35%),
              radial-gradient(circle at top right, rgba(0, 212, 255, 0.09), transparent 28%);
}

.hero-grid {
  display: grid;
  gap: 2.25rem;
  align-items: center;
  grid-template-columns: 1.15fr 0.85fr;
}

.hero-copy h1 {
  font-size: clamp(3.5rem, 4.2vw, 6rem);
  margin: 0.5rem 0 1rem;
  line-height: 1.02;
  font-weight: 900;
  text-shadow: 0 0 28px rgba(255, 76, 109, 0.35);
}

.hero-copy p {
  max-width: 56ch;
  color: #f8f8ff;
  font-size: 1.15rem;
  line-height: 1.8;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 1rem;
  color: var(--accent-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.hero-highlights {
  display: none;
  gap: 0.75rem;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.hero-highlights span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.95rem 1.75rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              background-color 0.3s ease,
              color 0.3s ease,
              box-shadow 0.3s ease;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  margin-right: 0.75rem;
  font-size: 1rem;
}

.btn-icon-phone {
  color: var(--accent);
}

.btn-icon-whatsapp {
  color: #25d366;
}

.btn-icon-music {
  color: #7cc8ff;
}

.btn-icon-dj {
  color: #ffd860;
}

.booking-icon {
  margin-right: 0.5rem;
  display: inline-flex;
  align-items: center;
}

.booking-icon-phone {
  color: var(--accent);
}

.booking-icon-whatsapp {
  color: #25d366;
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
}

.btn-primary:hover {
  background: rgba(255, 76, 109, 1.1);
  box-shadow: 0 12px 24px rgba(255, 76, 109, 0.4), 0 0 20px rgba(255, 76, 109, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 16px rgba(255, 255, 255, 0.1);
}

.btn-tertiary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 76, 109, 0.4);
  box-shadow: 0 8px 16px rgba(255, 76, 109, 0.15);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.btn-tertiary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-card {
  width: 100%;
  min-height: 360px;
  padding: 2.25rem;
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 76, 109, 0.28);
  box-shadow: 0 36px 110px rgba(255, 76, 109, 0.14),
              0 20px 50px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease,
              border-color 0.3s ease;
}

.hero-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 76, 109, 0.45);
  box-shadow: 0 48px 120px rgba(255, 76, 109, 0.22),
              0 16px 32px rgba(0, 0, 0, 0.28);
}

.card-label {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--accent-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card h2 {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 700;
}

.hero-card p {
  margin: 1rem 0 1.75rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.gallery-card {
  max-width: 340px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
}

.gallery-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-card h3 {
  margin: 0.75rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.btn-card {
  width: fit-content;
}

.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section-tag {
  display: inline-flex;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--accent);
  font-size: 0.95rem;
}

.section-header h2 {
  margin: 1rem 0 1rem;
  font-size: clamp(2rem, 3vw, 3rem);
}

.services-section .section-header h2 {
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  font-weight: 700;
}

.about-grid,
.services-grid,
.music-grid,
.contact-grid,
.gallery-grid {
  display: grid;
  gap: 1.75rem;
}

.about-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  justify-content: center;
  max-width: 860px;
  margin: 0 auto;
}

.testimonials-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  justify-content: center;
  max-width: 980px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 1.5rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease,
              border-color 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 76, 109, 0.25);
  box-shadow: 0 24px 48px rgba(255, 76, 109, 0.12),
              0 8px 16px rgba(0, 0, 0, 0.2);
}

.testimonial-card p {
  margin: 0 0 1rem;
  color: var(--text);
  line-height: 1.8;
  font-size: 1.05rem;
}

.testimonial-card span {
  display: block;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
}

.gallery-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 1rem;
}

.feature-card,
.service-card,
.music-card,
.contact-info,
.contact-form {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 28px;
  padding: 1.5rem;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease,
              border-color 0.3s ease;
}

.about-image-card img {
  display: block;
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  margin-bottom: 1rem;
}

.feature-card:hover,
.service-card:hover,
.music-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 76, 109, 0.3);
  box-shadow: 0 20px 40px rgba(255, 76, 109, 0.15),
              0 8px 16px rgba(0, 0, 0, 0.3);
}

.feature-card h3,
.service-card h3,
.music-card h3,
.contact-info h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.feature-card p,
.service-card p,
.music-card p,
.contact-info p {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
}

.services-grid,
.packages-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.packages-grid {
  gap: 1.75rem;
  margin-top: 1rem;
}

.package-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 1.75rem;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 76, 109, 0.25);
  box-shadow: 0 22px 42px rgba(255, 76, 109, 0.12), 0 10px 18px rgba(0, 0, 0, 0.22);
}

.package-card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.package-price {
  color: var(--accent);
  font-weight: 700;
  margin: 0.75rem 0;
}

.package-card ul {
  padding-left: 1.2rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.package-card li {
  margin-bottom: 0.65rem;
}

.music-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-grid {
  grid-template-columns: 1.05fr 1fr;
  align-items: start;
}

.contact-form label {
  display: block;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 0.95rem 1rem;
  color: var(--text);
  font: inherit;
  font-size: 1rem;
  transition: background 0.3s ease,
              border-color 0.3s ease,
              box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 76, 109, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 76, 109, 0.1), inset 0 0 0 1px rgba(255, 76, 109, 0.2);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2.5rem 0;
  font-size: 1rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-size: 1.35rem;
}

.social-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.social-icon.tiktok svg {
  width: 28px;
  height: 28px;
}

.social-icon.facebook {
  background: #1877f2;
  color: white;
  border-color: transparent;
}

.social-icon.spotify {
  background: #1db954;
  color: white;
  border-color: transparent;
}

.social-icon.instagram {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-color: transparent;
}

.social-icon.tiktok {
  background: #000;
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}

.social-icon:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 20px rgba(255, 76, 109, 0.2);
}

.social-icon.tiktok:hover {
  background: #111;
  color: white;
}

@media (max-width: 960px) {
  .hero-grid,
  .about-grid,
  .services-grid,
  .music-grid,
  .contact-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding-top: 3.5rem;
  }
}

@media (max-width: 720px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-inner {
    gap: 0.75rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    width: 100%;
    flex-direction: column;
    display: none;
    gap: 0.75rem;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(7, 7, 15, 0.98);
    border-radius: 24px;
    box-shadow: 0 28px 55px rgba(0, 0, 0, 0.18);
  }

  .site-nav.active {
    display: flex;
  }

  .site-nav a {
    padding: 0.95rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    transition: background 0.25s ease, color 0.25s ease;
  }

  .site-nav a:hover,
  .site-nav a:focus {
    color: var(--text);
    background: rgba(255, 76, 109, 0.13);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-highlights {
    display: flex;
  }

  .hero-card {
    min-height: 280px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.video-player {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 28px;
  padding: 2rem;
  margin-top: 2rem;
  max-width: 520px;
}

.video-player h3 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.video-player video,
.video-player img {
  border-radius: 12px;
  background: var(--surface-alt);
  max-height: 250px;
  width: 100%;
  display: block;
  object-fit: cover;
}

.video-caption {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.booking-calendar-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: start;
}

.calendar-wrapper {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 28px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.calendar-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255, 76, 109, 0.1);
}

.calendar-wrapper h3 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.calendar {
  margin-bottom: 1.5rem;
}

.calendar-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.day-name {
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--muted);
  padding: 0.5rem 0;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
}

.day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.day.empty {
  background: transparent;
}

.day.available {
  background: rgba(124, 200, 255, 0.15);
  color: #7cc8ff;
  border: 1px solid rgba(124, 200, 255, 0.3);
}

.day.booked {
  background: rgba(255, 76, 109, 0.2);
  color: var(--muted);
  border: 1px solid rgba(255, 76, 109, 0.3);
}

.calendar-legend {
  display: flex;
  gap: 2rem;
  justify-content: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.legend-box {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.legend-box.available {
  background: rgba(124, 200, 255, 0.15);
  border-color: rgba(124, 200, 255, 0.3);
}

.legend-box.booked {
  background: rgba(255, 76, 109, 0.2);
  border-color: rgba(255, 76, 109, 0.3);
}

@media (max-width: 960px) {
  .booking-calendar-section {
    grid-template-columns: 1fr;
  }
}

.audio-player-card {
  background: linear-gradient(135deg, rgba(124, 200, 255, 0.1), rgba(255, 76, 109, 0.05));
  border: 1px solid rgba(124, 200, 255, 0.2);
}

.audio-player-card:hover {
  border-color: rgba(124, 200, 255, 0.4);
}

audio {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  padding: 0.5rem;
  outline: none;
}

audio::-webkit-media-controls-panel {
  background: rgba(0, 0, 0, 0.2);
}

/* Media Gallery Upload */
.gallery-upload {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
  align-items: start;
}

.upload-box {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 28px;
  padding: 2rem;
}

.upload-box h3 {
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.upload-input-group {
  margin-bottom: 1.5rem;
}

.upload-label {
  display: block;
  border: 2px dashed rgba(255, 76, 109, 0.3);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(255, 76, 109, 0.02);
}

.upload-label:hover {
  border-color: rgba(255, 76, 109, 0.6);
  background: rgba(255, 76, 109, 0.05);
}

.upload-label input {
  display: none;
}

.upload-label span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

#mediaGallery {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.media-item {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.media-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(255, 76, 109, 0.15);
}

.media-preview {
  width: 100%;
  height: 180px;
  background: var(--surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.media-preview img,
.media-preview video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-icon {
  font-size: 2.5rem;
  color: var(--muted);
}

.media-info {
  padding: 1rem;
}

.media-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.media-type {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  padding: 2rem;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .gallery-upload {
    grid-template-columns: 1fr;
  }
}

/* ===== Summer Discount Popup ===== */
@keyframes popupFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes popupPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@keyframes popupGlow {
  0%, 100% {
    box-shadow: 0 0 30px rgba(255, 200, 50, 0.3), 0 0 60px rgba(255, 100, 50, 0.15);
  }
  50% {
    box-shadow: 0 0 50px rgba(255, 200, 50, 0.5), 0 0 80px rgba(255, 100, 50, 0.25);
  }
}

@keyframes confettiFloat {
  0% { transform: translateY(0) rotate(0deg); opacity: 1; }
  100% { transform: translateY(-120px) rotate(720deg); opacity: 0; }
}

.summer-popup {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.summer-popup.is-visible {
  opacity: 1;
  visibility: visible;
}

.summer-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.summer-popup-content {
  position: relative;
  background: linear-gradient(145deg, #1a1a3e 0%, #0d0d2b 50%, #1a0a20 100%);
  border: 1px solid rgba(255, 200, 50, 0.25);
  border-radius: 20px;
  padding: 2.5rem 2rem 2rem;
  max-width: 440px;
  width: 100%;
  text-align: center;
  color: #f4f4ff;
  animation: popupSlideUp 0.5s ease forwards, popupGlow 3s ease-in-out infinite;
  overflow: hidden;
}

.summer-popup-content::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(255, 200, 50, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.summer-popup-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: var(--muted, #b7b8d2);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color 0.2s, transform 0.2s;
  z-index: 2;
}

.summer-popup-close:hover {
  color: #fff;
  transform: scale(1.2);
}

.summer-popup-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b35, #ffc832);
  color: #1a0a20;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  animation: popupPulse 2s ease-in-out infinite;
}

.summer-popup-icon {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 0 12px rgba(255, 200, 50, 0.4));
}

.summer-popup-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  background: linear-gradient(135deg, #ffc832, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.summer-popup-discount {
  margin: 0.5rem 0 0.25rem;
}

.discount-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffc832, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.discount-percent {
  font-size: 2.5rem;
}

.summer-popup-subtitle {
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffc832;
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
}

.summer-popup-desc {
  font-size: 0.95rem;
  color: var(--muted, #b7b8d2);
  line-height: 1.6;
  margin: 0 0 1.5rem;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.summer-popup-desc strong {
  color: #ffc832;
}

.summer-popup-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.summer-popup-book {
  background: linear-gradient(135deg, #ff6b35, #ffc832);
  color: #1a0a20;
  font-weight: 700;
  border: none;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.summer-popup-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 107, 53, 0.4);
}

.summer-popup-dismiss {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--muted, #b7b8d2);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.summer-popup-dismiss:hover {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.summer-popup-terms {
  font-size: 0.72rem;
  color: rgba(183, 184, 210, 0.5);
  margin: 0;
  line-height: 1.4;
}

/* Light theme popup override */
html[data-theme='light'] .summer-popup-content {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9ff 50%, #fff8f0 100%);
  border-color: rgba(255, 150, 50, 0.2);
  color: #0f172a;
}

html[data-theme='light'] .summer-popup-close {
  color: #475569;
}

html[data-theme='light'] .summer-popup-close:hover {
  color: #0f172a;
}

html[data-theme='light'] .summer-popup-desc {
  color: #475569;
}

html[data-theme='light'] .summer-popup-dismiss {
  color: #475569;
  border-color: rgba(15, 23, 42, 0.15);
}

html[data-theme='light'] .summer-popup-dismiss:hover {
  border-color: rgba(15, 23, 42, 0.3);
  color: #0f172a;
}

html[data-theme='light'] .summer-popup-terms {
  color: rgba(71, 85, 105, 0.5);
}

/* Mobile popup adjustments */
@media (max-width: 480px) {
  .summer-popup-content {
    padding: 2rem 1.25rem 1.5rem;
    border-radius: 16px;
  }

  .discount-number {
    font-size: 3.5rem;
  }

  .discount-percent {
    font-size: 2rem;
  }

  .summer-popup-title {
    font-size: 1.3rem;
  }

  .summer-popup-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .summer-popup-book,
  .summer-popup-dismiss {
    justify-content: center;
  }
}
