:root {
  --bg: #ffffff;
  --bg-soft: #f5f6f8;

  --text: #111111;
  --text-soft: rgba(0, 0, 0, 0.65);

  --primary: #ff2a3d;
  --primary-soft: rgba(255, 42, 61, 0.15);

  --border: rgba(0, 0, 0, 0.08);

  --glass: rgba(255, 255, 255, 0.8);

  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f7f7f9;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  color: #111;
}

/* NAVBAR */

.mainHeader {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  padding: 18px 35px;
  z-index: 999;

  display: flex;
  justify-content: space-between;
  align-items: center;

  border-radius: 20px;

  background: rgba(255, 255, 255, 0.7);

  backdrop-filter: blur(18px);

  border: 1px solid var(--border);
  box-shadow: var(--shadow);

  transition: 0.4s ease;
}

/* LOGO */

.logo {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
}

.logo img {
  height: 55px;
  /* desktop size */
  width: auto;
  object-fit: contain;
  display: block;
}

/* MOBILE */
@media (max-width: 768px) {
  .logo img {
    height: 40px;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 32px;
  }
}

/* NAV */

.navList {
  display: flex;
  align-items: center;
  gap: 45px;
  list-style: none;
}

.navList a {
  color: black;
  text-decoration: none;
  font-size: 15px;
  position: relative;
  transition: 0.3s ease;
}

/* HOVER LINE */

.navList a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0%;
  height: 2px;
  background: var(--primary);
  transition: 0.3s ease;
}

.navList a:hover::after {
  width: 100%;
}

.navList a:hover {
  color: #C1121F;
}

/* BUTTON */

.navBtn {
  padding: 14px 28px;
  border-radius: 60px;
  text-decoration: none;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 25px rgba(255, 42, 61, 0.25);
  font-size: 14px;
  font-weight: 500;
  transition: 0.4s ease;
}

.navBtn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(255, 42, 61, 0.35);
}

/* HERO */

.heroSection {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* VIDEO */
.heroImage {
  width: 100%;
  height: 100%;
  background: url('../assets/images/home-page.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}

/* OVERLAY */

.heroOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0.85),
      rgba(255, 255, 255, 0.6),
      rgba(255, 255, 255, 0.2));
}

/* CONTENT */

.heroContent {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 700px;
}

.heroTitle {
  font-size: clamp(42px, 6vw, 90px);
  line-height: 1;
  color: #111;
  font-weight: 700;
  margin-bottom: 25px;
  opacity: 0;
}

.heroTitle span {
  color: #C1121F;
}

.heroSubtitle {
  font-size: 20px;
  line-height: 1.7;
  color: #111;
  margin-bottom: 40px;
  opacity: 0;
}

/* BUTTONS */

.heroButtons {
  display: flex;
  gap: 20px;
}

.heroBtn {
  padding: 16px 35px;
  border-radius: 60px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: 0.4s ease;
  backdrop-filter: blur(10px);
  opacity: 0;
}

/* PRIMARY */

.primaryBtn {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 25px rgba(255, 42, 61, 0.25);
  color: #fff;
}

.primaryBtn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(255, 42, 61, 0.35);
}

/* SECONDARY */

.secondaryBtn {
  border: 1px solid rgba(0, 0, 0, 0.582);
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.secondaryBtn:hover {
  background: var(--primary);
  color: var(--bg);
  transform: translateY(-5px);
}

/* ABOUT SECTION */

.aboutSection {
  padding: 140px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  background: #ffffff;
  color: black;
}

/* LEFT */

.aboutLeft {
  flex: 1;
}

.sectionTag {
  color: #C1121F;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 25px;
}

.aboutTitle {
  font-size: 58px;
  line-height: 1.2;
  color: black;
  margin-bottom: 30px;
  max-width: 650px;
}

.aboutText {
  color: black;
  font-size: 17px;
  line-height: 1.9;
  max-width: 620px;
  margin-bottom: 50px;
}

/* STATS */

.aboutStats {
  display: flex;
  gap: 20px;
}

.statCard {
  padding: 30px;
  min-width: 160px;

  border-radius: 20px;

  background: rgba(255, 255, 255, 0.9);
  color: black;

  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
  transition: 0.4s ease;
}

.statCard:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 58, 58, 0.5);
}

.statCard h3 {
  font-size: 38px;
  color: #C1121F;
  margin-bottom: 10px;
}

.statCard p {
  color: black;
}

/* RIGHT */

.aboutRight {
  flex: 1;
  display: flex;
  justify-content: center;
}

.aboutImageWrapper {
  width: 100%;
  max-width: 550px;
  height: 700px;
  overflow: hidden;

  border-radius: 30px;

  position: relative;
}

.aboutImageWrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: 0.6s ease;
}

.aboutImageWrapper:hover img {
  transform: scale(1.08);
}

/* ARTISTS SECTION */

.artistsSection {
  padding: 140px 8%;
  background: #f5f6f8;
}

/* TOP */

.artistsTop {
  margin-bottom: 70px;
}

.artistsTitle {
  font-size: clamp(42px, 6vw, 90px);
  line-height: 1.2;
  color: black;
  max-width: 800px;
}

/* GRID */

/* =========================
ARTIST SLIDER
========================= */
.artistsSlider {
  position: relative;
  overflow: hidden;
}

.artistsTrack {
  display: flex;
  gap: 25px;
  transition: transform 0.6s ease;
}

/* BUTTONS */

.sliderBtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 50px;
  height: 50px;

  border-radius: 50%;
  border: none;

  background: rgba(255, 255, 255, 0.08);
  color: #fff;

  font-size: 28px;
  cursor: pointer;

  z-index: 10;

  backdrop-filter: blur(10px);
}

.prevBtn {
  left: 10px;
}

.nextBtn {
  right: 10px;
}

.sliderBtn:hover {
  background: #C1121F;
}

.artistsTrack .artistCard {
  min-width: 320px;
  height: 600px;
}

/* CARD */

.artistCard {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
  border-radius: 28px;

  cursor: pointer;
}

/* IMAGE */

.artistCard img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: 0.7s ease;
}

/* OVERLAY */

.artistOverlay {
  position: absolute;
  inset: 0;

  padding: 35px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.9),
      rgba(0, 0, 0, 0.1));

  transition: 0.5s ease;
}

/* HOVER */

.artistCard:hover img {
  transform: scale(1.08);
}

.artistCard:hover .artistOverlay {
  transform: translateY(5px);
  box-shadow: 0 15px 40px rgba(255, 42, 61, 0.12);
  border-color: var(--primary-soft);
}

/* TEXT */

.artistOverlay h3 {
  font-size: 34px;
  color: #fff;
  margin-bottom: 10px;
}

.artistOverlay p {
  color: var(--primary);
  margin-bottom: 25px;
}

/* BUTTON */

.artistOverlay a {
  width: fit-content;

  padding: 14px 28px;

  border-radius: 50px;

  background: rgba(255, 255, 255, 0.08);

  border: 1px solid rgba(255, 255, 255, 0.12);

  color: #fff;

  text-decoration: none;

  backdrop-filter: blur(10px);

  transition: 0.4s ease;
}

.artistOverlay a:hover {
  background: #C1121F;
  transform: translateY(-4px);
}

/* EVENTS SECTION */

.eventsSection {
  padding: 140px 8%;
  background: #ffffff;
}

/* TOP */

.eventsTop {
  margin-bottom: 70px;
}

.eventsTitle {
  font-size: clamp(42px, 6vw, 90px);
  line-height: 1.2;
  color: black;
  max-width: 700px;
}

/* GRID */

.eventsGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */

.eventCard {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);

  border-radius: 28px;

  overflow: hidden;

  transition: 0.5s ease;
}

/* HOVER */

.eventCard:hover {
  /* transform: translateY(-12px); */
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 36, 36, 0.12);
  border-color: var(--primary-soft);
}

/* IMAGE */

.eventImage {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.eventImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: 0.7s ease;
}

.eventCard:hover img {
  transform: scale(1.08);
}

/* DATE */

.eventDate {
  position: absolute;
  top: 20px;
  left: 20px;

  width: 75px;
  height: 75px;

  border-radius: 18px;

  background: rgba(0, 0, 0, 0.5);

  backdrop-filter: blur(12px);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  color: var(--primary);

  font-size: 13px;

  border: 1px solid rgba(255, 255, 255, 0.08);
}

.eventDate span {
  font-size: 28px;
  font-weight: 700;
  color: #C1121F;
}

/* CONTENT */
.eventContent a {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  width: fit-content;

  padding: 12px 24px;

  border-radius: 50px;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.1);

  color: black;

  text-decoration: none;

  transition: 0.4s ease;

  margin-top: 8px;
}

.eventContent a:hover {
  background: #C1121F;
  transform: translateY(-3px);
}

.eventContent h3 {
  font-size: 32px;
  color: black;
  margin-bottom: 18px;
}

.eventContent p {
  color: black;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* BUTTON */

.eventContent a {
  display: inline-block;

  padding: 14px 26px;

  border-radius: 50px;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.08);

  color: black;

  text-decoration: none;

  transition: 0.4s ease;
}

.eventContent a:hover {
  background: #C1121F;
  transform: translateY(-4px);
}

/* SHOWCASE SECTION */

.showcaseSection {
  padding: 140px 8%;
  background: #f5f6f8;
}

/* TOP */

.showcaseTop {
  margin-bottom: 70px;
}

.showcaseTitle {
  font-size: 60px;
  line-height: 1.2;
  color: var(--text);
  max-width: 750px;
}

/* GRID */

.showcaseGrid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  grid-auto-rows: 280px;

  gap: 25px;
}

/* ITEMS */

.showcaseItem {
  position: relative;

  overflow: hidden;

  border-radius: 30px;

  cursor: pointer;
}

/* LARGE ITEMS */

.largeItem {
  grid-column: span 2;
  grid-row: span 2;
}

.wideItem {
  grid-column: span 2;
}

/* IMAGE */

.showcaseItem img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: 0.8s ease;
}

/* OVERLAY */

.showcaseOverlay {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: flex-end;

  padding: 35px;

  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.9),
      rgba(0, 0, 0, 0.05));

  transition: 0.5s ease;
}

/* TEXT */

.showcaseOverlay h3 {
  font-size: 30px;
  color: #fff;
}

/* HOVER */

.showcaseItem:hover img {
  transform: scale(1.08);
}

.showcaseItem:hover .showcaseOverlay {
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.95),
      rgba(0, 0, 0, 0.2));
}

/* TESTIMONIALS SECTION */

.testimonialsSection {
  padding: 140px 8%;
  background: #ffffff;
}

/* TOP */

.testimonialsTop {
  margin-bottom: 70px;
}

.testimonialsTitle {
  font-size: 60px;
  line-height: 1.2;
  color: var(--text);
  max-width: 700px;
}

/* GRID */

.testimonialsGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */

.testimonialCard {
  padding: 40px;

  border-radius: 30px;

  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);

  transition: 0.5s ease;
}

/* HOVER */

.testimonialCard:hover {
  /* transform: translateY(-12px); */

  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 42, 61, 0.12);
  border-color: var(--primary-soft);
}

/* TEXT */

.testimonialText {
  color: var(--text);

  line-height: 2;

  font-size: 17px;

  margin-bottom: 40px;
}

/* BOTTOM */

.testimonialBottom {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* IMAGE */

.testimonialBottom img {
  width: 65px;
  height: 65px;

  border-radius: 50%;

  object-fit: cover;
}

/* INFO */

.testimonialBottom h4 {
  color: var(--text);
  font-size: 18px;
  margin-bottom: 6px;
}

.testimonialBottom span {
  color: var(--text);
  font-size: 14px;
}

/* CTA SECTION */

.ctaSection {
  padding: 180px 8%;
  background: var(--bg-soft);

  text-align: center;
}

/* CONTENT */

.ctaContent {
  max-width: 950px;
  margin: auto;
}

/* TITLE */

.ctaTitle {
  font-size: clamp(42px, 6vw, 90px);
  line-height: 1.1;
  color: var(--text);

  margin: 35px 0 50px;
}

/* BUTTON */

.ctaBtn {
  display: inline-block;

  padding: 18px 40px;

  border-radius: 60px;

  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 25px rgba(255, 42, 61, 0.25);
  text-decoration: none;

  font-size: 16px;
  font-weight: 500;

  transition: 0.4s ease;
}

.ctaBtn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(255, 42, 61, 0.35);
}

/* FOOTER */

.mainFooter {
  padding: 90px 8% 40px;
  background: #120707;
}

/* TOP */

.footerTop {
  display: flex;
  justify-content: space-between;
  gap: 80px;

  padding-bottom: 60px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* LOGO */

.footerLogo {
  max-width: 400px;
}

.footerLogo img {
  height: 70px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
}

.footerLogo h2 {
  color: #fff;
  font-size: 38px;
  margin-bottom: 20px;
}

.footerLogo p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.9;
}

/* LINKS */

.footerLinks h3,
.footerSocials h3 {
  color: #fff;
  margin-bottom: 25px;
}

.footerLinks ul,
.footerSocials ul {
  list-style: none;
}

.footerLinks li,
.footerSocials li {
  margin-bottom: 15px;
}

.footerLinks a,
.footerSocials a {
  color: rgba(255, 255, 255, 0.7);

  text-decoration: none;

  transition: 0.3s ease;
}

.footerLinks a:hover,
.footerSocials a:hover {
  color: #C1121F;
}

/* BOTTOM */

.footerBottom {
  padding-top: 35px;
  text-align: center;
}

.footerBottom p {
  color: rgba(255, 255, 255, 0.5);
}

.testimonialCard,
.eventCard,
.artistCard,
.showcaseItem {
  opacity: 1 !important;
}

/* CUSTOM CURSOR */

.customCursor {
  width: 22px;
  height: 22px;

  border-radius: 50%;

  position: fixed;
  top: 0;
  left: 0;

  background: #C1121F;

  pointer-events: none;

  transform: translate(-50%, -50%);

  z-index: 99999;

  mix-blend-mode: difference;

  transition:
    transform 0.15s ease,
    width 0.3s ease,
    height 0.3s ease,
    background 0.3s ease;
}

/* HOVER STATE */

/* HAMBURGER ICON */

.menuToggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menuToggle span {
  width: 25px;
  height: 2px;
  background: var(--text);
  transition: 0.3s;
}

/* MOBILE */

.customCursor.active {
  width: 70px;
  height: 70px;

  background: rgba(237, 152, 3, 0.2);

  border: 1px solid rgba(237, 152, 3, 0.6);

  backdrop-filter: blur(5px);
}

@media(max-width: 768px) {
  .customCursor {
    display: none;
  }

  .menuToggle {
    display: flex;
  }

  .navList {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);

    width: 90%;
    flex-direction: column;
    gap: 20px;

    background: var(--primary);
    padding: 20px;
    border-radius: 15px;

    display: none;
  }

  .navList a {
    color: var(--bg);
  }

  .navList.active {
    display: flex;
    color: var(--text);
  }

  .artistsTrack .artistCard {
    min-width: 260px;
    height: 480px;
  }

  .sliderBtn {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }

  body {
    cursor: auto;
  }
}

/* =========================================================
TABLET RESPONSIVE
========================================================= */

@media(max-width: 1200px) {

  /* HERO */

  .heroTitle {
    font-size: 70px;
  }

  /* ABOUT */

  .aboutSection {
    flex-direction: column;
  }

  .aboutImageWrapper {
    max-width: 100%;
    height: 600px;
  }

  /* ARTISTS */

  .artistsGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* EVENTS */

  .eventsGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* TESTIMONIALS */

  .testimonialsGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* FOOTER */

  .footerTop {
    flex-wrap: wrap;
  }

  /* TITLES */

  .artistsTitle,
  .eventsTitle,
  .showcaseTitle,
  .testimonialsTitle,
  .ctaTitle,
  .aboutTitle {
    font-size: 50px;
  }
}

/* =========================================================
ARTISTS PAGE HERO
========================================================= */

.artistsHero {
  position: relative;

  width: 100%;
  height: 80vh;

  background:
    url('../assets/images/background.png');

  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;

  padding: 0 8%;

  overflow: hidden;
}

/* OVERLAY */

.artistsHeroOverlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(to right, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.2));
}

/* CONTENT */

.artistsHeroContent {
  position: relative;
  z-index: 2;
  margin-top: 50px;
  max-width: 700px;
}

.artistsHeroTitle {
  font-size: 90px;
  line-height: 1;

  color: var(--text);

  margin-bottom: 25px;

  opacity: 0;
}

.artistsHeroText {
  color: rgba(255, 255, 255, 0.75);

  font-size: 18px;
  line-height: 1.9;

  max-width: 650px;

  opacity: 0;
}

/* =========================================================
FILTER SECTION
========================================================= */

.artistsFilterSection {
  padding: 60px 8%;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;

  background: var(--bg-soft);

  flex-wrap: wrap;
}

/* SEARCH */

.artistSearch {
  flex: 1;
}

.artistSearch input {
  width: 100%;

  height: 65px;

  padding: 0 25px;

  border-radius: 20px;

  border: 1px solid rgb(0 0 0 / 8%);
  background: rgb(30 30 30 / 4%);
  backdrop-filter: blur(10px);

  color: var(--text);

  font-size: 15px;

  outline: none;
}

.artistSearch input::placeholder {
  color: var(--text);
}

/* FILTERS */

.artistFilters {
  display: flex;
  align-items: center;
  gap: 15px;

  flex-wrap: wrap;
}

.artistFilters button {
  height: 55px;

  padding: 0 28px;

  border-radius: 50px;

  border: 1px solid rgb(14 14 14 / 26%);
  background: rgba(255, 255, 255, 0.04);

  color: black;

  cursor: pointer;

  transition: 0.4s ease;
}

.artistFilters button:hover,
.artistFilters button.active {
  background: #C1121F;
  transform: translateY(-3px);
  color: #fff;
}

/* =========================================================
ARTISTS PAGE GRID
========================================================= */

.artistsPageSection {
  padding: 40px 8% 140px;
  background: var(--bg-soft);
}

/* GRID */

.artistsPageGrid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 30px;
}

/* CARD */

.artistPageCard {
  position: relative;

  height: 580px;

  overflow: hidden;

  border-radius: 30px;

  cursor: pointer;
}

/* IMAGE */

.artistPageCard img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: 0.8s ease;
}

/* OVERLAY */

.artistPageOverlay {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding: 35px;

  background:
    linear-gradient(to top,
      rgba(0, 0, 0, 0.95),
      rgba(0, 0, 0, 0.1));

  transition: 0.5s ease;
}

/* CATEGORY */

.artistPageOverlay span {
  width: fit-content;

  padding: 10px 18px;

  border-radius: 50px;

  background: rgba(255, 255, 255, 0.08);

  border: 1px solid rgba(255, 255, 255, 0.08);

  color: #C1121F;
  font-weight: 600;
  font-size: 13px;

  margin-bottom: 20px;
}

/* TITLE */

.artistPageOverlay h3 {
  font-size: 38px;

  color: #fff;

  margin-bottom: 25px;
}

/* BUTTON */

.artistPageOverlay a {
  width: fit-content;

  padding: 14px 28px;

  border-radius: 50px;

  background: rgba(255, 255, 255, 0.08);

  border: 1px solid rgba(255, 255, 255, 0.08);

  color: #fff;

  text-decoration: none;

  transition: 0.4s ease;
}

.artistPageOverlay a:hover {
  background: #C1121F;
  transform: translateY(-4px);
}

/* HOVER */

.artistPageCard:hover img {
  transform: scale(1.08);
}

.artistPageCard:hover .artistPageOverlay {
  background:
    linear-gradient(to top,
      rgba(0, 0, 0, 0.98),
      rgba(0, 0, 0, 0.2));
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width: 1200px) {

  .artistsPageGrid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media(max-width: 768px) {

  .artistsHero {
    height: 70vh;
    padding: 0 6%;
  }

  .artistsHeroTitle {
    font-size: 52px;
  }

  .artistsHeroText {
    font-size: 16px;
  }

  .artistsFilterSection {
    padding: 40px 6%;
  }

  .artistsPageSection {
    padding: 40px 6% 100px;
  }

  .artistsPageGrid {
    grid-template-columns: 1fr;
  }

  .artistPageCard {
    height: 500px;
  }

}

/* =========================================================
ARTIST DETAIL HERO
========================================================= */

.artistDetailHero {
  position: relative;

  min-height: 100vh;

  padding: 180px 8% 120px;

  background: #140909;

  overflow: hidden;
}

/* OVERLAY */

.artistDetailOverlay {
  position: absolute;
  inset: 0;

  background: var(--bg-soft);
}

/* CONTENT */

.artistDetailContent {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  gap: 80px;
}

/* IMAGE */

.artistDetailImage {
  flex: 1;
}

.artistDetailImage img {
  width: 100%;
  height: 750px;

  object-fit: cover;

  border-radius: 35px;
}

/* INFO */

.artistDetailInfo {
  flex: 1;
}

/* TITLE */

.artistDetailTitle {
  font-size: 90px;
  line-height: 1;

  color: var(--text);

  margin-bottom: 30px;
}

/* TEXT */

.artistDetailText {
  color: var(--text);

  font-size: 18px;
  line-height: 1.9;

  max-width: 650px;

  margin-bottom: 50px;
}

/* STATS */

.artistStats {
  display: flex;
  gap: 20px;

  margin-bottom: 50px;

  flex-wrap: wrap;
}

.artistStatCard {
  min-width: 160px;

  padding: 30px;

  border-radius: 25px;

  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);

  backdrop-filter: blur(12px);

  transition: 0.4s ease;
}

.artistStatCard:hover {
  transform: translateY(-8px);

  border-color: 1px solid --primary;
}

.artistStatCard h3 {
  font-size: 40px;
  color: #C1121F;

  margin-bottom: 10px;
}

.artistStatCard p {
  color: var(--text);
}

/* BUTTONS */

.artistDetailButtons {
  display: flex;
  gap: 20px;

  flex-wrap: wrap;
}

/* =========================================================
GALLERY SECTION
========================================================= */

.artistGallerySection {
  padding: 140px 8%;

  background: #1A0B0B;
}

/* TOP */

.galleryTop {
  margin-bottom: 70px;
}

.galleryTitle {
  font-size: 60px;
  line-height: 1.2;

  color: #fff;

  max-width: 700px;
}

/* GRID */

.artistGalleryGrid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  grid-auto-rows: 280px;

  gap: 25px;
}

/* ITEM */

.galleryItem {
  overflow: hidden;

  border-radius: 30px;

  cursor: pointer;
}

.largeGallery {
  grid-column: span 2;
  grid-row: span 2;
}

.wideGallery {
  grid-column: span 2;
}

/* IMAGE */

.galleryItem img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: 0.8s ease;
}

.galleryItem:hover img {
  transform: scale(1.08);
}

/* =========================================================
UPCOMING EVENTS
========================================================= */

.artistUpcomingSection {
  padding: 140px 8%;

  background: #140909;
}

/* TOP */

.upcomingTop {
  margin-bottom: 70px;
}

.upcomingTitle {
  font-size: 60px;
  line-height: 1.2;

  color: #fff;

  max-width: 700px;
}

/* GRID */

.upcomingGrid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 30px;
}

/* CARD */

.upcomingCard {
  padding: 45px;

  border-radius: 30px;

  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(255, 255, 255, 0.08);

  transition: 0.5s ease;
  opacity: 1;
  transform: translateY(0);
}

.upcomingCard:hover {
  transform: translateY(-10px);

  border-color: rgba(237, 152, 3, 0.35);
}

/* DATE */

.upcomingCard span {
  color: #C1121F;

  font-size: 14px;
  letter-spacing: 2px;

  display: block;

  margin-bottom: 20px;
}

/* TITLE */

.upcomingCard h3 {
  font-size: 38px;

  color: #fff;

  margin-bottom: 20px;
}

/* TEXT */

.upcomingCard p {
  color: rgba(255, 255, 255, 0.7);

  line-height: 1.9;
}

/* =========================
MODAL BACKDROP
========================= */

.modalOverlay {
  position: fixed;
  inset: 0;

  background: rgba(0, 0, 0, 0.7);

  backdrop-filter: blur(10px);

  opacity: 0;
  visibility: hidden;

  transition: 0.3s ease;

  z-index: 9998;
}

/* =========================
MODAL BOX
========================= */

.bookingModal {
  position: fixed;
  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%) scale(0.8);

  width: 90%;
  max-width: 500px;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.1);

  backdrop-filter: blur(20px);

  border-radius: 25px;

  padding: 30px;

  opacity: 0;
  visibility: hidden;

  transition: 0.3s ease;

  z-index: 9999;
}

/* HEADER */

.modalHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-bottom: 25px;
}

.modalHeader h2 {
  color: #fff;
  font-size: 28px;
}

.closeModal {
  background: transparent;
  border: none;

  color: #fff;

  font-size: 28px;

  cursor: pointer;
}

/* FORM */

.bookingForm {
  display: flex;
  flex-direction: column;

  gap: 15px;
}

.bookingForm input,
.bookingForm textarea {
  padding: 14px;

  border-radius: 12px;

  border: 1px solid rgba(255, 255, 255, 0.1);

  background: rgba(255, 255, 255, 0.05);

  color: #fff;

  outline: none;
}

.bookingForm textarea {
  min-height: 100px;
  resize: none;
}

.bookingForm button {
  padding: 14px;

  border: none;

  border-radius: 50px;

  background: #C1121F;

  color: #fff;

  cursor: pointer;

  transition: 0.3s ease;
}

.bookingForm button:hover {
  transform: translateY(-3px);
}

/* ACTIVE STATE */

.modalActive .modalOverlay {
  opacity: 1;
  visibility: visible;
}

.modalActive .bookingModal {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

/* =========================
SUCCESS TOAST (PREMIUM)
========================= */
.successBox {
  position: fixed;
  bottom: 40px;
  left: 50%;

  transform: translateX(-50%);

  background: linear-gradient(135deg, #C1121F, #ffb347);

  padding: 14px 22px;

  border-radius: 60px;

  display: flex;
  align-items: center;
  gap: 10px;

  font-weight: 600;

  box-shadow: 0 10px 30px rgba(237, 152, 3, 0.35);

  opacity: 0;

  z-index: 99999;
}

/* ICON */
.successIcon {
  width: 28px;
  height: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, 0.15);

  border-radius: 50%;

  font-size: 14px;

  line-height: 1;
}

/* TEXT */
.successText {
  font-size: 15px;
  color: #111;

  line-height: 1;
}

/* ACTIVE STATE */
.successBox.show {
  opacity: 1;
  visibility: visible;

  transform: translateX(-50%) translateY(0) scale(1);

  animation: popGlow 0.6s ease;
}

/* ENTRY ANIMATION */
@keyframes popGlow {
  0% {
    transform: translateX(-50%) translateY(40px) scale(0.8);
    filter: blur(2px);
  }

  60% {
    transform: translateX(-50%) translateY(-10px) scale(1.05);
  }

  100% {
    transform: translateX(-50%) translateY(0) scale(1);
    filter: blur(0);
  }
}


/* =========================================================
EVENTS HERO
========================================================= */

.eventsHero {
  position: relative;

  width: 100%;
  height: 70vh;

  display: flex;
  align-items: center;

  padding: 0 8%;

  background: url('../assets/images/background.png');
  background-size: cover;
  background-position: center;

  overflow: hidden;
}

.eventsHeroOverlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(to right, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.2));
}

.eventsHeroContent {
  position: relative;
  z-index: 2;

  max-width: 800px;
}

.eventsHeroTitle {
  font-size: 80px;
  line-height: 1;

  color: var(--text);

  margin-bottom: 20px;
}

.eventsHeroText {
  font-size: 18px;
  color: var(--text);
  line-height: 1.8;
}

/* =========================================================
FILTER BAR
========================================================= */

.eventsFilter {
  display: flex;
  justify-content: center;
  gap: 15px;

  padding: 60px 8%;

  background: var(--bg-soft);
}

.eventsFilter button {
  padding: 14px 28px;

  border-radius: 50px;

  border: 1px solid rgb(14 14 14 / 26%);
  background: rgba(255, 255, 255, 0.04);

  color: black;

  cursor: pointer;

  transition: 0.4s ease;
}

.eventsFilter button:hover,
.eventsFilter button.active {
  background: #C1121F;
  transform: translateY(-3px);
}

/* =========================================================
EVENTS GRID
========================================================= */

.eventsGridSection {
  padding: 40px 8% 140px;

  background: var(--bg-soft);
}

.eventsGrid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;
}

/* =========================================================
EVENT CARD
========================================================= */

.eventCard {
  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(255, 255, 255, 0.06);

  border-radius: 28px;

  overflow: hidden;

  transition: 0.5s ease;

  backdrop-filter: blur(10px);
}

.eventCard:hover {
  transform: translateY(-12px);

  border-color: rgba(255, 37, 37, 0.4);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* IMAGE */

.eventImage {
  height: 280px;

  overflow: hidden;
}

.eventImage img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: 0.7s ease;
}

.eventCard:hover img {
  transform: scale(1.08);
}

/* CONTENT */

.eventContent {
  padding: 30px;
}

.eventContent h3 {
  font-size: 28px;

  color: var(--text);

  margin-bottom: 12px;
}

.eventContent p {
  color: var(--text);

  line-height: 1.7;

  margin-bottom: 20px;
}

/* BUTTON */

.eventContent a {
  display: inline-block;

  padding: 12px 24px;

  border-radius: 50px;

  background: var(--primary);

  border: var(--border);

  color: #fff;

  text-decoration: none;

  transition: 0.4s ease;
}

.eventContent a:hover {
  background: #C1121F;

  transform: translateY(-3px);
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width: 1200px) {

  .eventsGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .eventsHeroTitle {
    font-size: 60px;
  }

}

@media(max-width: 768px) {

  .eventsGrid {
    grid-template-columns: 1fr;
  }

  .eventsHero {
    height: 60vh;
    padding: 0 6%;
  }

  .eventsHeroTitle {
    font-size: 40px;
  }

}

/* =========================
CONTACT PAGE LAYOUT
========================= */

.contactHero {
  height: 60vh;
  display: flex;
  align-items: center;
  padding: 0 8%;
  position: relative;
  background: url('../assets/images/background.png');
  background-size: cover;
  background-position: center;
}

.contactOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.2));
}

.contactContent {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.contactTitle {
  font-size: clamp(42px, 6vw, 90px);
  color: var(--text);
  line-height: 1.1;
}

.contactText {
  color: var(--text);
  margin-top: 10px;
}

/* =========================
CONTACT SECTION CENTER CARD
========================= */

.contactSection {
  padding: 120px 8%;

  display: flex;
  justify-content: center;

  background: var(--bg-soft);
}

/* MAIN CARD */
.contactCard {

  width: 100%;
  max-width: 850px;

  padding: 50px;

  border-radius: 30px;

  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(255, 255, 255, 0.12);

  backdrop-filter: blur(1px);

  -webkit-backdrop-filter: blur(1px);

  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);

  text-align: center;

  position: relative;
}

.contactCard::before {
  content: "";

  position: absolute;
  inset: -2px;

  border-radius: 30px;

  background: linear-gradient(135deg,
      rgba(237, 152, 3, 0.08),
      transparent 60%);

  pointer-events: none;

  z-index: 0;
}

/* TITLE */

.contactTitle {
  font-size: 48px;
  color: var(--text);
  margin: 20px 0;
}

.contactText {
  color: var(--text);
  margin-bottom: 40px;
}

/* FORM */

.contactForm {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* ROW INPUTS */

.contactForm .row {
  display: flex;
  gap: 15px;
}

.contactForm .row input {
  flex: 1;
}

/* INPUTS */

.contactForm input,
.contactForm textarea {
  padding: 14px;

  border-radius: 12px;

  border: 1px solid rgba(255, 255, 255, 0.08);

  background: rgba(156, 156, 156, 0.25);

  color: var(--text);

  outline: none;
}

/* TEXTAREA */

.contactForm textarea {
  min-height: 140px;
  resize: none;
}

/* BUTTON */

.contactForm button {
  padding: 14px;

  border: none;

  border-radius: 50px;

  background: #C1121F;

  color: #fff;

  cursor: pointer;

  transition: 0.3s ease;
}

.contactForm button:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(237, 152, 3, 0.3);
}

/* META */

.contactMeta {
  margin-top: 30px;

  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;

  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.metaItem {
  display: flex;
  align-items: center;
  gap: 8px;

  padding: 8px 14px;

  background: rgba(255, 255, 255, 0.03);

  border: 1px solid var(--primary);

  border-radius: 50px;
  color: var(--text);

  backdrop-filter: blur(10px);

  transition: 0.3s ease;
}

.metaItem:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}

.metaItem i {
  width: 16px;
  height: 16px;
  color: #C1121F;
}

/* RESPONSIVE */

@media(max-width: 768px) {
  .contactForm .row {
    flex-direction: column;
  }

  .contactCard {
    padding: 30px;
  }

  .contactTitle {
    font-size: 32px;
  }
}

/* =========================
COUNTDOWN PREMIUM STYLE
========================= */

.countdown {
  margin-top: 10px;
  margin-bottom: 5px;
  display: flex;
  gap: 12px;
}

.timeBox {
  flex: 1;

  padding: 12px 10px;

  border-radius: 14px;

  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(10px);

  text-align: center;

  transition: 0.3s ease;
}

.timeBox:hover {
  transform: translateY(-4px);
  border-color: rgba(237, 152, 3, 0.4);
}

.num {
  display: block;

  font-size: 22px;
  font-weight: 700;

  color: #C1121F;
}

.label {
  font-size: 11px;
  color: var(--text);

  letter-spacing: 1px;
  text-transform: uppercase;
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width: 1200px) {

  .artistDetailContent {
    flex-direction: column;
  }

  .artistGalleryGrid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

}

@media(max-width: 768px) {

  .artistDetailHero {
    padding: 140px 6% 100px;
  }

  .artistDetailTitle {
    font-size: 54px;
  }

  .artistDetailText {
    font-size: 16px;
  }

  .artistDetailImage img {
    height: 500px;
  }

  .artistGallerySection,
  .artistUpcomingSection {
    padding: 100px 6%;
  }

  .galleryTitle,
  .upcomingTitle {
    font-size: 42px;
  }

  .artistGalleryGrid {
    grid-template-columns: 1fr;

    grid-auto-rows: 240px;
  }

  .largeGallery,
  .wideGallery {
    grid-column: span 1;
    grid-row: span 1;
  }

  .upcomingGrid {
    grid-template-columns: 1fr;
  }

}

@media(max-width: 480px) {

  .artistDetailTitle {
    font-size: 42px;
  }

  .galleryTitle,
  .upcomingTitle {
    font-size: 34px;
  }

  .upcomingCard h3 {
    font-size: 30px;
  }

}


/* =========================================================
MOBILE RESPONSIVE
========================================================= */

@media(max-width: 768px) {

  /* HEADER */

  .mainHeader {
    width: 95%;
    padding: 16px 20px;
  }

  .navList {
    display: none;
  }

  .navBtn {
    padding: 12px 20px;
    font-size: 13px;
  }

  /* HERO */

  .heroSection {
    height: auto;
    min-height: 100vh;
  }

  .heroContent {
    left: 6%;
    right: 6%;
    max-width: 100%;
  }

  .heroTitle {
    font-size: 52px;
    line-height: 1.1;
  }

  .heroSubtitle {
    font-size: 17px;
  }

  .heroButtons {
    flex-direction: column;
    align-items: flex-start;
  }

  /* ABOUT */

  .aboutSection {
    padding: 50px 6%;
    gap: 60px;
  }

  .aboutTitle {
    font-size: 42px;
  }

  .aboutText {
    font-size: 16px;
  }

  .aboutStats {
    flex-direction: column;
  }

  .aboutImageWrapper {
    height: 500px;
  }

  /* COMMON TITLES */

  .artistsTitle,
  .eventsTitle,
  .showcaseTitle,
  .testimonialsTitle,
  .ctaTitle {
    font-size: 42px;
  }

  /* ARTISTS */

  .artistsSection {
    padding: 100px 6%;
  }

  .artistsGrid {
    grid-template-columns: 1fr;
  }

  .artistCard {
    height: 500px;
  }

  /* EVENTS */

  .eventsSection {
    padding: 100px 6%;
  }

  .eventsGrid {
    grid-template-columns: 1fr;
  }

  /* SHOWCASE */

  .showcaseSection {
    padding: 100px 6%;
  }

  .showcaseGrid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .largeItem,
  .wideItem {
    grid-column: span 1;
    grid-row: span 1;
  }

  /* TESTIMONIALS */

  .testimonialsSection {
    padding: 100px 6%;
  }

  .testimonialsGrid {
    grid-template-columns: 1fr;
  }

  /* CTA */

  .ctaSection {
    padding: 120px 6%;
  }

  .ctaTitle {
    font-size: 46px;
  }

  /* FOOTER */

  .mainFooter {
    padding: 70px 6% 30px;
  }

  .footerTop {
    flex-direction: column;
    gap: 50px;
  }

}

.galleryHero {
  position: relative;
  height: 75vh;
  display: flex;
  align-items: center;
  padding: 0 8%;
  overflow: hidden;

  background: url('../assets/images/background.png');
  background-size: cover;
  background-position: center;
}

.galleryPrev,
.galleryNext {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  transition: 0.3s ease;
}

.galleryPrev {
  left: 25px;
}

.galleryNext {
  right: 25px;
}

.galleryPrev:hover,
.galleryNext:hover {
  background: #C1121F;
  transform: scale(1.08);
}

.galleryPrev svg,
.galleryNext svg {
  width: 22px;
  height: 22px;
  color: #fff;
}

.galleryHeroOverlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(to right,
      rgba(255, 255, 255, 0.85),
      rgba(255, 255, 255, 0.6),
      rgba(255, 255, 255, 0.2));
}

.galleryHeroContent {
  position: relative;
  z-index: 2;
  max-width: 750px;
  margin-top: 50px;
}

.galleryHeroTitle {
  font-size: 80px;
  line-height: 1;
  color: var(--text);
  margin-bottom: 25px;
}

.galleryHeroText {
  color: var(--text);
  font-size: 18px;
  line-height: 1.8;
}

/* SECTION */

.gallerySection {
  padding: 120px 8%;
  background: var(--bg-soft);
}

.galleryTop {
  margin-bottom: 60px;
}

.galleryTitle {
  font-size: 60px;
  line-height: 1.2;
  color: var(--text);
  max-width: 750px;
}

/* SLIDER */

.gallerySlider {
  overflow: hidden;
  padding-bottom: 60px;
  position: relative
}

.swiper-slide {
  height: auto;
}

/* CARD */

.galleryCard {
  height: 520px;
  overflow: hidden;
  border-radius: 28px;
  cursor: pointer;
  position: relative;
}

.galleryCard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.7s ease;
}

.galleryCard:hover img {
  transform: scale(1.08);
}

/* NAVIGATION */

.galleryPrev,
.galleryNext {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;

  width: 55px;
  height: 55px;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  transition: 0.3s ease;
}

.galleryPrev {
  left: 25px;
}

.galleryNext {
  right: 25px;
}

.galleryPrev:hover,
.galleryNext:hover {
  background: #C1121F;
  transform: translateY(-50%) scale(1.08);
}

.galleryPrev svg,
.galleryNext svg {
  width: 22px;
  height: 22px;
  color: #fff;
}

/* LIGHTBOX */

.lightbox {
  position: fixed;
  inset: 0;

  background: rgba(0, 0, 0, 0.92);

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;

  transition: 0.4s ease;

  z-index: 99999;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightboxImage {
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 20px;
}

.closeLightbox {
  position: absolute;
  top: 30px;
  right: 40px;

  font-size: 50px;
  color: #fff;

  cursor: pointer;
}

/* RESPONSIVE */

@media(max-width: 768px) {

  .galleryHero {
    height: 65vh;
    padding: 0 6%;
  }

  .galleryHeroTitle {
    font-size: 48px;
  }

  .gallerySection {
    padding: 100px 6%;
  }

  .galleryTitle {
    font-size: 40px;
  }

  .galleryPrev {
    left: 10px;
  }

  .galleryNext {
    right: 10px;
  }


  .galleryCard {
    height: 420px;
  }

}

/* =========================================================
SMALL MOBILE
========================================================= */

@media(max-width: 480px) {

  .heroTitle {
    font-size: 42px;
  }

  .aboutTitle,
  .artistsTitle,
  .eventsTitle,
  .showcaseTitle,
  .testimonialsTitle,
  .ctaTitle {
    font-size: 34px;
  }

  .artistOverlay h3,
  .eventContent h3,
  .showcaseOverlay h3 {
    font-size: 26px;
  }

  .testimonialCard {
    padding: 30px;
  }

}

img {
  max-width: 100%;
  height: auto;
}

body {
  overflow-x: hidden;
}