/* ============================================
   RushTix — Clean Static Site Styles
   ============================================ */

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

body {
  font-family: 'Poppins', sans-serif;
  background: #000;
  color: #fff;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #fff;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* ---- Header ---- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner {
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.logo-link img {
  width: 45px;
  height: 45px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
}

/* ---- Hero ---- */

.hero {
  padding: 25vh 24px 10vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  background: url('https://img.rushtix.com/images/homepage/rushtix-hero-v3.png') center center / cover no-repeat;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05), #160020);
  filter: blur(50px);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-left: 50px;
  padding-bottom: 80px;
  text-align: left;
}

.hero-logo {
  max-width: 300px;
  width: 100%;
  margin-bottom: 24px;
}

.outlined-text {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  -webkit-text-stroke: 1.5px #ed0981;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.hero-bottom {
  position: absolute;
  bottom: 24px;
  left: 50px;
  z-index: 1;
}

.hero-tagline {
  font-size: 30px;
  font-weight: 600;
  color: #fff;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 230px;
  height: 70px;
  padding: 12px 25px;
  border-radius: 7px;
  background: linear-gradient(90deg, rgba(237, 17, 125, 1) 0%, rgba(244, 125, 32, 1) 45%, rgba(244, 125, 32, 1) 55%, rgba(237, 17, 125, 1) 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s, letter-spacing 0.3s;
  box-shadow: 0 0 15px 0 rgba(72, 73, 121, 0.15);
}

.btn-primary:hover {
  opacity: 0.8;
  letter-spacing: 2px;
}

/* ---- Slider ---- */

.slider-section {
  padding: 40px 0;
  margin-top: -60px;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.slider-wrapper {
  display: flex;
  align-items: center;
  gap: 0;
}

.slider-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  opacity: 0.6;
  transition: opacity 0.3s;
  flex-shrink: 0;
}

.slider-btn:hover {
  opacity: 1;
}

.slider-prev img {
  transform: rotate(180deg);
}

.slider-track {
  display: flex;
  gap: 5px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
}

.slider-track::-webkit-scrollbar {
  display: none;
}

.slide {
  flex-shrink: 0;
  width: 15.5vw;
  text-align: center;
}

.slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 3px;
  display: block;
}

.slide span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
}

/* ---- Features ---- */

.features {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.features-layout {
  display: flex;
  gap: 48px;
  align-items: center;
}

.roscoe-intro {
  flex: 0 0 280px;
  text-align: center;
}

.roscoe-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid #F04E5E;
  object-fit: cover;
  margin-bottom: 20px;
}

.roscoe-intro p {
  font-size: 16px;
  line-height: 1.6;
  color: #c9c3c9;
  font-style: italic;
  margin-bottom: 12px;
}

.roscoe-name {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  flex: 1;
}

.feature-card {
  background: #3c0e56;
  text-align: center;
  padding: 60px 25px;
  border-radius: 8px;
}

.feature-card:nth-child(2) {
  background: rgba(60, 14, 86, 0.83);
}

.feature-card img {
  width: 200px;
  height: auto;
  margin-bottom: 24px;
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 19px;
  line-height: 1.6;
  color: #c9c3c9;
}

/* ---- Media / As Seen In ---- */

.media-section {
  padding: 80px 24px;
  text-align: center;
  background: radial-gradient(ellipse at center, rgba(60, 14, 86, 0.4) 0%, transparent 70%);
}

.media-section h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 48px;
}

.media-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.media-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.05);
  border-top: 4px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  width: 250px;
  transition: background 0.3s;
}

.media-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.media-card img {
  height: 34px;
  width: auto;
  opacity: 0.9;
}

.media-card span {
  font-size: 14px;
  color: #ede7e7;
  line-height: 1.5;
}

/* ---- Footer ---- */

.site-footer {
  padding: 60px 24px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
  text-align: center;
  margin-bottom: 40px;
}

.footer-brand img {
  width: 130px;
  height: auto;
  margin-bottom: 8px;
}

.tagline {
  font-size: 1.1rem;
  font-weight: 300;
  opacity: 0.8;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 14px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.footer-col a:hover {
  opacity: 1;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  opacity: 0.7;
  transition: opacity 0.3s;
}

.social-links a:hover {
  opacity: 1;
}

.social-links img {
  filter: invert(1);
}

.copyright {
  text-align: center;
  font-size: 13px;
  opacity: 0.5;
  letter-spacing: 1px;
}

/* ---- Help Button ---- */

#helpBtn {
  position: fixed;
  top: 75%;
  left: -1px;
  z-index: 999;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  background: #e8e8e8;
  color: #484848;
  border: 1px solid #fff;
  border-radius: 0 10px 10px 0;
  padding: 5px 3px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
}

#helpBtn:hover {
  background: linear-gradient(to left, rgba(244, 117, 33, 1) 0%, rgba(237, 11, 128, 1) 100%);
  color: #fff;
}

/* ---- Scroll to Top ---- */

.scroll-top {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  transition: background 0.3s;
}

.scroll-top:hover {
  background: rgba(255, 255, 255, 0.2);
}


/* ---- Responsive ---- */

@media (max-width: 1000px) {
  .slide {
    width: 25vw;
  }
}

@media (max-width: 768px) {
  .features-layout {
    flex-direction: column;
  }

  .roscoe-intro {
    flex: none;
    width: 100%;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .media-grid {
    flex-direction: column;
    align-items: center;
  }

  .media-card {
    width: 100%;
    max-width: 300px;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
  }

  .outlined-text {
    font-size: 20px;
  }

  .hero {
    padding: 15vh 24px 8vh;
    align-items: center;
    justify-content: center;
  }

  .hero-content {
    padding-left: 24px;
    padding-right: 24px;
    text-align: center;
  }

  .hero-logo {
    max-width: 200px;
  }

  .hero-bottom {
    left: 50%;
    transform: translateX(-50%);
    bottom: 15px;
    white-space: nowrap;
  }

  .hero-tagline {
    font-size: 16px;
  }

  .slider-btn {
    display: none;
  }

  .slide {
    width: 50%;
  }

  .slide img {
    height: 160px;
  }
}
