* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0a0a0a;
  color: #fff;
  font-family: Arial, sans-serif;
}

@font-face {
  font-family: "Bebas Neue";
  src: url("/fonts/BebasNeue-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy";
  src: url("/fonts/Gilroy-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy";
  src: url("/fonts/Gilroy-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

/* ====== NAVBAR ====== */
.site-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  background-color: transparent;
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.1);
}

/* ====== LOGO ====== */
.site-logo {
  font-size: 40px;
  font-family: "Bebas Neue", sans-serif;
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
}

.site-logo:hover {
  transform: scale(1.05);
  color: orange;
}

/* ====== MENU ====== */
.nav-menu {
  display: flex;
  list-style: none;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
}

.nav-menu li {
  margin-left: 30px;
  position: relative;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

/* ====== ANIMATED UNDERLINE ====== */
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0%;
  background-color: orange;
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: orange;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* ====== HERO SECTION ====== */
.hero-section {
  position: relative;
  width: 100%;
  background-color: #000;
  min-height: 100vh;
}

/* This rule now only affects background/foreground images */
.hero-section > img:not(.inline-o) {
  width: 100%;
  display: block;
}

.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.fg-image {
  position: relative;
  z-index: 2;
}

.hero-text {
  position: absolute;
  top: 40%; /* Changed from 50% to 40% to move text higher */
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  width: 100%;
}

.hero-text h1 {
  font-size: 10vw;
  line-height: 1.2;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
  white-space: nowrap;
  margin: 0;
}

.bienvenido {
  position: relative;
  display: inline-block;
}

.inline-o {
  width: 4.3vw !important; /* Force the width */
  height: auto !important; /* Maintain aspect ratio */
  display: inline-block !important;
  vertical-align: middle;
  margin-left: -0.5vw;
  margin-top: 1.2vw;
  transform: translateY(-0.5vw);
  position: relative !important; /* Override any absolute positioning */
}

.hero-text p {
  font-size: 1.2vw;
  color: #ccc;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  margin-top: 1vw;
}

.decorative-double-w {
  position: absolute;
  z-index: 10;
  top: 77%;
  left: 5%;
  transform: translateX(-50%);
  max-width: 15%;
  height: auto;
}

.decorative-scratch {
  position: absolute;
  z-index: 2;
  top: 18%;
  right: 30%;
  max-width: 15%;
  height: auto;
}
/* ====== PRICING & PROMOTERS SECTION ====== */
.pricing-section {
  background-color: #0a0a0a;
  padding: 150px 30px 0;
  color: #fff;
}

.container {
  max-width: 100%;
  margin: 0 auto;
}

/* Section Header */
.section-header {
  display: flex;
  justify-content: center; /* <-- centra horizontalmente */
  align-items: center;
  flex-direction: column; /* <-- apila título y botón verticalmente */
  gap: 20px;
  margin-bottom: 50px;
  text-align: center; /* <-- centra el texto */
}

.section-header h2 {
  font-size: 3.5rem;
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-header h2 span {
  color: #fff;
}

.section-header h2 strong {
  color: #ffa500;
}

.view-all-btn {
  background-color: #ffa500;
  color: #000;
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.3s ease,
    box-shadow 0.3s ease;
}

.view-all-btn:hover {
  background-color: #ffb733;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 165, 0, 0.3);
}

/* Pricing Plans */
.pricing-plans {
  display: grid;  /* Use grid for uniform card sizing */
  grid-template-columns: repeat(3, 1fr);  /* Ensure 3 equal-width columns for better responsiveness */
  gap: 25px;  /* Space between cards */
  justify-items: center;  /* Centers cards horizontally */
  align-items: center;  /* Centers cards vertically */
  margin-bottom: 80px;
  width: 80%;  /* Adjust the width of the grid */
  max-width: 1200px;  /* Maximum width to prevent the grid from becoming too wide */
  margin: 0 auto;  /* Center the grid horizontally */
}

.pricing-card {
  background-color: #1a1a1a;
  padding: 30px 25px;
  border-radius: 15px;
  border: 1px solid #333;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;  /* Ensure full height of the grid cell */
  width: 100%;  /* Make sure it takes up the full width of the grid */
}

.pricing-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 25px rgba(255, 165, 0, 0.2);
  border-color: orange;
}

.pricing-card h3 {
  font-size: 30px;
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.pricing-card p {
  color: #ccc;
  font-size: 15px;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  line-height: 1.5;
}

.pricing-card:hover h3 {
  color: orange;
}

.pricing-card:hover p {
  color: #eee;
}

/* Featured Promoters */
.featured-promoters {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
  position: relative;
  margin-top: 80px;
}

.promoter-img {
  position: absolute;
  left: -30px;
  top: 0;
  width: 200px;
  height: auto;
  border-radius: 8px;
  flex-shrink: 0;
}

.promoter-details {
  flex: 1;
  max-width: 600px;
  min-width: 400px;
  text-align: center;
}

.promoter-details h2 {
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 3.5rem;
  margin-bottom: 25px;
}

.promoter-details h2 span {
  color: #ffa500;
}

.promoter-details p {
  font-family: "Gilroy", sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #ccc;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Promoter Profile Grid */
.promoter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);  /* Ensure 4 equal-width columns */
  gap: 30px;  /* Increase the gap between cards */
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-top: 20px;
  padding-bottom: 20px;
}
/* Promoter Card */
.promoter-card {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;  /* Ensure full height of the grid cell */
  width: 100%;  /* Ensure each card takes up the full width of the grid cell */
}

.promoter-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 30px rgba(255, 165, 0, 0.2);
}

/* Promoter Image */
.promoter-image {
  width: 100%;
  height: 600px; /* Increase the height to match feature card height */
  position: relative;
  border-radius: 20px;
}

.promoter-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* Overlay content */
.promoter-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 20px;
  text-align: center;
  border-radius: 0 0 20px 20px;
}

.promoter-content h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.promoter-content p {
  font-family: "Gilroy", sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: #fff;
  margin-top: 2px;
}




.features-section {
  background: #0a0a0a;
  padding: 80px 30px 150px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.features-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.features-header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 80px;
}

.features-slide-count {
  position: absolute;
  top: -20px;
  left: 0;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
}

.features-header h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 150px;
  text-align: center;
}

.features-header h2 span {
  color: #ff8c00;
}

.features-taped-img img {
  position: absolute;
  top: -20%;
  right: -15%;
  width: 350px;
  height: auto;
}

.slider-controls {
  position: absolute;
  top: -30px;
  right: 12px;
  display: flex;
  gap: 10px;
  z-index: 111;
}

.slider-arrow {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease,
    border-color 0.3s ease;
}

.slider-arrow:hover {
  background: rgba(255, 165, 0, 0.15);
  border-color: rgba(255, 165, 0, 0.4);
  transform: scale(1.1);
}

.slider-arrow::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  transition: border-color 0.3s ease;
}

/* Prev Arrow */
.slider-arrow.prev::before {
  border-width: 8px 12px 8px 0;
  border-color: transparent #fff transparent transparent;
  margin-right: 3px;
}

/* Next Arrow */
.slider-arrow.next::before {
  border-width: 8px 0 8px 12px;
  border-color: transparent transparent transparent #fff;
  margin-left: 3px;
}

/* Arrow Color Change on Hover */
.slider-arrow:hover.prev::before {
  border-color: transparent orange transparent transparent;
}

.slider-arrow:hover.next::before {
  border-color: transparent transparent transparent orange;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.feature-card {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 30px rgba(255, 165, 0, 0.2);
}
.feature-card .card-arrow-icon {
  transition: transform 0.3s ease;
}
.feature-card:hover .card-arrow-icon {
  transform: rotate(45deg) scale(1.1);
}
.feature-card:hover .card-arrow-icon {
  transform: rotate(45deg) scale(1.1);
}

.feature-image {
  width: 100%;
  height: 600px;
  border-radius: 20px;
  background-repeat: no-repeat;
  background-position: center;
  aspect-ratio: 1;
}

.feature-1 .feature-image {
  background-image: url("../images/features-img-1.png");
}
.feature-2 .feature-image {
  background-image: url("../images/features-img-2.png");
}
.feature-3 .feature-image {
  background-image: url("../images/features-img-3.png");
}
.feature-4 .feature-image {
  background-image: url("../images/features-img-4.png");
}

.card-arrow-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  z-index: 2;
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 30px 20px 20px;
  border-radius: 0 0 20px 20px;
  text-align: center;
}

.card-content h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: #fff;
}

.card-content p {
  font-family: "Gilroy", sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.4;
}

.scribble-decoration {
  position: absolute;
  left: -30px;
  top: 98%;
  z-index: 11;
}

/* ====== DJ HERO SECTION ====== */
.dj-promo-hero {
  width: 100%;
  background-image: url("../images/crowd-background.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center top;
  position: relative;
}

.dj-promo-hero::before {
  content: "";
  display: block;
  padding-top: 80%;
}

/* Decorative Posters */
.promo-poster-left,
.promo-poster-right {
  position: absolute;
  height: auto;
}

.promo-poster-left {
  top: -4%;
  left: 2%;
  width: 350px;
}

.promo-poster-right {
  top: 67%;
  right: 20px;
  width: 400px;
}

/* Content Inside Hero */
.promo-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  max-width: 600px;
  padding: 0 20px;
}

.promo-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 6rem;
  font-weight: normal;
  letter-spacing: 1px;
}

.promo-description {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.promo-btn {
  padding: 10px 20px;
  font-size: 2em;
  border: none;
  background-color: orange;
  color: black;
  cursor: pointer;
  border-radius: 25px;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* Hover Animation */
.promo-btn:hover {
  background-color: #ffb733;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 165, 0, 0.3);
}

/* ====== USER ACTIVITY SECTION ====== */
.user-activity {
  background-color: #0a0a0a;
  color: #fff;
  padding: 80px 30px 0;
  font-family: Arial, sans-serif;
}

.user-activity h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.5rem;
  font-weight: normal;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.user-activity h2 span {
  color: orange;
}

.activity-notification {
  font-family: "Gilroy", sans-serif;
  font-weight: 300;
  background-color: #1e1e1e;
  border-radius: 30px;
  padding: 15px 25px;
  text-align: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 60px;
  color: #ccc;
  font-size: 15px;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
  border: 1.5px solid transparent;
}
.activity-notification:hover {
  transform: scale(1.02);
  border-color: orange;
  box-shadow: 0 0 12px rgba(255, 165, 0, 0.15);
}

/* ====== FOOTER ====== */
.site-footer {
  background-color: #0a0a0a;
  color: #fff;
  padding: 60px 30px 30px;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.5rem;
  font-weight: bold;
  letter-spacing: 1px;
  color: orange;
  flex: 1 1 200px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.footer-column {
  flex: 1 1 200px;
  margin-bottom: 50px;
}

.footer-column h4 {
  font-family: "Gilroy", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  font-family: "Gilroy", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #ccc;
  margin-bottom: 8px;
  transition: color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}
.footer-column ul li:hover {
  color: orange;
  transform: translateX(5px);
}
/* Bottom Footer Bar */
.footer-bottom-bar {
  background-color: #1e1e1e;
  border-radius: 50px 50px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  flex-wrap: wrap;
  margin-left: -60px;
  margin-right: -60px;
  margin-bottom: -30px;
  width: calc(100% + 120px);
}

.footer-bottom-bar p {
  font-family: "Gilroy", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin: 0;
  padding: 10px;
  display: flex;
  align-items: center;
}

/* Social Icons */
.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-socials img {
  width: 50px;
  height: 50px;
  padding: 8px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid transparent;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.footer-socials img:hover {
  transform: scale(1.1);
  border-color: orange;
  box-shadow: 0 0 10px rgba(255, 165, 0, 0.3);
}

html {
  scroll-behavior: smooth;
}
