@import url('https://fonts.googleapis.com/css2?family=Audiowide&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quantico&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Michroma&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Dots&display=swap');

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Inter;
  }
  
  body{
  background:black;
  color:white;
  overflow-x:hidden;
  }
  /* =========================
   GLOBAL THEME FIX (CRITICAL)
========================= */

h1,h2,h3{
  font-family: "Montserrat", sans-serif;
  letter-spacing: 2px;
}

p{
  font-family: "Inter", sans-serif;
}

nav a, .btn, .card a, footer a{
  font-family: "Inter", sans-serif;
}

/* unify nav look everywhere */
nav a{
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 3px;
  transition: 0.3s ease;
}

nav a:hover{
  opacity: 1;
  transform: translateY(-2px);
}

/* force buttons identical everywhere */
.btn, .card a{
  font-weight: 600;
  letter-spacing: 2px;
  border-radius: 999px;
}
  /* VIDEO */
  #bg-video{
  position:fixed;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:-2;
  }
  
  .overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.65);
  z-index:-1;
  }
  
  /* INTRO */
  #intro{
  position:fixed;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background:black;
  z-index:999;
  }
  
  #intro h1{
  font-family: "Montserrat", sans-serif;
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 12px;
  text-transform: uppercase;
  color: white;
  opacity: 1;
  animation: introScroll 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
@keyframes introScroll{
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    text-shadow: 
      0 0 8px rgba(255, 255, 255, 0),
      0 0 16px rgba(100, 200, 255, 0),
      0 0 32px rgba(100, 200, 255, 0);
  }
  50% {
    opacity: 1;
    text-shadow: 
      0 0 8px rgba(255, 255, 255, 0.4),
      0 0 16px rgba(100, 200, 255, 0.3),
      0 0 32px rgba(100, 200, 255, 0.15);
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    text-shadow: 
      0 0 8px rgba(255, 255, 255, 0.6),
      0 0 16px rgba(100, 200, 255, 0.4),
      0 0 32px rgba(100, 200, 255, 0.25);
  }
}
@keyframes introGlow{

  from{
    opacity:0.85;
    text-shadow:
      0 0 10px rgba(255,255,255,0.15),
      0 0 20px rgba(255,255,255,0.08);
  }

  to{
    opacity:1;
    text-shadow:
      0 0 18px rgba(255,255,255,0.25),
      0 0 35px rgba(255,255,255,0.12);
  }

}
  
  /* HEADER */
  header{
  position:fixed;
  top:0;
  width:100%;
  display:flex;
  justify-content:space-between;
  padding:20px 50px;
  z-index:10;
  backdrop-filter:blur(10px);
  }
  
  .logo{
    font-family: "Audiowide", sans-serif;
    font-weight: 400;
    font-size: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    transition: 0.3s ease, text-shadow 0.3s ease;
  }
  .logo:hover{
    text-shadow:
      0 0 8px rgba(255,255,255,0.12),
      0 0 16px rgba(0,0,0,0.8),
      0 4px 18px rgba(0,0,0,0.45);
    transform: translateY(-2px) scale(1.02);
  }

  /* HAMBURGER MENU */
  .menu-toggle{
    display:none;
    width:44px;
    height:36px;
    background:transparent;
    border:none;
    cursor:pointer;
    align-items:center;
    justify-content:center;
    padding:6px;
  }

  .menu-toggle span{
    display:block;
    width:22px;
    height:2px;
    background:white;
    position:relative;
  }

  .menu-toggle span::before,
  .menu-toggle span::after{
    content:'';
    position:absolute;
    left:0;
    width:22px;
    height:2px;
    background:white;
    transition: transform 0.25s ease, top 0.25s ease, opacity 0.25s ease;
  }

  .menu-toggle span::before{ top:-7px }
  .menu-toggle span::after{ top:7px }

  /* Mobile: show toggle and hide nav by default */
  @media (max-width:900px){
    .menu-toggle{ display:flex }
    nav{ display:none }
    header.open nav{
      display:flex;
      position:absolute;
      top:64px;
      left:0;
      right:0;
      background:rgba(10,10,10,0.96);
      backdrop-filter: blur(8px);
      flex-direction:column;
      padding:18px 20px 28px;
      gap:12px;
      z-index:20;
    }

    header.open .menu-toggle span{ background:transparent }
    header.open .menu-toggle span::before{ transform: rotate(45deg) translate(4px, 4px); top:0 }
    header.open .menu-toggle span::after{ transform: rotate(-45deg) translate(4px,-4px); top:0 }
    nav a{ margin:0; padding:12px 8px; font-size:14px; opacity:0.95 }
  }

  .hero-content h1 {
    font-family: "Anta", sans-serif;
  }
  
  nav a{
  color:white;
  margin-left:20px;
  text-decoration:none;
  font-size:11px;
  letter-spacing:3px;
  opacity:0.7;
  transition:0.3s ease;
  }
  
  nav a:hover{
  opacity:1;
  transform:translateY(-2px);
  }
  
  /* HERO */
  .hero{
  height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  }
  
  .hero h1{
  font-size:88px;
  font-family:"Zen Dots", cursive;
  }
  
  .hero p{
  opacity:0.7;
  margin-top:10px;
  font-family:"Michroma", sans-serif;
  text-transform: uppercase;
  }
  
  /* GRID */
  .grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
  padding:100px;
  }
  
  .card{
  background:rgba(255,255,255,0.05);
  border-radius:18px;
  overflow:hidden;
  padding:20px;
  transition:0.4s ease;
  }
  
  .card:hover{
  transform:translateY(-12px) scale(1.02);
  background:rgba(255,255,255,0.08);
  }
  
  .card img{
  width:100%;
  border-radius:12px;
  transition:0.4s ease;
  }
  
  .card:hover img{
  transform:scale(1.06);
  }
  
  .card h3{
  margin-top:15px;
  }
  
  .card p{
  opacity:0.7;
  font-size:13px;
  margin-top:5px;
  }
  
  .card a{
  display:inline-block;
  margin-top:15px;
  padding:10px 18px;
  background:white;
  color:black;
  text-decoration:none;
  border-radius:999px;
  font-size:11px;
  font-weight:600;
  letter-spacing:2px;
  transition:0.3s ease;
}
  
  .card a:hover{
  transform:scale(1.05);
  }
  
  /* MERCH */
  .merch{
  text-align:center;
  padding:100px;
  }

  .merch h2{
  font-size:2.4rem;
  letter-spacing:2px;
  margin-bottom:20px;
  }
  
  .btn{
  display:inline-block;
  margin-top:18px;
  padding:16px 30px;
  background:white;
  color:black;
  text-decoration:none;
  border-radius:999px;
  font-size:15px;
  font-weight:700;
  letter-spacing:2px;
  transition:0.3s ease;
}
  
  .btn:hover{
  transform:scale(1.05);
  }
  
  /* SPOTIFY */
  section.spotify{
  padding:80px;
  }

  .spotify iframe{
    border:none;
    min-height:352px;
  }
  
  /* ABOUT PAGE */
  .page{
  padding:120px 40px;
  display:flex;
  justify-content:center;
  }
  
  .box{
  max-width:1000px;
  width:min(100%,1000px);
  padding:42px 36px;
  background:rgba(255,255,255,0.03);
  border-radius:16px;
  border:1px solid rgba(255,255,255,0.06);
  box-shadow:0 10px 30px rgba(0,0,0,0.12);
  backdrop-filter:blur(6px);
  }

  .media-page .box{
    max-width:980px;
    padding:20px 20px 0;
    background:transparent;
    border:none;
    backdrop-filter:none;
  }

  .media-page .box h2{
    font-size:4rem;
    letter-spacing:10px;
    margin:0 auto 16px;
    text-align:center;
  }

  .media-page .box p{
    max-width:780px;
    margin:0 auto 36px;
    text-align:center;
    font-size:1.1rem;
    opacity:0.85;
  }

  .media-page .video-embed{
    max-width:980px;
    margin:48px auto;
    border-radius:24px;
    overflow:hidden;
    transition: transform 0.4s ease, opacity 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
    opacity:0.5;
    transform:scale(0.96);
    filter:grayscale(0.25) blur(0.05rem);
  }

  .media-page .video-embed.active{
    opacity:1;
    transform:scale(1);
    filter:none;
    box-shadow:0 30px 80px rgba(0,0,0,0.35);
  }

  .media-page .video-embed iframe{
    width:100%;
    height:520px;
    border:none;
  }

  .media-page .grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:32px;
    margin:32px auto 72px;
    padding:0 20px;
    width:min(100%,1200px);
  }

  .media-page .card{
    padding:26px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.12);
    border-radius:24px;
    box-shadow:0 20px 45px rgba(0,0,0,0.18);
    transition:transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
  }

  .media-page .card:hover{
    transform: translateY(-8px);
    background:rgba(255,255,255,0.08);
    border-color:rgba(255,255,255,0.18);
  }

  .media-page .card img{
    border-radius:18px;
    margin-bottom:20px;
  }

  .media-page .card-top{
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:18px;
  }

  .media-page .card-icon{
    width:44px;
    height:44px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,0.12);
    font-size:20px;
  }

  .media-page .card h3{
    margin:0;
    font-size:1.1rem;
    letter-spacing:2px;
  }

  .media-page .card p{
    margin:0 0 22px;
    color:rgba(255,255,255,0.78);
    line-height:1.7;
  }

  .media-page .card a{
    padding:12px 18px;
    font-size:12px;
    letter-spacing:2px;
  }

  @media(max-width:900px){
    .media-page .video-embed iframe{
      height:420px;
    }
  }

  @media(max-width:600px){
    .media-page .box h2{
      font-size:3rem;
    }
    .media-page .video-embed iframe{
      height:300px;
    }
  }
  
  /* PRESS */
  .press{
  padding:80px;
  }
  
  .grid-press{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
  }
  
  .press-card{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:0 10px 24px rgba(0,0,0,0.10);
  padding:30px;
  border-radius:22px;
  transition:transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
  }
  
  .press-card:hover{
  transform:translateY(-10px);
  background:rgba(255,255,255,0.10);
  border-color:rgba(255,255,255,0.16);
  }
  
  .press-card a{
  display:inline-block;
  margin-top:15px;
  color:white;
  opacity:0.8;
  }

  /* SCROLL FADE EFFECT */
  .scroll-fade {
    transition: transform 0.4s ease, opacity 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
    opacity: 0.5;
    transform: scale(0.96);
    filter: grayscale(0.25) blur(0.05rem);
  }

  .scroll-fade.active {
    opacity: 1;
    transform: scale(1);
    filter: none;
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
  }

  /* CONTACT FORM */
  .contact-intro {
    margin-bottom: 36px;
    font-size: 1.1rem;
  }

  .contact-intro strong {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
    font-family: "Inter", sans-serif;
  }

  .contact-form {
    max-width: 600px;
    margin: 0 auto;
  }

  .form-group {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
  }

  .form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    font-family: sans-serif;
  }

  .form-group input,
  .form-group textarea {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: white;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
  }

  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
  }

  .form-group textarea {
    resize: vertical;
    min-height: 120px;
  }

  .contact-form .btn {
    width: 100%;
    padding: 16px 24px;
    margin-top: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
  }

  .contact-form .btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
  }

  .contact-form .btn:active {
    transform: translateY(0);
  }
  
  /* FOOTER */
  footer{
  display:flex;
  justify-content:center;
  gap:20px;
  padding:50px;
  }
  
  footer a{
  color:white;
  opacity:0.6;
  text-decoration:none;
  font-size:12px;
  }
  
  /* RESPONSIVE: General adjustments for smaller screens */
  @media (max-width:1200px) {
    header{
      padding:16px 36px;
    }

    .logo{
      font-size:20px;
    }

    .hero-content h1{
      font-size:56px;
    }
  }

  @media (max-width:900px) {
    header{
      padding:14px 28px;
    }

    nav{
      gap:14px;
      flex-wrap:wrap;
    }

    .hero-content h1{
      font-size:44px;
      letter-spacing:8px;
    }

    .hero-content p{
      font-size:12px;
      letter-spacing:2px;
    }

    .grid{
      grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
      gap:20px;
      padding:0 16px;
    }

    .box{
      padding:36px 28px;
    }

    .press{
      padding:40px 16px;
    }

    .media-page .video-embed iframe{
      height:420px;
    }

    .social-footer{
      flex-wrap:wrap;
      gap:18px;
      padding:40px 20px;
    }

  }

  @media (max-width:600px) {
    /* Video plays on mobile with responsive object-fit */
    #bg-video{
      object-fit:cover;
    }

    .overlay{
      position:fixed;
      inset:0;
      background:rgba(0,0,0,0.65);
      z-index:-1;
    }

    header{
      padding:12px 18px;
    }

    nav{
      gap:12px;
      font-size:12px;
    }

    .hero-content h1{
      font-size:36px;
      letter-spacing:6px;
    }

    .hero-content p{
      font-size:11px;
    }

    .grid{
      grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
      gap:18px;
      padding:0 12px;
    }

    .card, .press-card, .media-page .card{
      padding:18px;
      border-radius:14px;
    }

    .box{
      padding:28px 20px;
    }

    .contact-form .btn{
      padding:14px 18px;
    }

    .social-footer{
      gap:16px;
    }

    .social-footer a{
      width:44px;
      height:44px;
    }

    .merch h2{
      font-size:1.6rem;
      letter-spacing:1px;
    }

    /* Make all images and iframes fully responsive */
    img{max-width:100%;height:auto;display:block;}
    iframe{max-width:100%;}

  }

  /* SWIPE CAROUSEL (mobile-only) */
  @media (max-width:600px) {
    .swipeable{
      display:flex !important;
      flex-direction:row !important;
      align-items:stretch;
      gap:18px;
      overflow-x:auto;
      scroll-snap-type:x mandatory;
      -webkit-overflow-scrolling:touch;
      padding:12px 8px;
      scroll-padding:16px;
      will-change: scroll-position;
      position:relative;
      -ms-overflow-style:none;
      scrollbar-width:none;
    }

    .swipeable > *{
      flex:0 0 92%;
      max-width:92%;
      scroll-snap-align:center;
      border-radius:14px;
      transition: transform 0.36s cubic-bezier(.2,.9,.2,1), box-shadow 0.36s ease;
      transform-origin:center center;
      display:flex;
      flex-direction:column;
      align-items:stretch;
      box-sizing:border-box;
      aspect-ratio: auto;
      overflow:visible;
      min-height:auto;
    }

    /* focused (center) card pop effect */
    .swipeable > *.focused{
      transform: translateY(-6px) scale(1.03);
      box-shadow:0 12px 30px rgba(0,0,0,0.12);
      z-index:6;
    }

    .swipeable > *:not(.dragging){
      opacity:0.98;
      transform: translateY(0) scale(0.995);
    }

    .swipeable .card, .swipeable .press-card{
      background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
      border:1px solid rgba(255,255,255,0.06);
      box-shadow:none;
    }

    .swipe-dots{
      display:flex;
      gap:8px;
      justify-content:center;
      margin:12px 0 28px;
    }

    .swipe-dot{
      width:8px;height:8px;border-radius:50%;background:rgba(255,255,255,0.25);border:none;cursor:pointer;padding:0;
      transition:transform 0.24s ease, background 0.24s ease;
    }

    .swipe-dot.active{ background:white; transform:scale(1.4) }

    .swipeable::-webkit-scrollbar{ display:none }

    /* Make sure images and content inside swipe cards can expand and not be clipped on small screens */
    .swipeable .card img, .swipeable .press-card img{ height:auto; max-height:48vh; object-fit:cover; display:block; }
    .media-page .swipeable > *, .grid-press.swipeable > *{ flex:0 0 94%; max-width:94%; }
    .swipeable .card p, .swipeable .press-card h3{ -webkit-line-clamp:unset; overflow:visible; white-space:normal; }

    /* subtle left/right gradients to indicate more content */
    .swipeable::before, .swipeable::after{
      content:'';position:absolute;pointer-events:none;top:0;bottom:0;width:48px;z-index:5;
      transition:opacity 0.3s ease;opacity:0;
    }

    .swipeable::before{ left:0;background:linear-gradient(90deg, rgba(0,0,0,0.45), rgba(0,0,0,0)); }
    .swipeable::after{ right:0;background:linear-gradient(270deg, rgba(0,0,0,0.45), rgba(0,0,0,0)); }

    .swipeable:hover::before, .swipeable:hover::after{ opacity:1 }
  }

  /* Arrow controls for carousel (tablet/desktop) */
  .swipe-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:44px;height:44px;border-radius:999px;border:none;background:rgba(0,0,0,0.45);
    color:white;display:flex;align-items:center;justify-content:center;cursor:pointer;z-index:12;
    transition:background 0.2s ease, transform 0.18s ease;
  }
  .swipe-arrow:hover{ background:rgba(0,0,0,0.6); transform:translateY(-50%) scale(1.04) }
  .swipe-prev{ left:8px }
  .swipe-next{ right:8px }

  @media (max-width:600px){
    .swipe-arrow{ display:none }
  }

  /* Extra small devices: tighten spacing */
  @media (max-width:420px) {
    header{padding:10px 14px}
    .hero-content h1{font-size:30px}
    .hero-content p{font-size:10px}
    .box{padding:20px}
  }

  /* END RESPONSIVE */

  /* ABOUT PAGE: remove boxed panel to blend with site */
  .about-page .page{
    padding: 120px 24px;
    display:flex;
    justify-content:center;
  }

  .about-page .box{
    max-width: 900px;
    width: min(100%, 900px);
    padding: 18px 12px;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
  }

  .about-page .box h2{
    margin-bottom: 8px;
    font-size: 1.8rem;
    letter-spacing: 1px;
  }

  .about-page .box p{
    color: rgba(255,255,255,0.9);
    line-height:1.8;
  }

  .about-page .press-card{
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: none;
    padding: 24px;
    box-sizing: border-box;
  }

  .about-page .press-card a{
    color: white;
    opacity: 0.9;
  }

  .about-page .press-card h3{
    font-size: 1rem;
    line-height: 1.4;
    overflow-wrap: anywhere;
    word-break: break-word;
    margin-bottom: 18px;
  }

  .about-page .press-card{
    min-height: auto;
  }

.box p{
  line-height: 1.8;
  opacity: 0.9;
  color: rgba(255,255,255,0.92);
}
header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display:flex;
  justify-content:space-between;
  padding:20px 50px;
  z-index:10;
  backdrop-filter: blur(12px);
}
/* =========================
   PRESS SECTION
========================= */

.press{
  padding: 80px;
}

.section-title{
  text-align:center;
  margin-bottom:40px;
}

.section-title h2{
  font-size:14px;
  letter-spacing:5px;
}

.grid-press{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.press-card{
  background:rgba(10,10,10,0.88);
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:0 18px 40px rgba(0,0,0,0.28);
  border-radius:22px;
  padding:35px;
  transition:transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.press-card:hover{
  transform:translateY(-10px);
  background:rgba(255,255,255,0.08);
  border-color:rgba(255,255,255,0.14);
}

.press-card h3{
  line-height:1.7;
  font-size:20px;
}

.press-card .btn{
  margin-top:20px;
}

/* MOBILE */
@media(max-width:900px){

  .grid-press{
    grid-template-columns:1fr;
  }

  .press{
    padding:40px 20px 100px;
  }

}
/* FORCE ARTICLE BUTTON TEXT */
.press-card .btn{
  color:black !important;
}

.press-card .btn:hover{
  color:black !important;
}


/* =========================
   PRO ICON FOOTER (SPOTIFY STYLE)
========================= */

.social-footer{
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:28px;
  padding:50px 20px;
}

/* ICON LINKS */
.social-footer a{
  width:52px;
  height:52px;
  display:flex;
  justify-content:center;
  align-items:center;
  border-radius:50%;
  background:rgba(255,255,255,0.06);
  backdrop-filter:blur(10px);
  transition:0.3s ease;
  text-decoration:none;
}

/* ICONS */
.social-footer a img{
  width:22px;
  height:22px;
  filter:invert(1);
  opacity:0.8;
  transition:0.3s ease;
}

/* HOVER BASE */


/* ICON HOVER COLORS */

/* Instagram */
.instagram:hover{
  background:#ff4fd8;
  box-shadow:0 0 18px #ff4fd8;
}

/* TikTok */
.tiktok:hover{
  background:#00f2ea;
  box-shadow:0 0 18px #00f2ea;
}

/* Facebook */
.facebook:hover{
  background:#1877f2;
  box-shadow:0 0 18px #1877f2;
}

/* X */
.x:hover{
  background:white;
  box-shadow:0 0 18px white;
}
.x:hover img{
  filter:invert(0);
}

/* Apple Music */
.apple:hover{
  background:#ff375f;
  box-shadow:0 0 18px #ff375f;
}

/* Spotify */
.social-footer .spotify:hover{
  background:#1db954;
  box-shadow:0 0 18px #1db954;
}

/* YouTube */
.youtube:hover{
  background:#ff0000;
  box-shadow:0 0 18px #ff0000;
}

/* SoundCloud */
.soundcloud:hover{
  background:#ff7700;
  box-shadow:0 0 18px #ff7700;
}

/* MOBILE */
@media(max-width:600px){
  .social-footer{
    gap:16px;
    flex-wrap:wrap;
  }

  .social-footer a{
    width:44px;
    height:44px;
  }

  .contact-form {
    max-width: 100%;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 16px;
  }

  .contact-form .btn {
    padding: 14px 20px;
  }
}

/* MOBILE */
@media(max-width:900px){

  .social-footer{
    flex-wrap:wrap;
    gap:18px;
    padding:40px 20px;
  }

  .social-footer a{
    font-size:11px;
  }

}

/* ABOUT PAGE OVERRIDES: prevent dark swipe overlays and hover darkening */
.about-page .swipeable::before,
.about-page .swipeable::after{
  background: none !important;
  opacity: 0 !important;
}
.about-page .swipeable:hover::before,
.about-page .swipeable:hover::after{
  opacity: 0 !important;
}
.about-page .press-card:hover{
  /* Keep the expand/translate hover effect but avoid dark overlays or heavy shadows */
  transform: translateY(-10px) !important;
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(255,255,255,0.12) !important;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06) !important;
}

/* MEDIA PAGE — Mobile only: hide images and make cards square like About */
@media (max-width: 600px) {
  /* remove swipe overlay gradients on media page (mobile) */
  .media-page .swipeable::before,
  .media-page .swipeable::after{
    background: none !important;
    opacity: 0 !important;
  }

  .media-page .card img,
  .media-page .card picture,
  .media-page .card .card-top img{
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
  }

  .media-page .grid{
    grid-template-columns: 1fr;
    gap:18px;
    padding: 18px;
  }

  .media-page .card{
    aspect-ratio: 1 / 1;
    width: 94%;
    max-width: 94%;
    margin: 0 auto;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    align-items:stretch;
    padding:22px;
    box-sizing:border-box;
    border-radius:22px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: none;
    overflow: hidden;
    min-height: 340px;
  }

  .media-page .card h3{
    font-size:1.05rem;
    line-height:1.25;
    margin:0 0 10px 0;
    overflow-wrap:anywhere;
    word-break:break-word;
  }

  .media-page .card p{
    font-size:0.95rem;
    line-height:1.3;
    margin:0 0 12px 0;
    color:rgba(255,255,255,0.88);
  }

  .media-page .card a{
    margin-top:auto;
    align-self:center;
    display:inline-block;
    padding:12px 20px;
    border-radius:999px;
    background:rgba(255,255,255,0.92);
    color:black;
    text-decoration:none;
    font-weight:700;
    letter-spacing:2px;
  }
}
