/* for animations https://animista.net/ */

html{
  scroll-behavior: smooth;
} 

:root{
  --bg: #37019D;
  --divider: #000000;
  --text: #FFFFFF;
  --muted: rgba(255,255,255,.78);
  --card: rgba(255,255,255,.08);
  --cardBorder: rgba(255,255,255,.18);
  --max: 1100px;
  --wrapPad: 48px;

  --sectionY: 88px;
  --sectionYMobile: 64px;
  --titleGap: 22px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }

body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

a{ color: inherit; text-decoration: none; }
.wrap{ width: min(var(--max), calc(100% - var(--wrapPad))); margin-inline: auto; }

header{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  padding: 18px 0;
}

.nav{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 12px;
}

.nav a{
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(0,0,0,.10);
  transition: transform .15s ease, background .15s ease;
  font-weight: 600;
  font-size: 32px;
  text-align: center;
}

.nav a:hover{
  transform: translateY(-1px);
  background: rgba(0,0,0,.18);
}

.navLeft{ justify-self: start; }
.navCenter{ justify-self: center; }
.navRight{ justify-self: end; }

.hero{
  min-height: 100vh;
  display: grid;
  align-items: center;
  position: relative;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.25), rgba(0,0,0,.65)),
    url("./images/herobackground.png");
  background-size: cover;
  background-position: center;
}

.heroContent{
  width: min(var(--max), calc(100% - var(--wrapPad)));
  margin-inline: auto;
  padding: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  gap: 18px;
}

.heroCenterImg{
  width: min(680px, 85vw);
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform .22s ease, filter .22s ease;
  filter:
    drop-shadow(0 26px 18px rgba(0,0,0,.55))
    drop-shadow(0 0 0 rgba(255,255,255,0));
  animation: logoGlow 2.8s ease-in-out infinite;
  transform-origin: center;
}

.heroCenterImg:hover{
  transform: scale(1.06);
  filter:
    drop-shadow(0 34px 22px rgba(0,0,0,.62))
    drop-shadow(0 0 18px rgba(255,255,255,.35));
}

@keyframes logoGlow{
  0%, 100%{
    filter:
      drop-shadow(0 26px 18px rgba(0,0,0,.55))
      drop-shadow(0 0 10px rgba(255,255,255,.18));
  }
  50%{
    filter:
      drop-shadow(0 30px 20px rgba(0,0,0,.60))
      drop-shadow(0 0 20px rgba(255,255,255,.34));
  }
}

@media (prefers-reduced-motion: reduce){
  .heroCenterImg{ animation: none; }
}

.divider{
  background: var(--divider);
  padding: 14px 0;
  overflow: hidden;
}

.marquee{ position: relative; }

.marqueeTrack{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  align-items: center;
  width: max-content;
  animation: marquee 18s linear infinite;
}

.marqueeGroup{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  gap: 18px;
  align-items: center;
  padding-right: 18px;
}

.marqueeGroup span{
  font-family: Archivo, Inter, sans-serif;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255,255,255,.9);
  white-space: nowrap;
}

.marqueeGroup span::after{
  content: "•";
  margin-left: 18px;
  color: rgba(255,255,255,.55);
}

@keyframes marquee{
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce){
  .marqueeTrack{ animation: none; }
}

section{
  padding: var(--sectionY) 0;
}

.sectionTitle{
  font-family: Archivo, Inter, sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.6vw, 40px);
  letter-spacing: -0.01em;
  margin: 0 0 var(--titleGap) 0;
  text-align: center; 
}


.artistsGrid{
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
}

.artistCard{
  width: min(420px, 92vw);
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  text-align: center;
}

.artistImg{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
}

.artistDesc{
  color: rgba(255,255,255,.78);
  line-height: 1.55;
  font-size: 14px;
}

.servicesStack{
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 18px;
}

.serviceGif{
  width: auto;
  height: auto;
  max-width: 20%;
  display: block;
  border: none;
  border-radius: 0;
  background: none;
}

.serviceText{
  width: min(700px, 100%);
  display: grid;
  gap: 10px;
  text-align: center;
}

.serviceText h3{
  font-family: Archivo, Inter, sans-serif;
  font-weight: 900;
  letter-spacing: -0.01em;
  font-size: 18px;
  margin-top: 10px;
}

.serviceText p{
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.aboutGrid{
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 18px;
}

.aboutCard{
  width: min(700px, 100%);
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.78);
  line-height: 1.65;
  text-align: center;
}

.contactGrid{
  display: grid;
  grid-template-columns: 1fr; 
  justify-items: center;
  gap: 18px;
}

.contactBox{
  width: min(700px, 100%);
  padding: 22px;
  border-radius: 22px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.18);
  display: grid;
  gap: 14px;
}

.imageMarquee {
  position: relative;
}

.imageMarqueeTrack {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  align-items: center;
  width: max-content;
  animation: imageMarquee 24s linear infinite;
}

.imageMarqueeGroup {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  gap: 18px;
  align-items: center;
  padding-right: 18px;
}

.dividerImages {
  margin: 40px 0;
  padding: 60px 0;
}

.imageMarqueeGroup img {
  width: 240px;
  height: 240px;
  display: block;
  object-fit: cover;
  border: none;
  border-radius: 0;
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, .55));
}



.contactBox label{
  font-size: 12px;
  color: rgba(255,255,255,.78);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.field{
  display: grid;
  gap: 8px;
}

.socialRow {
  display: grid;
  place-items: center;
  margin-top: 18px;
}

.socialLink {
  display: grid;
  place-items: center;
}

.socialIcon {
  width: 46px;
  height: 46px;
  display: block;
  transition: transform .18s ease, filter .18s ease;
}

.socialLink:hover .socialIcon {
  transform: scale(1.10);
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, .25));
}

input, textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: #fff;
  font: inherit;
  outline: none;
}

textarea{ min-height: 120px; resize: vertical; }

.submit{
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #fff;
  background: #fff;
  color: #0b0b0b;
  font-weight: 900;
  font-family: Archivo, Inter, sans-serif;
  letter-spacing: .01em;
  cursor: pointer;
}

.contactInfo{
  width: min(700px, 100%);
  display: grid;
  gap: 10px;
  color: var(--muted);
  line-height: 1.6;
  text-align: center;
}

.contactInfo strong{
  color: #fff;
  font-family: Archivo, Inter, sans-serif;
  font-weight: 900;
}

.siteFooter{
  padding: 26px 0 34px;
  color: rgba(255,255,255,.65);
  font-size: 13px;
  text-align: center;
}

@media (max-width: 900px){
  .nav{
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .navLeft, .navCenter, .navRight{
    justify-self: stretch;
  }
  .nav a{
    font-size: 20px;
  }

  section{
    padding: var(--sectionYMobile) 0;
  }

    @keyframes imageMarquee {
      0% {
        transform: translateX(0);
      }
  
      100% {
        transform: translateX(-50%);
      }
    }
  
    @media (prefers-reduced-motion: reduce) {
      .imageMarqueeTrack {
        animation: none;
      }
    }
}