body {
  margin: 0;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #f8f9fb;
  color: #111;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-gradient {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 35%;
  background: linear-gradient(
    to top,
    rgba(248, 249, 251, 0.9) 0%,
    rgba(248, 249, 251, 0.5) 30%,
    rgba(248, 249, 251, 0.2) 60%,
    rgba(248, 249, 251, 0) 100%
  );

  pointer-events: none;
}

/* EVENT CARD */
.event-card-wrapper {
  position: absolute;
  margin-top: -80px;
  padding: 0 16px;
  width: 40%;
}

@media (max-width: 767px) {
  .event-card-wrapper {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .event-card-wrapper {
    width: 100%;
  }
}

.event-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 24px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-top: -10px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.event-label {
  font-size: 15px;
  letter-spacing: 2.5px;
  color: #9aa0a6;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.event-card h1 {
  font-size: 26px;
  margin: 0 0 10px;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.2;
}
.event-meta {
  display: flex;
  flex-direction: column;
  gap: 6px; /* reduced gap */
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.meta-icon {
  font-size: 18px;
  color: #777;
}

.meta-item p {
  margin: 0;
  font-size: 13.5px;
  color: #6b7280;
  font-weight: 400;
}

/* ABOUT SECTION */
.about-section {
  padding: 28px 20px;
  margin-top: 80px;
  position: relative;
  z-index: 1;
}

.about-title {
  font-size: 15px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #9aa0a6;
  margin-bottom: 10px;
  font-weight: 600;
}

.about-highlight {
  font-size: 17px;
  line-height: 1.7;
  color: #111;
  font-weight: 400;
  letter-spacing: -0.2px;
}

.about-content {
  display: flex;
  max-height: 350px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  padding-right: 8px;
  position: relative;
}
.about-content::-webkit-scrollbar {
  display: none;
}

.about-content {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.about-content::after {
  content: "";
  position: sticky;
  bottom: 0;
  display: block;
  height: 40px;

  background: linear-gradient(
    to bottom,
    rgba(248, 249, 251, 0),
    rgba(248, 249, 251, 1)
  );
}

.about-divider {
  width: 12px;
  height: 1px;
  background: #ddd;
}

@media (min-width: 768px) {
  .hero {
    height: 500px;
  }

  .event-card {
    padding: 28px;
  }

  .event-card h1 {
    font-size: 32px;
  }

  .about-section {
    padding: 60px 40px;
  }

  .artist-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1100px;
    margin: auto;
  }

  .artist-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---------------------------------ARTIST SECTION--------------------------- */

.artist-section {
  background: #f1f4f7;
  padding: 50px 16px;
}

.section-title.center {
  text-align: center;
}

.artist-grid {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 14px;
  max-width: 500px;
  margin: auto;
}

.artist-item {
  display: flex;
  justify-content: center;
  flex: 0 0 auto;
}

.artist-card {
  text-decoration: none;
  color: #111;
  text-align: center;
  width: 100%;
}

.artist-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 15px;
  overflow: hidden;
  background: #fffdfd;
  margin-bottom: 0;
}

.artist-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(10%);
}

.artist-info span {
  font-size: 12px;
  letter-spacing: 1.2px;
  color: #696c70;
  display: block;
  margin-top: 8px;
}

.artist-info h3 {
  font-size: 18px;
  margin-top: 4px;
  font-weight: 600;
  letter-spacing: -0.2px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .artist-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    max-width: 700px;
    margin: 0 auto;
  }

  .artist-item {
    width: 220px;
    flex: 0 0 auto;
  }

  .artist-card {
    width: 100%;
  }

  .artist-image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
  }

  .artist-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .artist-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1000px;
  }
}

@media (min-width: 1024px) {
  .artist-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1000px;
  }
}

.artist-grid.count-1 {
  display: flex !important;
  justify-content: center;
}

.artist-grid.count-1 .artist-item {
  width: 240px;
}

.artist-grid.count-2 {
  display: flex !important;
  justify-content: center;
  gap: 32px;
}

@media (min-width: 768px) {
  .artist-grid.count-2 {
    display: flex !important;
    gap: 40px;
  }
}

@media (min-width: 1024px) {
  .artist-grid.count-2 {
    display: flex !important;
    gap: 48px;
  }
}

.artist-grid.count-2 .artist-item {
  width: 160px !important;
}

@media (min-width: 768px) {
  .artist-grid.count-2 .artist-item {
    width: 200px !important;
  }
}

@media (min-width: 1024px) {
  .artist-grid.count-2 .artist-item {
    width: 220px !important;
  }
}

@media (min-width: 1024px) {
  .artist-grid.count-3 {
    grid-template-columns: repeat(3, 1fr) !important;
    max-width: 720px;
    margin: 0 auto;
  }
}

/*  ARTIST SLIDER*/

.artist-slider {
  width: 100%;
  margin-top: 60px;
}

.artist-window {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.artist-track {
  display: flex;
  gap: 25px;
  width: max-content;
  animation: scrollInfinite 30s linear infinite;
  will-change: transform;
}

@keyframes scrollInfinite {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 15px));
  }
}

.artist-slider:hover .artist-track {
  animation-play-state: paused;
}

.artist-slide {
  flex: 0 0 auto;
  text-align: center;
}

.artist-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 6px;
  background: #fff;
}

.artist-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artist-slide h4 {
  font-size: 14px;
  font-weight: 600;
  margin-top: 10px;
  white-space: nowrap;
}
/* <--------------------------------ARTIST PAGE CSS-------------------------------> */

.container {
  padding: 24px 16px;
  max-width: 520px;
  margin: 0 auto;
}

/*ARTIST HERO SECTION */
.artist-hero {
  padding-top: 24px;
  padding-bottom: 32px;
}

.artist-image-wrapper {
  position: relative;
  margin-bottom: 24px;
}

.artist-image {
  width: 100%;
  border-radius: 18px;
  position: relative;
  z-index: 2;
}

.artist-tag2 {
  font-size: 26px;
}

.accent {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
}

.accent-1 {
  width: 140px;
  height: 140px;
  background: rgba(0, 150, 255, 0.12);
  top: -20px;
  left: -20px;
}

.accent-2 {
  width: 180px;
  height: 180px;
  background: rgba(255, 100, 100, 0.1);
  bottom: -30px;
  right: -20px;
}

.artist-tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  color: #6b7280;
  background: rgba(0, 0, 0, 0.04);
  padding: 6px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 10px;
}

.artist-content {
  padding: 0 2px;
}

.artist-content h1 {
  font-size: 30px;
  margin: 8px 0;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.artist-bio {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

/* BUTTONS */
.artist-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.btn-primary {
  background: #111;
  color: #fff;
  border: none;
  padding: 11px 18px;
  border-radius: 10px;
  font-size: 14px;
  cursor: pointer;
}

.btn-secondary {
  background: transparent;
  border: 1px solid #e5e7eb;
  padding: 11px 18px;
  border-radius: 10px;
  font-size: 14px;
  cursor: pointer;
}

/* ABOUT SECTION */
.artist-about {
  margin-top: 8px;
  max-height: 350px;
  overflow-y: auto;
  padding-right: 8px;
  position: relative;
}

.artist-about::-webkit-scrollbar {
  display: none;
}

.artist-about {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.artist-about::after {
  content: "";
  position: sticky;
  bottom: 0;
  display: block;
  height: 40px;

  background: linear-gradient(
    to bottom,
    rgba(248, 249, 251, 0),
    rgba(248, 249, 251, 1)
  );
}

.about-heading {
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #9aa0a6;
  margin-bottom: 11px;
  font-weight: 600;
}

h2.about-heading {
  margin: 20px 0px;
}
.about-content {
  max-width: 100%;
}

.artist-tag {
  margin-bottom: 6px;
}

.artist-content h1 {
  margin: 4px 0 10px;
  line-height: 1.4;
}

.about-highlight {
  font-size: 16px;
  line-height: 1.7;
  color: #111;
  font-weight: 500;
}

.about-divider {
  width: 40px;
  height: 1px;
  background: #e5e7eb;
  margin: 18px 0;
}

.about-sub {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.8;
}

p {
  margin: 0;
}

.artist-name {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icon {
  text-decoration: none;
  font-size: 30px;
}

.social-icon:hover {
  color: #e1306c;
}

.artwork-bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 12px;
}

.artwork-main,
.artwork-small,
.artwork-wide {
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
}

.artwork-main {
  grid-column: span 2;
  position: relative;
}

.artwork-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.art-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.25));
  color: #fff;
  backdrop-filter: blur(6px);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.artwork-main:hover .art-overlay {
  transform: translateY(-4px);
}

.art-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.art-sub {
  font-size: 11px;
  opacity: 0.85;
}

.artwork-small img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.artwork-small h4 {
  font-size: 12px;
  padding: 8px 10px 2px;
}

.artwork-small p {
  font-size: 10px;
  color: #888;
  padding-bottom: 8px;
}

.artwork-wide {
  grid-column: span 2;
}

.artwork-wide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.artwide-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px;
}

.artwide-info h4 {
  font-size: 14px;
  margin: 0;
}

.artwide-info p {
  font-size: 11px;
  color: #777;
}

#loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #f8f9fb;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #ddd;
  border-top: 3px solid #111;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 700px;
  }

  .artwork-small img {
    height: 180px;
  }

  .artwork-wide img {
    height: 240px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .artwork-main:hover .art-overlay,
  .artwork-small:hover .art-overlay,
  .artwork-wide:hover .art-overlay,
  .artwork-half:hover .art-overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* DESKTOP FIX */

@media (min-width: 1024px) {
  /* CONTAINER WIDER */
  .container {
    max-width: 1200px;
    padding: 40px 20px;
  }

  .artist-hero {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .artist-image-wrapper {
    margin-bottom: 0;
  }

  .artist-image {
    height: 480px;
    object-fit: cover;
    border-radius: 20px;
  }

  .artist-content {
    max-width: 480px;
  }

  .artist-content h1 {
    font-size: 42px;
    margin-bottom: 12px;
  }

  .about-text {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
  }

  .artist-about {
    margin-top: 12px;
    padding-bottom: 10px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .artist-hero {
    display: flex;
    align-items: flex-start;
    gap: 30px;
  }

  .artist-image-wrapper {
    flex: 1.4;
    display: flex;
    min-height: 550px;
  }

  .artist-content {
    flex: 1.1;
    padding-top: 10px;
  }

  .artist-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
  }

  .about-text {
    line-height: 1.7;
  }
}

/* DYNAMIC ARTWORK GRID*/

.artwork-main,
.artwork-small,
.artwork-wide,
.artwork-half,
.artwork-single {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  cursor: pointer;
}

.artwork-bento {
  display: grid;
  gap: 20px;
}

.layout-1 {
  grid-template-columns: 1fr;
}

.artwork-single img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 18px;
}

.layout-2 {
  grid-template-columns: repeat(2, 1fr);
}

.artwork-half img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

@media (min-width: 1024px) {
  .layout-3,
  .layout-4,
  .layout-5 {
    grid-template-columns: repeat(4, 1fr);
  }

  .artwork-main {
    grid-column: span 2;
    grid-row: span 2;
  }

  .artwork-wide {
    grid-column: span 2;
  }

  .artwork-small img {
    height: 200px;
    object-fit: cover;
  }

  .artwork-wide img {
    height: 260px;
    object-fit: cover;
  }
}

@media (max-width: 767px) {
  .artwork-bento {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .artwork-main,
  .artwork-half,
  .artwork-single {
    grid-column: span 2;
  }

  .artwork-small img,
  .artwork-half img {
    height: 260px;
  }

  .layout-2 .artwork-half img {
    height: 320px;
  }

  .layout-5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .layout-5 a:nth-child(1),
  .layout-5 a:nth-child(2),
  .layout-5 a:nth-child(3) {
    grid-column: span 2;
  }

  .layout-5 a:nth-child(4),
  .layout-5 a:nth-child(5) {
    grid-column: span 1;
  }

  .artwork-main img,
  .artwork-single img {
    height: 240px;
  }
}

@media (min-width: 1024px) {
  .artwork-main,
  .artwork-small,
  .artwork-wide,
  .artwork-half {
    transition: all 0.35s ease;
  }

  .artwork-main:hover,
  .artwork-small:hover,
  .artwork-wide:hover,
  .artwork-half:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  }

  .artwork-main img,
  .artwork-small img,
  .artwork-wide img,
  .artwork-half img {
    transition: transform 0.6s ease;
  }

  .artwork-main:hover img,
  .artwork-small:hover img,
  .artwork-wide:hover img,
  .artwork-half:hover img {
    transform: scale(1.08);
  }
}

/* PREMIUM MODAL */

.art-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.art-modal-container {
  width: 88%;
  max-width: 1300px;
  height: 85vh;
  background: #f8f9fb;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.art-modal-left {
  flex: 1.5;
  background: #000;
}

.art-modal-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.art-modal-right {
  flex: 1;
  padding: 30px 50px;
  position: relative;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 26px;
  border: none;
  background: none;
  cursor: pointer;
  color: #333;
}

.art-label {
  font-size: 14px;
  letter-spacing: 2px;
  color: #999;
  margin-bottom: 12px;
}

.art-title-main {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.2;
}

.art-artist {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
}

.art-meta-block {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 30px;
  position: relative;
}

.art-meta-block div {
  position: relative;
  min-width: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.art-meta-block div:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -9px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50%;
  background: #ddd;
}

.art-meta-block span {
  font-size: 10px;
  color: #999;
  letter-spacing: 1px;
}

.art-meta-block p {
  font-size: 14px;
  margin-top: 4px;
  font-weight: 500;
}

.art-description {
  background: #eef1f4;
  padding: 25px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  max-height: 320px;
  overflow-y: auto;
  padding-right: 8px;
  position: relative;
  margin-bottom: -80px;
}

.art-description::-webkit-scrollbar {
  display: none;
}

.art-description {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

@media (max-width: 768px) {
  .art-modal-left {
    position: relative;
  }

  .art-modal-right .modal-actions {
    position: absolute;
    top: 10px;

    /* 🔥 KEY PART */
    left: 0;
    right: 0;

    display: flex;
    justify-content: flex-end; /* push to right */

    padding-right: 12px;
    z-index: 100;
  }
  .art-modal-container {
    flex-direction: column;
    width: 95%;
    height: 92vh;
  }

  .art-modal-left {
    height: 30%;
    min-height: 180px;
    position: relative;
    z-index: 1;
  }

  .art-modal-left img {
    height: 100%;
    object-fit: cover;
  }

  .art-modal-right {
    margin-top: -120px; /* 🔥 reduced from -200 */
    background: #f8f9fb;
    height: auto; /* 🔥 IMPORTANT FIX */
    max-height: 70%;
    padding: 20px;
    position: relative;
    z-index: 2;
    overflow-y: auto; /* 🔥 allows scroll instead of pushing down */
  }

  .art-title-main {
    font-size: 24px;
  }

  .art-meta-block {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 0 0 18px;
  }

  .art-description {
    width: 100%;
    padding: 15px;
    margin-top: -10px; /* 🔥 FIX spacing */
    font-size: 14px;
    line-height: 1.6;
  }
}

/* TABLET*/
@media (min-width: 769px) and (max-width: 1024px) {
  .art-modal-container {
    width: 95%;
    height: 85vh;
  }

  .art-modal-left .modal-actions {
    position: absolute;
    top: 60px;
    left: 0;
    right: 15px;
    display: flex;
    justify-content: flex-end;
    padding-right: 20px;
    z-index: 100;
  }

  .art-modal-left {
    flex: 1.7;
  }

  .art-modal {
    align-items: flex-start;
    padding-top: 40px;
  }

  .art-modal-right {
    flex: 1.2;
    padding: 20px 25px;
    /* bottom:100px */
  }

  .art-title-main {
    font-size: 30px;
  }

  .art-description {
    width: 100%;
    max-width: 100%;
    font-size: 15px;
    line-height: 1.8;
    padding: 22px;
  }
}

@media (min-width: 1280px) {
  .art-title-main {
    font-size: 48px;
  }

  .art-description {
    margin-bottom: 10px;
  }

  .art-modal-left .modal-actions {
    position: absolute;
    top: 70px;
    left: 0;
    right: 110px;
    display: flex;
    justify-content: flex-end;
    padding-right: 20px;
    z-index: 100;
  }
}

.art-fullview {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  cursor: zoom-out;
}

.art-fullview img {
  max-width: 95%;
  max-height: 95%;
  object-fit: contain;
}

.bg-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: #f8f9fb;
}

.bg-canvas::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);

  background-size: 60px 60px;
}

.bg-canvas::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  top: -100px;
  right: -100px;

  background: radial-gradient(circle, rgba(0, 0, 0, 0.04), transparent 10%);

  filter: blur(80px);
}

#bg-particles {
  position: fixed;
  inset: 0;
  z-index: 99;
  pointer-events: none;
}

.logo img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
}

.page_header .row {
  align-items: center;
}

.header-includ {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.header-includ a {
  font-size: 14px;
  color: #111;
  text-decoration: none;
}

.header-includ a:hover {
  opacity: 0.7;
}

.logo img {
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* FOOTER BASE */

.site-footer {
  background: linear-gradient(180deg, #0b0d0f 0%, #111315 100%);
  color: #d1d5db;
  padding: 80px 40px 40px;
}

/* CONTAINER */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.footer-logo {
  width: 170px;
  margin-bottom: 20px;
}

.footer-about p {
  font-size: 15px;
  line-height: 1.9;
  color: #9ca3af;
  max-width: 360px;
}

.footer-contact p {
  font-size: 15px;
  margin: 12px 0;
  color: #d1d5db;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact p i {
  color: #22c55e;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: #fff;
  position: relative;
}

.footer-col h4::after {
  content: "";
  width: 32px;
  height: 2px;
  background: #22c55e;
  position: absolute;
  left: 0;
  bottom: -10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 14px;
}

.footer-col ul li a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-col ul li a:hover {
  color: #22c55e;
  transform: translateX(6px);
}

.footer-social-text {
  font-size: 15px;
  color: #9ca3af;
  margin-bottom: 22px;
  line-height: 1.8;
  max-width: 260px;
}

.social-icons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.social-icons a {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;

  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: #22c55e;
  border-color: #22c55e;

  box-shadow:
    0 0 10px rgba(34, 197, 94, 0.5),
    inset 0 0 8px rgba(34, 197, 94, 0.2);

  transform: translateY(-3px);
}

/* FOOTER BOTTOM */

.footer-bottom {
  width: 100%;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 40px;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 3px;
  color: #8b949e;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 60px 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

.artwork-scroll::-webkit-scrollbar {
  display: none;
}

.artwork-scroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .artwork-scroll {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 0;
    padding: 0;
    width: 100%;
  }

  .artwork-scroll .artwork-bento {
    flex: 0 0 100%;
    max-width: 100%;
    scroll-snap-align: start;
    padding: 16px;
    box-sizing: border-box;
    display: grid;
  }

  .artwork-scroll .artwork-bento > * {
    min-width: 0;
    height: 100%;
  }

  .artwork-bento {
    grid-auto-rows: 0.8fr;
  }

  .artwork-bento img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}

/*  DESKTOP SCROLL PAGINATION (CLEAN FIX) */

@media (min-width: 1024px) {
  .artwork-scroll {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 0;
    padding: 0;
    width: 100%;
    height: 650px;
    margin: 0 auto;
  }

  .artwork-scroll .artwork-bento {
    flex: 0 0 100%;
    max-width: 100%;
    scroll-snap-align: start;
    padding: 20px;
    box-sizing: border-box;
    display: grid;
  }

  .artwork-scroll .artwork-bento > * {
    min-width: 0;
    height: 100%;
  }

  .artwork-bento {
    grid-auto-rows: 1fr;
  }

  .artwork-bento img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}
/* MOBILE BENTO */

@media (max-width: 767px) {
  .artwork-scroll {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;

    gap: 0;
    padding: 0;
    width: 100%;
  }

  .artwork-scroll .artwork-bento {
    flex: 0 0 100%;
    max-width: 100%;
    scroll-snap-align: start;

    padding: 12px;
    box-sizing: border-box;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
    gap: 12px;
  }

  .artwork-main {
    grid-column: span 2 !important;
    grid-row: span 2 !important;
  }

  .artwork-small {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }

  .artwork-wide,
  .artwork-half,
  .artwork-single {
    grid-column: span 2 !important;
    grid-row: auto !important;
  }

  .artwork-bento img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
  }
}

/* SCROLL INDICATOR FADE */
/* .artwork-scroll {
    position: relative;
}

.artwork-scroll::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
    pointer-events: none;

    background: linear-gradient(
        to left,
        #fff,
        rgba(255,255,255,0)
    );
} */

/* option 2 */
.artwork-scroll .artwork-bento {
  flex: 0 0 96%;
}

/* GLOBAL */

body {
  margin: 0;
  background: #0a0a0a;
}

/* FOOTER  */

.site-footer {
  margin-bottom: 0;
  padding-bottom: 0;
}

/*  COPYRIGHT BAR  */

.footer-bottom {
  width: 100%;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.08);

  margin: 0;
  padding: 16px 0;
}

.footer-bottom-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright-left {
  font-size: 11px;
  letter-spacing: 3px;
  color: #8b949e;
  text-transform: uppercase;
  margin: 0;
}

.copyright-right {
  font-size: 11px;
  letter-spacing: 3px;
  color: #8b949e;
  text-transform: uppercase;
  margin: 0;
}

.copyright-right span {
  color: #22c55e;
}

/* TABLET  */

@media (min-width: 768px) and (max-width: 1023px) {
  body {
    background: #0a0a0a;
  }

  .site-footer {
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .footer-bottom {
    width: 100%;
    margin: 0;
    padding: 16px 0;

    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-bottom-inner {
    max-width: 700px;
    margin: 0 auto;

    padding: 0 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-bottom p {
    font-size: 10px;
    letter-spacing: 2.5px;
  }
}

/* MOBILE */

@media (max-width: 600px) {
  .site-footer {
    padding-bottom: 30px;
  }

  .footer-bottom {
    width: 100%;
    margin: 0;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
  }

  .footer-bottom-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .footer-bottom p {
    font-size: 10px;
    letter-spacing: 2.5px;
    line-height: 1.6;
    white-space: normal;
    text-align: center;
  }

  .footer-credit span {
    display: inline-block;
    margin-top: 4px;
  }
}
@media (max-width: 767px) {
  .artwork-scroll {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;

    gap: 0;
    padding: 0;
    width: 100%;
  }

  .artwork-scroll .artwork-bento {
    flex: 0 0 100%;
    max-width: 100%;
    scroll-snap-align: start;

    padding: 12px;
    box-sizing: border-box;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
    gap: 12px;
  }

  .artwork-main {
    grid-column: span 2 !important;
    grid-row: span 2 !important;
  }

  .artwork-small {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }

  .artwork-wide,
  .artwork-half,
  .artwork-single {
    grid-column: span 2 !important;
    grid-row: auto !important;
  }

  .artwork-bento img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
  }
}

/* option 2 */
.artwork-scroll .artwork-bento {
  flex: 0 0 96%;
}

/* GLOBAL */

body {
  margin: 0;
  background: #0a0a0a;
}

/* FOOTER  */

.site-footer {
  margin-bottom: 0;
  padding-bottom: 0;
}

/*  COPYRIGHT BAR  */

.footer-bottom {
  width: 100%;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.08);

  margin: 0;
  padding: 16px 0;
}

.footer-bottom-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright-left {
  font-size: 11px;
  letter-spacing: 3px;
  color: #8b949e;
  text-transform: uppercase;
  margin: 0;
}

.copyright-right {
  font-size: 11px;
  letter-spacing: 3px;
  color: #8b949e;
  text-transform: uppercase;
  margin: 0;
}

.copyright-right span {
  color: #22c55e;
}

/* TABLET  */

@media (min-width: 768px) and (max-width: 1023px) {
  body {
    background: #0a0a0a;
  }

  .site-footer {
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .footer-bottom {
    width: 100%;
    margin: 0;
    padding: 16px 0;

    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-bottom-inner {
    max-width: 700px;
    margin: 0 auto;

    padding: 0 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-bottom p {
    font-size: 10px;
    letter-spacing: 2.5px;
  }
}

/* MOBILE */

@media (max-width: 600px) {
  .site-footer {
    padding-bottom: 30px;
  }

  .footer-bottom {
    width: 100%;
    margin: 0;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
  }

  .footer-bottom-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .footer-bottom p {
    font-size: 10px;
    letter-spacing: 2.5px;
    line-height: 1.6;
    white-space: normal;
    text-align: center;
  }

  .footer-credit span {
    display: inline-block;
    margin-top: 4px;
  }
}

/* ------------Share button--------- */

.modal-actions {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
}

/* SHARE */
.share-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.3s;
}

.share-btn:hover {
  background: #22c55e;
  color: #fff;
}

/* CLOSE */
.close-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: #eee;
  cursor: pointer;
}

#toast {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);

  background: #111;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  z-index: 9999;

  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

#toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ARTWORK SCROLL INDICATOR*/

.art-scroll-indicator {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 2px;
}

.art-scroll-bar {
  height: 100%;
  width: 0%;
  background: #22c55e;
  transition: width 0.1s ease;
}

@media (max-width: 768px) {
  .art-scroll-indicator {
    display: none;
  }
}

/* SCROLL HINT */

.scroll-hint {
  text-align: center;
  margin-top: 10px;
  font-size: 20px;
  color: #1a1818;
  letter-spacing: 1px;
  cursor: pointer;
}

/* Show ONLY on desktop */

@media (min-width: 1024px) {
  .scroll-hint span {
    display: inline-block;
    animation: scrollHintMove 1.5s infinite;
  }

  @keyframes scrollHintMove {
    0% {
      transform: translateX(0);
      opacity: 0.5;
    }
    50% {
      transform: translateX(6px);
      opacity: 1;
    }
    100% {
      transform: translateX(0);
      opacity: 0.5;
    }
  }
}




/*Fixes the header */

.page_header {
    height: 80px;
}

.page_header_wrapper {
    height: 80px !important;
}

.page_header {
    width: 100%;
    transition: all 0.3s ease;
}

.page_header_wrapper {
    transition: all 0.3s ease;
}

.page_header_wrapper.scrolled {
    width: 95%;
    margin: 0 auto;
}
.page_header_wrapper.scrolled .page_header {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-radius: 4px;
}