
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #111827;
  color: #ffffff;
  line-height: 1.6;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: #ffffff;
}

.container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ff0018;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  min-height: 70px;
}

.logo {
  z-index: 2;
  flex-shrink: 0;
}

.logo img {
  height: 100px;
  width: auto;
  display: block;
}

.main-nav {
  margin-left: auto;
}

.main-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  white-space: nowrap;
}

.main-nav li {
  display: inline-block;
}

.main-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
}

.main-nav a:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .header-wrap {
    padding: 12px 15px;
  }

  .logo img {
    height: 60px;
  }

  .main-nav ul {
    gap: 12px;
  }

  .main-nav a {
    font-size: 0.85rem;
  }
}
/* HERO VIDEO */
.hero-video {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(17, 24, 39, 0.88),
    rgba(17, 24, 39, 0.45)
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 100px 0;
}

.eyebrow {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.75;
  margin-bottom: 12px;
}

.hero-content h1 {
  font-size: 3.2rem;
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-text {
  max-width: 550px;
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 4px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #ffffff;
  color: #111827;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #ffffff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* SECTIONS */
section {
  padding: 80px 0;
}

.section-header {
  margin-bottom: 30px;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.section-header p {
  opacity: 0.75;
}

/* CAROUSEL */
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.carousel-track-container {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 10px;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.album-card {
  flex: 0 0 260px;
}

.album-card a {
  display: block;
}

.album-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 14px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.album-card img:hover {
  transform: scale(1.03);
  opacity: 0.92;
}

.album-card h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.album-card p {
  font-size: 0.92rem;
  opacity: 0.7;
}

.carousel-btn {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background 0.3s ease;
  flex-shrink: 0;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* FEATURED ARTIST */
.artist-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 50px;
  align-items: center;
}

.artist-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.artist-text h2 {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.artist-text p {
  opacity: 0.85;
  margin-bottom: 25px;
  max-width: 500px;
}

/* VIDEO GRID */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.video-card a {
  display: block;
  position: relative;
}

.video-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.video-card img:hover {
  transform: scale(1.02);
  opacity: 0.9;
}

.video-card h3 {
  margin-top: 12px;
  font-size: 1rem;
}

.play-icon {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(17, 24, 39, 0.8);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  pointer-events: none;
}

/* FOLLOW */
.follow-section {
  text-align: center;
  background: #010000;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.follow-wrap {
  max-width: 800px;
}

.follow-wrap h2 {
  font-size: 2.3rem;
  margin-bottom: 14px;
}

.follow-text {
  opacity: 0.8;
  margin-bottom: 28px;
}

.follow-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.follow-links a {
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.follow-links a:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
}

/* FOOTER */
.site-footer {
  padding: 50px 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.site-footer h3 {
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.site-footer p {
  opacity: 0.7;
  max-width: 400px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer-links a {
  opacity: 0.85;
}

.footer-links a:hover {
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .hero-content h1 {
    font-size: 2.6rem;
  }

  .artist-grid {
    grid-template-columns: 1fr;
  }

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 12px 15px;
  }

  .logo img {
    height: 55px;
  }

  .main-nav {
    margin-left: auto;
  }

  .main-nav ul {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    align-items: center;
  }

  .main-nav a {
    font-size: 0.72rem;
    white-space: nowrap;
  }
}

  .hero-video {
    min-height: 68vh;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .carousel-btn {
    display: none;
  }
}

@media (max-width: 575px) {
  section {
    padding: 60px 0;
  }

  .hero-content h1 {
    font-size: 1.9rem;
  }

  .hero-text {
    font-size: 0.98rem;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .album-card {
    flex: 0 0 220px;
  }

  .follow-wrap h2 {
    font-size: 1.8rem;
  }
}
.hero-video {
  position: relative;
  height: 75vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-left: 5%;
}

.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
}
.about-section {
  padding: 90px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 18px;
}

.about-text p {
  opacity: 0.85;
  margin-bottom: 16px;
  max-width: 100%;
  line-height: 1.7;
}

.about-image img {
  width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}
.contact-section {
  padding: 90px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info h2 {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.contact-info p {
  opacity: 0.85;
  margin-bottom: 14px;
  max-width: 520px;
  line-height: 1.7;
}

.contact-details {
  margin-top: 24px;
}

.contact-details p {
  margin-bottom: 12px;
}

.contact-details a {
  color: #ffffff;
  opacity: 0.9;
  text-decoration: none;
}

.contact-details a:hover {
  opacity: 1;
}

.contact-form-box {
  background: rgba(255,255,255,0.04);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  box-sizing: border-box;
}

.form-row {
  margin-bottom: 16px;
}

.contact-form-box form {
  width: 100%;
}

.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  color: #ffffff;
  font-size: 1rem;
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
}

.contact-form-box input::placeholder,
.contact-form-box textarea::placeholder {
  color: rgba(255,255,255,0.55);
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
  outline: none;
  border-color: rgba(255,255,255,0.3);
}

.contact-form-box textarea {
  resize: vertical;
}

.contact-form-box button {
  border: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-info p {
    max-width: 100%;
  }

  .contact-form-box {
    max-width: 100%;
    margin: 0 auto;
  }
}
.artist-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* Spotify Button */
.btn-spotify {
  background: #e11d48; /* strong red */
  color: #ffffff;
  padding: 13px 22px;
  border-radius: 4px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-spotify:hover {
  background: #be123c;
}
.spotify-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  padding: 40px 20px;
}

.spotify-modal-content {
  position: relative;
  max-width: 700px;
  margin: 60px auto;
  background: #111827;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
}

.spotify-close {
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 32px;
  color: #ffffff;
  cursor: pointer;
  line-height: 1;
}

.spotify-close:hover {
  opacity: 0.7;
}
.album-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.album-image-wrap img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.album-image-wrap:hover img {
  transform: scale(1.04);
  opacity: 0.45;
}

.album-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.55);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.album-image-wrap:hover .album-overlay {
  opacity: 1;
}

.stream-btn {
  display: inline-block;
  min-width: 150px;
  text-align: center;
  padding: 12px 18px;
  border-radius: 4px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.spotify-btn {
  background: #1db954;
}

.spotify-btn:hover {
  opacity: 0.9;
}

.apple-btn {
  background: #e11d48;
}

.apple-btn:hover {
  opacity: 0.9;
}
.premium-store {
  padding: 100px 0;
  background: #000000;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.bodega-store-shell {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: linear-gradient(135deg, rgba(225,29,72,0.14), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.bodega-store-content {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bodega-store-content h2 {
  font-size: 2.8rem;
  line-height: 1.1;
  margin-bottom: 18px;
  max-width: 560px;
}

.store-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.85;
  max-width: 560px;
  margin-bottom: 28px;
}

.bodega-store-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-store-premium {
  display: inline-block;
  background: #e11d48;
  color: #ffffff;
  padding: 13px 24px;
  border-radius: 4px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-store-premium:hover {
  background: #be123c;
}

.bodega-store-visual {
  min-height: 100%;
}

.bodega-store-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

/* Optional stronger text contrast */
.premium-store .eyebrow {
  color: rgba(255,255,255,0.75);
  letter-spacing: 2px;
  margin-bottom: 14px;
}
@media (max-width: 991px) {
  .bodega-store-shell {
    grid-template-columns: 1fr;
  }

  .bodega-store-content {
    padding: 40px 28px;
  }

  .bodega-store-content h2 {
    font-size: 2.2rem;
  }

  .bodega-store-visual img {
    min-height: 300px;
  }
}

@media (max-width: 575px) {
  .bodega-store-content h2 {
    font-size: 1.9rem;
  }

  .store-lead {
    font-size: 0.98rem;
  }
}
.merch-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0,0,0,0.86);
  padding: 40px 20px;
}

.merch-modal-content {
  position: relative;
  max-width: 1100px;
  margin: 40px auto;
  background: #0b0b0b;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}

.merch-modal-title {
  font-size: 2rem;
  margin-bottom: 24px;
}

.merch-close {
  position: absolute;
  top: 10px;
  right: 18px;
  font-size: 34px;
  color: #ffffff;
  cursor: pointer;
  line-height: 1;
}

.merch-close:hover {
  opacity: 0.7;
}

.merch-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.merch-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  width: 100%;
  padding-bottom: 10px;
}

.merch-carousel::-webkit-scrollbar {
  display: none;
}

.merch-card {
  flex: 0 0 260px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
}

.merch-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 14px;
}

.merch-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.merch-card p {
  opacity: 0.8;
  margin-bottom: 14px;
}

.merch-arrow {
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.merch-arrow:hover {
  background: rgba(255,255,255,0.18);
}

@media (max-width: 768px) {
  .header-wrap {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    padding: 12px 15px !important;
  }

  .logo {
    flex: 0 0 auto !important;
  }

  .logo img {
    height: 55px !important;
    width: auto !important;
  }

  .main-nav {
    position: static !important;
    transform: none !important;
    margin-left: auto !important;
  }

  .main-nav ul {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 8px !important;
    white-space: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .main-nav a {
    font-size: 0.72rem !important;
  }

  .about-wrap {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .about-text,
  .about-image {
    text-align: center !important;
  }

  .about-image img {
    margin: 0 auto !important;
    max-width: 100% !important;
  }

  .contact-wrap {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .contact-info p {
    max-width: 100% !important;
  }

  .contact-form-box {
    max-width: 100% !important;
    margin: 0 auto !important;
  }
}

/* MOBILE FIXES */
@media screen and (max-width: 768px) {

  .container {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    padding: 12px 15px;
  }

  .logo img {
    height: 55px;
    width: auto;
  }

  .main-nav {
    margin-left: auto;
  }

  .main-nav ul {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    flex-wrap: nowrap;
  }

  .main-nav a {
    font-size: 0.72rem;
    white-space: nowrap;
  }

  .about-wrap,
  .contact-wrap,
  .artist-grid,
  .bodega-store-shell {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .about-text,
  .contact-info,
  .artist-text,
  .bodega-store-content {
    text-align: center;
  }

  .about-image img,
  .artist-image img,
  .bodega-store-visual img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
  }

  .contact-form-box {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .contact-form-box input,
  .contact-form-box textarea {
    width: 100%;
    box-sizing: border-box;
  }

  .video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .carousel-track {
    display: flex;
    overflow-x: auto;
  }
}
/* HAMBURGER MENU */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  margin-left: auto;
  z-index: 1002;
  position: relative;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 5px auto;
  background: #ffffff;
  border-radius: 2px;
  transition: 0.3s ease;
}

@media (max-width: 768px) {
  .header-wrap {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    padding: 12px 15px !important;
  }

  .logo img {
    height: 58px !important;
    width: auto !important;
  }

  .menu-toggle {
    display: block !important;
  }

  .main-nav {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #c70014;
    border-top: 1px solid rgba(255,255,255,0.12);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding: 14px 0;
    margin-left: 0 !important;
    z-index: 1001;
  }

  .main-nav.active {
    display: block !important;
  }

  .main-nav ul {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0 !important;
    width: 100% !important;
    flex-wrap: nowrap !important;
  }

  .main-nav li {
    width: 100%;
  }

  .main-nav a {
    display: block !important;
    width: 100% !important;
    padding: 14px 20px !important;
    font-size: 0.95rem !important;
    white-space: normal !important;
  }

  .main-nav a:hover {
    background: rgba(255,255,255,0.08);
    opacity: 1;
  }
}