/* =========================
   RESET & BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: #000;
  color: #e0e0e0;
  line-height: 1.6;
  overflow-x: hidden;
}
img,
iframe {
  max-width: 100%;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
/* =========================
   TYPOGRAPHY
========================= */
h2 {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 3px;
  margin-bottom: 2rem;
  border-left: 3px solid #fff;
  padding-left: 1rem;
  text-transform: uppercase;
}

/* =========================
   MENU
========================= */
.menu {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 3000;
  background: transparent;
}
.menu-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 3vw;
}
.menu-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.menu-links li a {
  position: relative;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: .8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: .3s;
}
.menu-links li a::after {
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:1px;
  background:#fff;
  transition:.3s;
}
.menu-links li a:hover{
    color:#fff;
}
.menu-links li a:hover::after{
    width:100%;
}
.menu-toggle {
  display: none;
}
.menu-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.menu-logo img {
  height: 100px;
  width: auto;
  display: block;
}
/* =========================
   HERO
========================= */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.carousel-continuous {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  width: max-content;
  height: 100%;
  animation: scrollCarousel 75s linear infinite;
}

.carousel-slide {
  flex: 0 0 100vw;
  width: 100vw;
  height: 100%;
  background-size: cover;
  background-position: center;
}

@keyframes scrollCarousel {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-300vw);
  }
}

.hero:hover .carousel-track {
  animation-play-state: paused;
}

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 20;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 3vw;
}

.hero-title {
  position: absolute;
  left: 3vw;
  bottom: 4vh;

  display: flex;
  flex-direction: column;

  margin: 0;

  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(17rem, 22vw, 28rem);
  font-weight: 400;

  text-transform: uppercase;
  line-height: .68;
  letter-spacing: -.06em;

  color: #fff;
  mix-blend-mode: difference;

  pointer-events: none;
}

.cta-button {
  position: absolute;
  right: 3vw;
  bottom: 4vh;

  display: inline-flex;
  align-items: center;
  gap: 14px;

  padding: 16px 36px;
  border: 1px solid rgba(255,255,255,.85);

  background: rgba(0,0,0,.15);
  color: #fff;

  font-family: monospace;
  font-size: .75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;

  transition: .3s ease;
}

.cta-button:hover {
  background: #fff;
  color: #000;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  background: rgba(0,0,0,.25);
  pointer-events: none;
}
@media (max-width: 768px) {
  .hero-title {
    left: 1.2rem;
    right: 1.2rem;
    bottom: 7rem;

    font-size: clamp(5.5rem, 26vw, 8.5rem);
    line-height: .76;
    letter-spacing: -.06em;

    max-width: calc(100vw - 2.4rem);
    overflow-wrap: normal;
  }

  .hero-title span {
    display: block;
    white-space: nowrap;
  }

  .cta-button {
    left: 1.2rem;
    right: 1.2rem;
    bottom: 2rem;
    justify-content: center;
  }
}
/* =========================
   ABOUT
========================= */
.about-section {
  position: relative;
  background: #000;
  padding: 5rem 0;
  overflow: hidden;
}

.about-bg-collage {
  position: absolute;
  top: 50%;
  right: -120px;
  width: 800px;
  height: 800px;
  background-image: url("../assets/img/rosario2.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(-50%) rotate(25deg) scale(1.05);
  opacity: 0.5;
  filter: grayscale(1) contrast(1.3);
  z-index: 0;
  pointer-events: none;
}

.about-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.about-image {
  flex: 1;
  min-width: 250px;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.about-text {
  flex: 1;
  max-width: 600px;
  text-align: right;
}

.about-text h2 {
  display: inline-block;
  border-left: none;
  border-right: 3px solid #fff;
  padding-left: 0;
  padding-right: 1rem;
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.9;
}

/* =========================
   VIDEOS
========================= */
.videos-section {
  background: #000;
  padding: 4rem 0;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.video-card {
  background: #111;
  padding: 0.5rem;
  transition: transform 0.25s ease;
}

.video-card:hover {
  transform: translateY(-5px);
}

.video-wrapper-short {
  position: relative;
  height: 0;
  padding-bottom: 177.77%;
  overflow: hidden;
}

.video-wrapper-short iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-link {
  display: inline-block;
  margin-top: 0.75rem;
  color: #ccc;
  font-family: monospace;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-decoration: none;
}

.video-link:hover {
  color: #fff;
}

/* =========================
   SPOTIFY
========================= */
.spotify-section {
  background: #000;
  padding: 4rem 0;
}

.spotify-card {
  position: relative;
  width: 100%;
  height: 360px;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  cursor: pointer;
}

.spotify-bg {
  position: absolute;
  inset: 0;
}

.spotify-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.spotify-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.9)
  );
}

.spotify-info {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  color: #fff;
}

.spotify-info h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  margin: 0;
  letter-spacing: 2px;
}

.spotify-info p {
  font-size: 14px;
  opacity: 0.7;
  margin: 5px 0 15px;
}

.spotify-btn {
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  background: #1db954;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: 0.25s ease;
}

.spotify-btn:hover {
  transform: scale(1.05);
}

/* =========================
   SOCIAL
========================= */
.social-section {
  background: #000;
  padding: 3rem 0;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.social-links a {
  color: #aaa;
  font-size: 2rem;
  transition: 0.25s ease;
}

.social-links a:hover {
  color: #fff;
  transform: translateY(-4px);
}

.copyright {
  margin-top: 1.5rem;
  font-size: 0.7rem;
  opacity: 0.5;
}

/* =========================
   EFFECTS
========================= */
.fade-up {
  opacity: 0;
  transform: translateY(60px);
  filter: blur(4px);
  transition: 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* =========================
   RESPONSIVE TABLET
========================= */
@media (max-width: 900px) {
  .about-section {
    padding: 4rem 0;
  }

  .about-container {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .about-image,
  .about-text {
    width: 100%;
    max-width: 520px;
  }

  .about-text {
    text-align: center;
  }

  .about-text h2 {
    border-right: none;
    border-left: 3px solid #fff;
    padding-right: 0;
    padding-left: 1rem;
  }

  .about-bg-collage {
    width: 520px;
    height: 520px;
    right: -220px;
    top: 62%;
    opacity: 0.28;
    transform: translateY(-50%) rotate(20deg);
  }
}

/* =========================
   RESPONSIVE MOBILE
========================= */
@media (max-width: 768px) {
  .menu {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
  }

  .menu-container {
    justify-content: flex-end;
    padding: 1rem;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 3002;
  }

  .menu-toggle span {
    display: block;
    width: 30px;
    height: 2px;
    background: #fff;
    transition: 0.25s ease;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .menu-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 78%;
    height: 100vh;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.35s ease;
    z-index: 3001;
  }

  .menu-links.active {
    right: 0;
  }

  .menu-links li a {
    font-size: 1.4rem;
  }

  .hero {
    height: 100svh;
  }

  .carousel-track {
    animation-duration: 95s;
  }

  .carousel-slide {
    background-position: center;
  }

  .hero-content h1 {
    font-size: clamp(3rem, 16vw, 5rem);
  }

  .cta-button {
    padding: 12px 22px;
    font-size: 0.75rem;
    letter-spacing: 1px;
  }

  .videos-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .video-card {
    max-width: 390px;
    margin: 0 auto;
  }

  .spotify-card {
    height: 300px;
    border-radius: 12px;
  }

  .spotify-info {
    left: 18px;
    bottom: 18px;
  }

  .spotify-info h3 {
    font-size: 24px;
  }
}

/* =========================
   RESPONSIVE SMALL MOBILE
========================= */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  h2 {
    font-size: 1.2rem;
    letter-spacing: 2px;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .about-bg-collage {
    width: 380px;
    height: 380px;
    right: -190px;
    opacity: 0.22;
  }

  .about-text p {
    font-size: 0.95rem;
  }

  .social-section {
    padding: 2.5rem 0;
  }

  .social-links a {
    font-size: 1.5rem;
  }
}