body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #111;
  margin: 0;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  background-color: #000;
  color: #fff;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
}

.logo-icon { width: 36px; height: 36px; border-radius: 50%; }

.nav a {
  margin-left: 32px;
  text-decoration: none;
  color: #fff;
}

.container {
  text-align: center;
  padding: 80px 20px;
}

.page-title {
  font-size: 42px;
  margin-bottom: 60px;
  font-weight: 700;
}

.cylinder-carousel {
  perspective: 1500px;
  width: 100%;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible; /* allow cards to peek */
  position: relative;
}

.carousel-track {
  display: flex;
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
  position: relative;
}

.artist-card {
  width: 220px;
  flex-shrink: 0;
  text-align: center;
  transition: transform 0.3s ease;
  position: absolute; /* position cards absolutely around cylinder */
  left: 50%; /* center around track */
  top: 50%;
  transform-origin: center center;
}

.artist-card img {
  width: 200px; /* slightly smaller for curvature */
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}


.artist-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
}

.artist-card h2 {
  margin-top: 16px;
  font-size: 20px;
}

.album-card {
  width: 220px;
  flex-shrink: 0;
  text-align: center;
  transition: transform 0.3s ease;
  position: absolute; /* position cards absolutely around cylinder */
  left: 50%; /* center around track */
  top: 50%;
  transform-origin: center center;
}

.album-card img {
  width: 200px; /* slightly smaller for curvature */
  height: 200;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}


.album-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.album-card h2 {
  margin-top: 16px;
  font-size: 20px;
}

.album-card h3 {
  margin-top: 16px;
  font-size: 15px;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}

.social {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.social img { width: 20px; height: 20px; }

.site-footer {
  padding: 40px;
  text-align: center;
  color: #000000;
}

/* Disable text selection globally */
body, h1, h2, p, a, button, .artist-card, .album-card {
  user-select: none;       /* Standard */
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* IE/Edge */
}

/* Disable image dragging */
img {
  pointer-events: none;      /* Prevent drag & click */
  -webkit-user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-touch-callout: none; /* iOS */
  -khtml-user-select: none;
}

.title-with-icons {
  display: inline-flex;
  align-items: center;
  gap: 12px; /* space between title and icons */
  justify-content: center;
  margin-bottom: 60px; /* same as current page-title spacing */
}

.title-with-icons .page-title {
  margin: 0; /* remove default margin */
}

.title-with-icons .title-icon {
  width: 36px;   /* adjust size as needed */
  height: 36px;
}

/* Centered content block */
.about-block {
    max-width: 600px;
    margin: 0 auto;
    background: #f8f8f8;
    color: #111;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    line-height: 1.6;
}

.about-block p.contact {
    margin-top: 20px;
    font-weight: 600;
}

.about-block .socials {
    justify-content: center;
    margin-top: 25px;
}

.partners-block {
    max-width: 800px;
    margin: 0 auto;
    background: #f8f8f8;
    color: #111;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.partners-intro {
    margin-bottom: 40px;
    font-size: 16px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    align-items: center;
}

.partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.partner-card img {
    max-width: 220px;
    max-height: 120px;
    object-fit: contain;
    /* filter: grayscale(100%); */
    opacity: 0.85;
    transition: all 0.3s ease;
}

.partner-card img:hover {
    /* filter: grayscale(0%); */
    opacity: 1;
}

.partner-card h2 {
    font-size: 18px;
    font-weight: 600;
}

html, body {
  overflow: hidden;   /* disables all scrolling */
  height: 100%;       /* ensures the page fills viewport */
}