@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,100..900&display=swap");

:root {
  --primary-color: #28313a;
  --accent-color: #a8996e;
  --background-color: #ffffff;
  --text-color: #000000;

  --section-padding: 4.5rem;
  --section-padding-mobile: 3.75rem;
  --content-width: 1120px;

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --card-border: 1px solid rgba(168, 153, 110, 0.22);
  --card-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  --card-shadow-hover: 0 20px 46px rgba(0, 0, 0, 0.24);
  --card-backdrop: blur(12px);
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.7;
}

.hidden {
  display: none !important;
}

section {
  position: relative;
}

section:not(#home, #contactus, #setlist) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--section-padding) 1.5rem calc(var(--section-padding) + 1rem);
  min-height: auto;
}

/* TYPOGRAPHY */

/* TYPOGRAPHY */

.hero-tagline,
.quote-text,
.song-list li,
.faq-answer p,
.mix-text small {
  line-height: 1.7;
}

.song-list li,
.faq-answer p,
.mix-text small {
  font-size: 0.95rem;
}

.hero-title,
.media-heading,
.title,
.song-category {
  line-height: 1.15;
}

.quote-text,
.faq-answer p {
  letter-spacing: 0.1px;
}

.song-list li,
.faq-answer p,
.mix-text small {
  font-size: 0.95rem;
}

.hero-title,
.media-heading,
.title,
.song-category {
  line-height: 1.15;
}

/* FOCUS */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 3px;
}

/* TRANSITIONS */

/* TRANSITIONS */

a,
button,
input,
textarea,
.gallery-item,
.video-card,
.song-category-card,
.audio-player-shell,
.mix-preview-card,
.phone-link,
.contact-link,
.hero-cta,
.hero-secondary-cta,
.send-btn,
.social-icons a,
.testimonial-slide,
.testimonial-card-modern,
.testimonial-arrow,
.testimonial-dot {
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    filter 0.3s ease;
}

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

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* HERO */

#home {
  position: relative;
  min-height: 100svh;
  height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: #0d1116;
  padding: 5rem 1rem;
  isolation: isolate;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

/* visible stage-light beams */
.hero-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      115deg,
      transparent 0%,
      transparent 38%,
      rgba(212, 192, 138, 0.22) 46%,
      rgba(212, 192, 138, 0.08) 52%,
      transparent 62%
    ),
    linear-gradient(
      245deg,
      transparent 0%,
      transparent 38%,
      rgba(212, 192, 138, 0.22) 46%,
      rgba(212, 192, 138, 0.08) 52%,
      transparent 62%
    );
  filter: blur(10px);
  transform: scale(1.08);
  pointer-events: none;
}

/* top light sources + soft glow behind image */
.hero-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 18% 8%,
      rgba(255, 230, 170, 0.45) 0%,
      transparent 18%
    ),
    radial-gradient(
      circle at 82% 8%,
      rgba(255, 230, 170, 0.45) 0%,
      transparent 18%
    ),
    radial-gradient(
      circle at 50% 42%,
      rgba(212, 192, 138, 0.14) 0%,
      transparent 28%
    );
  filter: blur(18px);
  pointer-events: none;
}

.hero-image {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: linear-gradient(to bottom, #202832 0%, #161c22 45%, #101418 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.18) 45%,
    rgba(0, 0, 0, 0.3) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 1.25rem;
  width: min(620px, 100%);
  margin-top: 20vh;
  animation: heroFadeUp 1.2s ease-out forwards;
  opacity: 0;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.35rem, 4vw, 4.2rem);
  font-weight: 700;
  margin: 0 0 0.45rem;
  letter-spacing: -1px;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.75);
}

.hero-tagline {
  font-size: clamp(0.98rem, 1.15vw, 1.2rem);
  font-weight: 400;
  margin: 0 auto 1.4rem;
  opacity: 0.96;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.65);
  max-width: 30ch;
}

.hero-cta-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.hero-cta,
.hero-secondary-cta,
.send-btn,
.contact-link {
  position: relative;
  overflow: hidden;
  display: inline-block;
  text-decoration: none;
}

.hero-cta:active,
.hero-secondary-cta:active,
.send-btn:active,
.contact-link:active {
  transform: translateY(-1px) scale(0.98);
}

.hero-cta,
.hero-secondary-cta {
  padding: 0.85rem 1.45rem;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.hero-cta {
  background: linear-gradient(135deg, var(--accent-color), #d4c08a);
  color: var(--primary-color);
  box-shadow: 0 10px 24px rgba(168, 153, 110, 0.28);
}

.hero-cta:hover {
  background: linear-gradient(135deg, #d4c08a, var(--accent-color));
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(168, 153, 110, 0.36);
}

.hero-secondary-cta {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
}

.hero-secondary-cta:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

/* SECTION DIVIDERS */

.section-divider {
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  pointer-events: none;
  z-index: 5;
}

.section-divider svg {
  display: block;
  width: 100%;
  height: 88px;
}

.section-divider path {
  fill: var(--accent-color);
  filter: drop-shadow(0 -4px 10px rgba(168, 153, 110, 0.12));
}

.section-divider-top {
  top: -1px;
}

.section-divider-top svg {
  transform: rotate(180deg);
}

.section-divider-bottom {
  bottom: -1px;
}

/* NAVIGATION */

.nav {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1100px, calc(100% - 28px));
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  background: rgba(40, 49, 58, 0.76);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(194, 176, 127, 0.22);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
  z-index: 1000;
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease,
    height 0.35s ease;
}

.nav.scrolled {
  height: 60px;
  background: rgba(24, 30, 36, 0.55);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  opacity: 0;
}

.nav.scrolled:hover {
  opacity: 1;
  background: rgba(24, 30, 36, 0.92);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.28);
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
}

.nav-right {
  gap: 0.8rem;
}

.mam_logo {
  height: 54px;
  width: auto;
  display: block;
  transition:
    height 0.3s ease,
    opacity 0.3s ease,
    transform 0.3s ease;
}

.nav.scrolled .mam_logo {
  height: 48px;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-main li {
  list-style: none;
}

.links {
  color: rgba(255, 255, 255, 0.94);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.2px;
}

.links:hover,
.links:focus {
  color: #d4c08a;
  transform: translateY(-2px);
}

.phone-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 0.9rem;
  text-decoration: none;
}

.phone-link:hover,
.phone-link:focus {
  background: var(--accent-color);
  color: var(--primary-color);
  transform: scale(1.08);
}

.contact-link {
  background: linear-gradient(135deg, var(--accent-color), #d4c08a);
  color: var(--primary-color) !important;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(168, 153, 110, 0.28);
}

.contact-link:hover,
.contact-link:focus {
  background: linear-gradient(135deg, #d4c08a, var(--accent-color));
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(168, 153, 110, 0.34);
}

.nav-min {
  display: none;
}

.hamburger {
  display: none;
  cursor: pointer;
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 300;
  border: 0;
  background: transparent;
  padding: 0.25rem;
}

.hamburger .line {
  width: 32px;
  height: 4px;
  background: var(--accent-color);
  margin: 7px 0;
  transition: all 0.4s;
}

.hamburger.change {
  transform: rotate(90deg);
}

.change .line:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.change .line:nth-child(2) {
  opacity: 0;
}

.change .line:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 200;
  top: 0;
  right: 0;
  background: var(--primary-color);
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sidenav a {
  padding: 14px 32px;
  text-decoration: none;
  font-size: 1.15rem;
  color: var(--accent-color);
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: white;
}

/* GENERAL HEADINGS */

.media-heading {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  text-align: center;
  margin: 0 0 2.25rem;
  color: var(--accent-color);
  letter-spacing: 1.5px;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
}

.media-heading::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-color),
    #d4c08a,
    var(--accent-color),
    transparent
  );
  opacity: 0.95;
}

/* MEDIA */

#media {
  background: var(--primary-color);
  color: white;
  min-height: 100svh !important;
}

.media-layout,
.media-bridge,
.videos-section {
  width: min(100%, 920px);
  margin: 0 auto;
  animation: fadeUpSoft 0.9s ease both;
}

.media-bridge {
  animation-delay: 0.08s;
}

.videos-section {
  animation-delay: 0.16s;
}

.audio-player-shell {
  background: linear-gradient(
    145deg,
    rgba(40, 49, 58, 0.85),
    rgba(40, 49, 58, 0.65)
  );
  backdrop-filter: var(--card-backdrop);
  -webkit-backdrop-filter: var(--card-backdrop);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--card-shadow);
  border: var(--card-border);
  width: 100%;
}

.audio-player-shell:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(168, 153, 110, 0.34);
}

.audio-player-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
}

.audio-controls-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.audio-controls-left button {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(168, 153, 110, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: white;
  font-size: 1.05rem;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.audio-controls-left button:hover {
  background: var(--accent-color);
  color: var(--primary-color);
  border-color: var(--accent-color);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 14px 24px rgba(168, 153, 110, 0.22);
}

.audio-track-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.now-playing-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 0.2rem;
}

#current-track-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  text-shadow: none;
}

.audio-progress-wrap {
  margin: 1rem 0 1rem;
}

.progress-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent-color), #d4c08a);
  transition: width 0.15s linear;
  box-shadow: 0 0 15px var(--accent-color);
}

.audio-mix-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.65rem;
}

.audio-mix-list .mix-preview-card {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  border: 1px solid rgba(168, 153, 110, 0.18);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  cursor: pointer;
  text-align: left;
  color: inherit;
}

.audio-mix-list .mix-preview-card.active,
.audio-mix-list .mix-preview-card:hover {
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 10px 24px rgba(168, 153, 110, 0.16);
  transform: translateY(-4px) scale(1.01);
}

.mix-number {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-color);
  min-width: 24px;
}

.mix-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.mix-text strong {
  font-size: 0.86rem;
  color: white;
  font-weight: 600;
}

.mix-text small {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
}

.media-bridge {
  margin: 1.8rem auto 2rem;
}

.testimonial-card-wrapper {
  width: min(100%, 820px);
  text-align: center;
}

.stars {
  color: var(--accent-color);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  margin: 0.8rem 0;
  letter-spacing: 0.32rem;
}

.quote-text {
  font-family: "Playfair Display", serif;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-style: italic;
  font-weight: 500;
  margin: 0.8rem auto;
  color: var(--background-color);
}

.media-videos-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
}

.video-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  position: relative;
  background: #0f141a;
  border: var(--card-border);
}

.video-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(168, 153, 110, 0.34);
}

.large-video {
  aspect-ratio: 16 / 9;
}

.video-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.video-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: white;
  background: rgba(0, 0, 0, 0.3);
}

.video-link:hover .play-overlay {
  background: rgba(0, 0, 0, 0.5);
  transform: scale(1.05);
}

.video-card iframe {
  width: 100%;
  height: 100%;
}

.video-label {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  color: white;
  padding: 0.9rem;
  font-size: 0.92rem;
  font-weight: 500;
  text-align: center;
}

/* PHOTOS */

#photos {
  background: var(--background-color);
  color: white;
}

.gallery-masonry {
  column-count: 4;
  column-gap: 1rem;
  max-width: 1240px;
  margin: 0 auto;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: var(--radius-sm);
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(168, 153, 110, 0.14);
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(168, 153, 110, 0.3);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: grayscale(100%);
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: grayscale(0%) brightness(1.06) contrast(1.03);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(8px);
  transition: opacity 0.4s ease;
}

.lightbox.show {
  display: flex;
  opacity: 1;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  transform: scale(0.95);
  transition:
    transform 0.5s ease,
    opacity 0.5s ease;
  filter: grayscale(0%);
}

.lightbox img.zoomed {
  transform: scale(1.8);
  cursor: zoom-out;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3.5rem;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  user-select: none;
  transition: color 0.3s;
  padding: 1rem;
}

.prev {
  left: 3%;
}

.next {
  right: 3%;
}

.prev:hover,
.next:hover {
  color: var(--accent-color);
}

.close-lightbox {
  position: absolute;
  top: 4%;
  right: 4%;
  font-size: 3.5rem;
  color: white;
  cursor: pointer;
  transition: transform 0.3s;
}

.close-lightbox:hover {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/* TESTIMONIALS */

#testimonials {
  background: var(--primary-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100svh !important;
  overflow: hidden;
}

.testimonials-header {
  width: 100%;
  text-align: center;
  margin-bottom: 1.4rem;
}

.testimonial-slider-shell {
  width: min(100%, 1180px);
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 1rem;
  animation: fadeUpSoft 0.9s ease both;
}

.testimonial-viewport {
  overflow: hidden;
  width: 100%;
  padding: 1rem 0;
}

.testimonial-track {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  will-change: transform;
  transition: transform 0.55s ease;
}

.testimonial-slide {
  flex: 0 0 min(100%, 680px);
  opacity: 0.45;
  transform: scale(0.92);
  filter: blur(0.4px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    filter 0.35s ease;
}

.testimonial-slide.active {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

.testimonial-card-modern {
  display: grid;
  grid-template-rows: 420px 1fr;
  min-height: 720px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: var(--card-border);
  box-shadow: var(--card-shadow);
  background: rgba(255, 255, 255, 0.04);
}

.testimonial-image-wrap {
  position: relative;
  height: 100%;
}

.testimonial-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.testimonial-content-modern {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.2rem 1.1rem 1.15rem;
  color: white;
  background: linear-gradient(
    135deg,
    rgba(40, 49, 58, 0.72),
    rgba(24, 30, 36, 0.86)
  );
}

.testimonial-stars-modern {
  display: flex;
  gap: 0.4rem;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.testimonial-quote-modern {
  margin: 0 0 0.85rem;
  font-family: "Playfair Display", serif;
  font-size: clamp(0.92rem, 1vw, 1.02rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.98);
}

.testimonial-meta-modern {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.testimonial-couple-modern {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-color);
}

.testimonial-meta-modern span {
  font-size: 0.84rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.testimonial-arrow {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.testimonial-arrow:hover {
  background: var(--accent-color);
  color: var(--primary-color);
  transform: scale(1.08);
}

.testimonial-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
}

.testimonial-dot.active {
  background: var(--accent-color);
  transform: scale(1.12);
}

.testimonial-dot.active {
  background: var(--accent-color);
  transform: scale(1.12);
}

@media (max-width: 1100px) {
  .testimonial-slider-shell {
    width: min(100%, 1020px);
  }

  .testimonial-slide {
    flex-basis: min(100%, 620px);
  }

  .testimonial-card-modern {
    grid-template-rows: 380px 1fr;
    min-height: 660px;
  }
}

@media (max-width: 900px) {
  .testimonial-slider-shell {
    width: min(100%, 820px);
    grid-template-columns: 44px 1fr 44px;
    gap: 0.65rem;
  }

  .testimonial-viewport {
    padding: 0.5rem 0;
  }

  .testimonial-slide {
    flex-basis: 100%;
    opacity: 1;
    transform: scale(1);
    filter: none;
  }

  .testimonial-card-modern {
    grid-template-rows: 320px 1fr;
    min-height: auto;
  }

  .testimonial-content-modern {
    padding: 1.05rem 1rem 1rem;
  }

  .testimonial-quote-modern {
    font-size: 0.96rem;
  }

  .testimonial-dots {
    margin-top: 1.1rem;
  }
}

/* PHONES */
@media (max-width: 600px) {
  .testimonial-slider-shell {
    grid-template-columns: 40px 1fr 40px;
    gap: 0.45rem;
  }

  .testimonial-arrow {
    width: 40px;
    height: 40px;
  }

  .testimonial-card-modern {
    grid-template-rows: 220px 1fr;
  }

  .testimonial-content-modern {
    padding: 0.95rem 0.9rem;
  }

  .testimonial-quote-modern {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .testimonial-couple-modern {
    font-size: 0.96rem;
  }
}

#setlist {
  background-image: url(./img/Contact_BG.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  padding: 7.75rem 1.5rem 5.75rem;
  width: 100%;
  min-height: 100svh;
}

#setlist::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

#setlist .media-heading {
  color: #ffffff;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.setlist-container {
  position: relative;
  z-index: 2;
  column-count: 2;
  column-gap: 1.4rem;
  max-width: 1180px;
  margin: 0 auto;
  animation: fadeUpSoft 0.9s ease both;
}

.song-category-card {
  background: rgba(40, 49, 58, 0.72);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  backdrop-filter: var(--card-backdrop);
  -webkit-backdrop-filter: var(--card-backdrop);
  border: var(--card-border);
  box-shadow: var(--card-shadow);
  break-inside: avoid-column;
  margin-bottom: 1.25rem;
}

.song-sub-head {
  text-align: center;
  font-size: 1.2rem;
  font-family: poppins, Arial, Helvetica, sans-serif;
  color: #ffffff;
  font-weight: 600;
  position: relative;
  z-index: 2;
}
.song-category-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(168, 153, 110, 0.34);
}

.song-category {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 0.8rem;
  text-align: center;
  text-shadow: 0 2px 8px black;
}

.song-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.song-list li {
  margin: 0.4rem 0;
  padding-left: 1.2rem;
  position: relative;
}

.song-list li::before {
  content: "♪";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-size: 1rem;
}

/* FAQS */

#FAQs {
  background: var(--primary-color);
  min-height: 100svh !important;
}

.faqs-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.faq-section {
  width: min(100%, 920px);
  margin: 0 auto;
  animation: fadeUpSoft 0.9s ease both;
}

.faq-item {
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--accent-color);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--accent-color);
  padding: 0.85rem 1rem;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

.faq-question:hover {
  background: rgba(40, 49, 58, 0.9);
}

.faq-toggle {
  font-size: 1.6rem;
  font-weight: bold;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
  padding: 0 1rem;
}

.faq-answer p {
  margin: 1rem 0;
}

/* CONTACT */

#contactus {
  background-image: url(./img/Contact_BG.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  width: 100%;
  margin: 0;
  padding: 4.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  min-height: 100svh;
}

#contactus::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(40, 49, 58, 0.75);
  z-index: 1;
}

.contact-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 980px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeUpSoft 0.9s ease both;
}

.contact-info,
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-form form {
  width: 100%;
}

.form {
  width: 100%;
  max-width: 940px;
  background: rgba(40, 49, 58, 0.82);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.8rem;
  box-shadow: var(--card-shadow-hover);
  backdrop-filter: var(--card-backdrop);
  -webkit-backdrop-filter: var(--card-backdrop);
  border: var(--card-border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
}

.title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.7rem, 2.1vw, 2.2rem);
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.information {
  display: flex;
  align-items: center;
  margin: 0.8rem 0;
  font-size: 0.95rem;
}

.information p,
.social-media p {
  color: white;
}

.icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--primary-color);
  border-radius: 50%;
  margin-right: 0.9rem;
  font-size: 1.1rem;
}

.social-media {
  margin-top: 1.4rem;
}

.social-icons {
  display: flex;
  gap: 0.9rem;
  margin-top: 0.8rem;
}

.social-icons a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  font-size: 1.1rem;
}

.social-icons a:hover {
  background: var(--accent-color);
  transform: translateY(-5px);
}

.input-container {
  position: relative;
  margin-bottom: 1.2rem;
}

.input,
textarea.input {
  width: 100%;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(168, 153, 110, 0.2);
  border-radius: 12px;
  color: white;
  font-size: 0.95rem;
}

.input:focus,
textarea.input:focus {
  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(168, 153, 110, 0.12);
  outline: none;
}

textarea.input {
  min-height: 130px;
  resize: vertical;
}

.input-container label {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
  pointer-events: none;
  transition: 0.3s;
}

.input:focus ~ label,
.input:not(:placeholder-shown) ~ label {
  top: -0.5rem;
  left: 0.85rem;
  font-size: 0.8rem;
  background: var(--primary-color);
  padding: 0 0.45rem;
  color: var(--accent-color);
}

.send-btn {
  padding: 0.9rem;
  background: linear-gradient(135deg, var(--accent-color), #d4c08a);
  color: var(--primary-color);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(168, 153, 110, 0.25);
}

.send-btn:hover {
  background: linear-gradient(135deg, #d4c08a, var(--accent-color));
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(168, 153, 110, 0.34);
}

/* BACK TO TOP */

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-color);
  color: white;
  border: none;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #d4c08a;
  transform: translateY(-8px) scale(1.08);
  box-shadow: 0 15px 40px rgba(168, 153, 110, 0.5);
  color: var(--primary-color);
}

/*Thank you page*/
#thank-you {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 120px 20px 60px;
}

#thank-you .thank-you-card {
  width: 100%;
  max-width: 700px;
  background: #28313a;
  color: #ffffff;
  padding: 50px 35px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

#thank-you .title {
  color: #a8996e;
  margin-bottom: 20px;
}

#thank-you p {
  margin-bottom: 18px;
  line-height: 1.6;
}

#thank-you .back-home-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 28px;
  background: #a8996e;
  color: #ffffff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.3s ease;
}

#thank-you .back-home-btn:hover {
  transform: translateY(-2px);
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .nav {
    display: none;
  }

  .nav-min {
    display: flex;
  }

  .hamburger {
    display: block;
  }

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

  .media-videos-grid {
    grid-template-columns: 1fr;
    max-width: 840px;
  }

  .gallery-masonry {
    column-count: 3;
  }
}

@media (max-width: 950px) {
  .audio-player-header {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .audio-controls-left {
    justify-content: center;
  }

  .audio-track-info {
    text-align: center;
  }
  .song-sub-head {
    font-size: 1rem;
  }

  .form {
    grid-template-columns: 1fr;
    max-width: 95%;
  }
}

@media (max-width: 900px) {
  #setlist,
  #contactus {
    background-attachment: scroll;
  }

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

  .gallery-masonry {
    column-count: 2;
  }

  .setlist-container {
    column-count: 1;
  }

  .hero-content {
    width: min(560px, 100%);
    margin-top: -1vh;
  }

  .hero-image {
    object-position: center 30%;
  }
}

@media (max-width: 768px) {
  #home {
    padding: 5rem 1rem;
  }

  .hero-image {
    object-position: center 24%;
  }

  .hero-content {
    width: min(92%, 100%);
    margin-top: 0;
  }

  .hero-title {
    font-size: clamp(2.1rem, 9vw, 3.4rem);
  }

  .hero-tagline {
    font-size: clamp(0.95rem, 4vw, 1.12rem);
    margin-bottom: 1.3rem;
  }

  .section-divider svg {
    height: 72px;
  }

  .back-to-top {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 600px) {
  section:not(#home, #contactus, #setlist) {
    padding: var(--section-padding-mobile) 1rem
      calc(var(--section-padding-mobile) + 1.25rem);
  }

  .testimonial-image-wrap {
    height: 220px;
  }

  .testimonial-content-modern {
    padding: 0.85rem 0.85rem 0.85rem;
  }

  .testimonial-quote-modern {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .testimonial-couple-modern {
    font-size: 0.9rem;
  }

  .media-heading {
    margin-bottom: 1.9rem;
    font-size: clamp(1.4rem, 3vw, 2.5rem);
  }

  .audio-player-shell {
    padding: 1rem;
  }

  .audio-controls-left button {
    width: 46px;
    height: 46px;
    font-size: 1rem;
  }

  #current-track-title {
    font-size: 0.98rem;
  }

  .audio-mix-list {
    grid-template-columns: 1fr;
  }

  .media-bridge {
    margin: 1.6rem auto 2rem;
  }

  .song-category-card {
    padding: 1.15rem;
  }

  .song-category {
    font-size: 1.08rem;
  }

  .song-list li {
    font-size: 0.92rem;
  }

  .hero-image {
    object-position: center 18%;
  }

  .hero-cta-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta,
  .hero-secondary-cta {
    width: min(100%, 280px);
    text-align: center;
  }

  .hero-content {
    margin-top: 20vh;
  }

  .hero-cta-wrapper {
    margin-top: 0.85rem;
  }

  .section-divider svg {
    height: 58px;
  }

  .social-icons {
    gap: 0.75rem;
  }

  .social-icons a,
  .icon {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .gallery-masonry {
    column-count: 1;
  }

  .hero-content {
    margin-top: 22vh;
  }

  .hero-cta-wrapper {
    margin-top: 0.85rem;
  }

  .hero-image {
    object-position: center 14%;
  }

  .hero-title {
    font-size: clamp(1.95rem, 10vw, 2.9rem);
  }

  .prev,
  .next,
  .close-lightbox {
    font-size: 2.5rem;
  }
}
@media (max-width: 600px) {
  #contactus {
    padding: 3.25rem 0.85rem;
  }

  .form {
    padding: 1.15rem 1rem;
    gap: 0.5rem;
  }

  .title {
    margin-bottom: 0.65rem;
  }

  .information {
    margin: 0.45rem 0;
  }

  .social-media {
    margin-top: 0.35rem;
  }

  .input-container {
    margin-bottom: 0.6rem;
  }

  textarea.input {
    min-height: 90px;
  }

  .send-btn {
    padding: 0.8rem;
  }
  .title {
    margin-top: 10px;
  }

  .information {
    margin: 4px 0;
  }
}
