#artists {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;

  background: url("images/back5.webp") center center/cover no-repeat;
  background-attachment: fixed;

  padding: 120px 8%;
  overflow: hidden;
}

/* Dark Overlay */

#artists::before {
  content: "";
  position: absolute;
  inset: 1;

  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.75)
  );

  z-index: 1;
}
/* ==========================
   ARTISTS HERO SECTION
========================== */

#artists {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;

  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.75)),
    url("images/back5.webp");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;

  padding: 120px 8%;
  overflow: hidden;
}

#artists::before {
  content: "";
  position: absolute;
  inset: 1;
  z-index: 1;
}

.artists-hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;

  color: #fff;

  animation: artistsFadeUp 1s ease;
}

.artists-badge {
  display: inline-block;

  padding: 10px 20px;

  border-radius: 50px;

  background: rgba(255, 255, 255, 0.12);

  backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.15);

  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;

  margin-bottom: 25px;
}

/* Title */

.artists-title {
  font-size: 58px;
  line-height: 1.4;
  font-weight: 800;

  margin-bottom: 25px;

  color: #fff;
}

/* Description */

.artists-description {
  max-width: 700px;

  font-size: 18px;
  line-height: 1.9;

  color: rgba(255, 255, 255, 0.88);

  margin-bottom: 35px;
}

/* ==========================
   MINIMAL LUXURY BREADCRUMB
========================== */

.artists-breadcrumb {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.artists-breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.artists-breadcrumb a:hover {
  color: red;
}

.artists-separator {
  color: rgba(255, 255, 255, 0.4);
  font-size: 16px;
}

.artists-current {
  color: red;
  font-size: 16px;
  font-weight: 700;
  position: relative;
}

.artists-current::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: yellow;
  border-radius: 10px;
}

/* Mobile */

@media (max-width: 768px) {
  .artists-breadcrumb {
    justify-content: center;
  }

  .artists-breadcrumb a,
  .artists-current,
  .artists-separator {
    font-size: 14px;
  }
}

/* ==========================
   ANIMATION
========================== */

@keyframes artistsFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================
   LAPTOP
========================== */

@media (max-width: 1200px) {
  .artists-title {
    font-size: 58px;
  }
}

/* ==========================
   TABLET
========================== */

@media (max-width: 768px) {
  #artists {
    justify-content: center;
    text-align: center;

    padding: 120px 6%;
  }

  .artists-hero-content {
    margin: auto;
  }

  .artists-title {
    font-size: 42px;
  }

  .artists-description {
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
  }

  .artists-breadcrumb {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 480px) {
  #artists {
    padding: 100px 20px;
  }

  .artists-badge {
    font-size: 12px;
    padding: 8px 16px;
  }

  .artists-title {
    font-size: 32px;
  }

  .artists-description {
    font-size: 14px;
    line-height: 1.8;
  }

  .artists-breadcrumb {
    gap: 10px;
    padding: 8px;
  }

  .artists-home-link,
  .artists-current {
    padding: 10px 16px;
    font-size: 13px;
  }
}

/* this */

.wweteamartists-section {
  padding: 100px 20px;
  background: #ffffff;
}

.wweteamartists-container {
  max-width: 1250px;
  margin: auto;
}

/* Heading */

.wweteamartists-heading {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 80px;
}

.wweteamartists-subtitle {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 50px;
  background: #fff3ee;
  color: #ff5722;
  font-weight: 600;
  margin-bottom: 15px;
}

.wweteamartists-heading h2 {
  font-size: 52px;
  color: #111;
  font-weight: 800;
  margin-bottom: 20px;
}

.wweteamartists-heading h2 span {
  color: #ff5722;
}

.wweteamartists-heading p {
  color: #666;
  line-height: 1.8;
  font-size: 18px;
}

/* ===========================
   CARD ROW
=========================== */

.wweteamartists-row {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 40px;

  background: #fff;
  border-radius: 25px;
  padding: 35px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

  transition: 0.4s ease;
}

.wweteamartists-row:hover {
  transform: translateY(-8px);

  box-shadow: 0 20px 60px rgba(255, 87, 34, 0.18);
}

.wweteamartists-row.reverse {
  flex-direction: row-reverse;
}

.wweteamartists-image {
  flex: 1;
}

.wweteamartists-image img {
  width: 100%;
  height: 480px;
  object-fit: contain;
  border-radius: 20px;
  display: block;
  transition: 0.5s ease;
  aspect-ratio: 1/1;
}

.wweteamartists-row:hover .wweteamartists-image img {
  transform: scale(1.04);
}

/* ===========================
   CONTENT
=========================== */

.wweteamartists-content {
  flex: 1;
}

.wweteamartists-role {
  display: inline-block;
  background: red;
  color: #fff;
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
}

.wweteamartists-content h3 {
  font-size: 38px;
  color: #111;
  margin-bottom: 15px;
}

.wweteamartists-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 25px;
}

/* ===========================
   ANIMATED SKILLS
=========================== */

.wweteamartists-skills {
  list-style: none;
  margin: 0;
  padding: 0;
}

.wweteamartists-skills li {
  margin-bottom: 18px;
}

.wweteamartists-skills span {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 600;
  color: #222;
  margin-bottom: 8px;
}

.wweteamartists-progress {
  width: 100%;
  height: 8px;
  background: #ededed;
  border-radius: 100px;
  overflow: hidden;
  position: relative;
}

.wweteamartists-bar {
  height: 100%;
  width: 0;
  border-radius: 100px;

  background: linear-gradient(90deg, #ff5722, #ff8a50);

  animation: wweteamartistsFill 2s ease forwards;
}

.wweteamartists-bar::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;

  width: 80px;
  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );

  animation: wweteamartistsShine 2s linear infinite;
}

@keyframes wweteamartistsFill {
  from {
    width: 0;
  }
  to {
    width: var(--width);
  }
}

@keyframes wweteamartistsShine {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(250%);
  }
}

@media (max-width: 991px) {
  .wweteamartists-row,
  .wweteamartists-row.reverse {
    flex-direction: column;
  }

  .wweteamartists-image img {
    height: 400px;
  }

  .wweteamartists-heading h2 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .wweteamartists-section {
    padding: 70px 15px;
  }

  .wweteamartists-row {
    padding: 20px;
    gap: 25px;
  }

  .wweteamartists-heading h2 {
    font-size: 30px;
  }

  .wweteamartists-image img {
    height: 300px;
  }

  .wweteamartists-content h3 {
    font-size: 28px;
  }
}
.wweteamartists-row {
  position: relative;
  overflow: hidden;
}

.wweteamartists-row::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;

  width: 100%;
  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 87, 34, 0.08),
    transparent
  );

  transition: 1s;
}

.wweteamartists-row:hover::before {
  left: 120%;
}
/* ==========================================
   WWE TEAM ARTISTS SCROLL REVEAL ANIMATION
   ADD THIS AT THE END OF YOUR CSS
========================================== */

@supports (animation-timeline: view()) {
  .wweteamartists-row {
    opacity: 0;

    animation-name: wweteamartistsRevealLeft;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-out;

    animation-timeline: view();
    animation-range: entry 15% cover 35%;
  }

  .wweteamartists-row.reverse {
    animation-name: wweteamartistsRevealRight;
  }

  @keyframes wweteamartistsRevealLeft {
    from {
      opacity: 0;
      transform: translateX(-80px);
    }

    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes wweteamartistsRevealRight {
    from {
      opacity: 0;
      transform: translateX(80px);
    }

    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
}

/* cta */

/* =========================
   ARTIST CTA
========================= */

.artist-cta {
  padding: 90px 20px;
  background: #ffffff;
}

.artist-cta-box {
  max-width: 1100px;
  margin: auto;
  text-align: center;
  padding: 70px 50px;
  border-radius: 24px;

  background: linear-gradient(135deg, #fff8f4 0%, #ffffff 100%);

  border: 1px solid #eee;

  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
}

.cta-badge {
  display: inline-block;
  padding: 10px 18px;
  background: rgba(255, 107, 53, 0.1);
  color: #ff6b35;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.artist-cta-box h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #111;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.artist-cta-box p {
  max-width: 760px;
  margin: 0 auto;
  color: #666;
  font-size: 18px;
  line-height: 1.8;
}

.artist-cta-box strong {
  color: #ff6b35;
}

.cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-btn {
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 12px;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Primary Button */
.btn-primary {
  background: #ff6b35;
  color: #fff;
}

.btn-primary:hover {
  background: #e95b27;
  transform: translateY(-3px);
}

/* Secondary Button */
.btn-secondary {
  background: #111;
  color: #fff;
}

.btn-secondary:hover {
  background: #000;
  transform: translateY(-3px);
}

/* Outline Button */
.btn-outline {
  border: 2px solid #ff6b35;
  color: #ff6b35;
  background: #fff;
}

.btn-outline:hover {
  background: #ff6b35;
  color: #fff;
  transform: translateY(-3px);
}

/* Mobile */
@media (max-width: 768px) {
  .artist-cta {
    padding: 60px 15px;
  }

  .artist-cta-box {
    padding: 40px 25px;
  }

  .artist-cta-box p {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-btn {
    width: 100%;
  }
}
/* why choose */
/* ===========================
   WHY CHOOSE ARTISTS
=========================== */

.why-artists-section {
  padding: 100px 20px;
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  padding: 10px 18px;
  background: #fff3ee;
  color: #ff6b35;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #111;
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.section-header p {
  max-width: 700px;
  margin: auto;
  color: #666;
  font-size: 18px;
  line-height: 1.8;
}

/* COUNTERS */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 70px;
}

.stat-box {
  text-align: center;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 35px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.stat-box h3 {
  font-size: 42px;
  color: #ff6b35;
  font-weight: 800;
  margin-bottom: 10px;
}

.stat-box span {
  color: #555;
  font-weight: 600;
}

/* FEATURES */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 24px;
  padding: 35px;
  transition: 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.icon {
  width: 70px;
  height: 70px;
  background: #fff3ee;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin-bottom: 20px;
}

.feature-card h3 {
  color: #111;
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 700;
}

.feature-card p {
  color: #666;
  line-height: 1.7;
}

/* SCROLL REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* TABLET */

@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */

@media (max-width: 768px) {
  .why-artists-section {
    padding: 70px 15px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .section-header p {
    font-size: 16px;
  }

  .feature-card {
    padding: 25px;
  }
}

/*  */

/* ==========================
   WWE ARTIST FAQ
========================== */
/* =========================
WFAQ SECTION - Unique Classes
========================= */
.wfaq-section {
  background: #ffffff;
  padding: 30px 20px;
}

.wfaq-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.wfaq-heading {
  text-align: center;
  margin-bottom: 50px;
}

.wfaq-heading h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  color: #111111;
  margin-bottom: 15px;
  line-height: 1.2;
}

.wfaq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.wfaq-item {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.wfaq-item:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.wfaq-item.wfaq-active {
  border-color: red;
  box-shadow: 0 8px 30px rgba(255, 77, 0, 0.1);
}

.wfaq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: #111111;
  transition: color 0.3s ease;
  font-family: inherit;
  outline: none;
}

.wfaq-question:hover {
  color: red;
}

.wfaq-item.wfaq-active .wfaq-question {
  color: red;
}

.wfaq-icon {
  font-size: 26px;
  color: red
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  margin-left: 15px;
  line-height: 1;
  display: inline-block;
}

.wfaq-item.wfaq-active .wfaq-icon {
  transform: rotate(45deg);
}

.wfaq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.wfaq-answer-wrap {
  padding: 0 25px 25px;
}

.wfaq-answer-wrap p {
  margin: 0;
  color: #666666;
  font-size: 16px;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.1s;
}

.wfaq-item.wfaq-active .wfaq-answer-wrap p {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
TABLET
========================= */
@media (max-width: 768px) {
  .wfaq-section {
    padding: 70px 15px;
  }

  .wfaq-heading h2 {
    font-size: 32px;
  }

  .wfaq-question {
    font-size: 16px;
    padding: 20px;
  }

  .wfaq-answer-wrap {
    padding: 0 20px 20px;
  }

  .wfaq-answer-wrap p {
    font-size: 15px;
  }
}

/* =========================
MOBILE
========================= */
@media (max-width: 480px) {
  .wfaq-heading h2 {
    font-size: 25px;
  }

  .wfaq-question {
    font-size: 15px;
    padding: 18px;
  }

  .wfaq-icon {
    font-size: 22px;
  }

  .wfaq-answer-wrap {
    padding: 0 18px 18px;
  }
}
