@font-face {
  font-family: "Avenir Next LT Pro";
  src: url("fonts/AvenirNextLTPro-Light.woff2") format("woff2"),
    url("fonts/AvenirNextLTPro-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}

:root {
  --bg: #1a1a22;
  --panel: #121221;
  --text: #eaeaea;
  --muted: #a1a1b3;
  --accent: #a361e0;
  --ring: rgba(163, 97, 224, 0.35);
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  font-family: "Avenir Next LT Pro", system-ui, -apple-system, Segoe UI, Roboto,
    Ubuntu, Cantarell, Noto Sans, Arial, sans-serif;
  background: radial-gradient(
      1600px 1000px at 25% -15%,
      #3a2457 0%,
      #2a1b3d 45%,
      #1a1a22 80%,
      var(--bg) 100%
    ),
    var(--bg);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.6;
}

.wrap {
  width: min(1100px, 92%);
  margin-inline: auto;
}

/* HEADER + FOOTER */
.site-header,
.site-footer {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0)
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  padding: 10px 0;
}
.site-header .wrap,
.site-footer .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 0;
}
.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.hero-title {
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 2.5rem;
  color: var(--accent);
}

/* NAVIGATION */
nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}
nav ul li {
  margin-left: 1rem;
}
nav ul li a {
  text-decoration: none;
  color: var(--muted);
  font-size: 18px;
  transition: color 0.3s, border-bottom 0.3s;
}
nav ul li a:hover {
  color: var(--text);
  border-bottom: 2px solid var(--accent);
}

/* HEADINGS */
.hero h1 {
  font-size: clamp(2rem, 3vw + 1rem, 3rem);
  margin: 0.2rem 0 0.6rem;
  color: var(--accent);
}

/* CARDS */
.card {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  position: relative;
  text-align: center;
  overflow: hidden;
  padding: 0.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

/* SECTIONS */
section {
  margin: 1.5rem 0;
  scroll-margin-top: 80px;
}

/* GRID */
.grid.two {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.5rem;
}

/* BUTTONS */
.button {
  display: inline-block;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), #9cb8ff);
  color: #0b0b0c;
  text-decoration: none;
  border: none;
  font-weight: 700;
  box-shadow: 0 6px 18px var(--ring);
}
.button:hover {
  transform: translateY(-1px);
}

button.button {
  cursor: not-allowed;
}

/* AUDIO PLAYERS */
.players {
  display: grid;
  gap: 0.6rem;
}
.player {
  display: grid;
  gap: 0.3rem;
  padding: 0.6rem;
  border: 1px dashed #9459cc81;
  border-radius: 12px;
}
audio {
  width: 100%;
}

/* FORMS */
.contact-form {
  display: grid;
  gap: 0.8rem;
}
.contact-form label {
  display: grid;
  gap: 0.4rem;
}
input,
textarea {
  background: #0f0f12;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  outline: none;
}
input:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--ring);
}
button.button {
  cursor: not-allowed;
}

/* FOOTER */
.site-footer {
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

/* ICONS */
.icon {
  vertical-align: middle;
  display: inline-block;
  margin-bottom: 10px;
  width: 32px;
  height: 32px;
}

/* LINKS */
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* SHOWCASE LINK */
.show {
  color: inherit;
  text-decoration: none;
  background-color: #2f2f38;
}
.show:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 20px;
  justify-items: center;
}


.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px var(--accent), 0 0 20px rgba(163, 97, 224, 0.6);
}

.main-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: 20px auto;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.6);
}

.main-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  display: block;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.6);
}


/* LAST ROW FIX */
.last-row {
  width: 385px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: flex;
  justify-content: center;
  grid-column: 1 / -1;
  gap: 10px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  body {
    font-size: 15px;
    line-height: 1.5;
  }

  .gallery {
    display: grid;
    grid-template-columns: 1fr; /* single column */
    gap: 10px;                  /* spacing between images */
    justify-items: center;       /* center images horizontally */
    align-items: center;         /* center images vertically if needed */
  }

  .gallery img {
    width: 100%;
    height: auto;        /* keep proportions */
    object-fit: contain; /* no cropping */
    display: block;
  }
  .hero h1 {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }

  .last-row {
    width: 100%;           /* full width on mobile */
    flex-direction: column; /* stack images vertically */
    justify-content: center;
    align-items: center;    /* center images horizontally */
    gap: 10px;
  }

  .last-row img {
    width: 100%;
    height: auto;           /* maintain proportions */
    object-fit: contain;    /* no cropping */
    display: block;
  }
}