
/* Global Reset & Fonts */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #000;
  color: #f0f0f0;
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  display: block;
}

/* Language switcher (top of hero) */
.hero {
  position: relative;
}

.lang-switch {
  position: absolute;
  top: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.18);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lang-link {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  opacity: 0.86;
  text-decoration: none;
}

.lang-link:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lang-link.is-active {
  opacity: 1;
  color: #c27eff;
  text-decoration: none;
}

.lang-dot {
  color: rgba(255,255,255,0.45);
}

@media (max-width: 768px) {
  .lang-switch {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    top: 14px;
  }
}


/* Hero Section */
.hero {
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  text-align: center;
  min-height: 700px;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo {
  width: 300px;
  max-width: 90%;
  margin: 0 auto 20px;
}

@media (min-width: 768px) {
  .logo {
    width: 500px;
  }
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.sub {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #ccc;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.store-btn {
  background-color: #c27eff;
  color: #000;
  padding: 12px 24px;
  border-radius: 40px;
  font-weight: 600;
}

/* Features Section */
.features {
  background: #000;
  border-radius: 28px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.28);
  padding: 54px 32px 40px 32px;
  max-width: 960px;
  margin: 40px auto 56px auto; /* changed from -80px to 40px */
  position: relative;
  z-index: 2;
  text-align: center;
}


.features h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.feature {
  max-width: 250px;
  text-align: center;
}


.feature img {
  margin: 0 auto 15px;
  width: 60px;
  display: block;
}

.feature h3 {
  margin-top: 15px;
  color: #fff;
}

/* Featured Setlists Section */
.featured-setlists {
  padding: 60px 20px;
  background: #111;
  display: flex;
  justify-content: center;
}

.featured-content {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.featured-image {
  flex: 1 1 300px;
  max-width: 400px;
}

.featured-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.featured-text {
  flex: 1 1 300px;
  max-width: 600px;
  color: #f0f0f0;
}

.featured-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.featured-text p {
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.5;
}

.submit-btn {
  display: inline-block;
  background-color: #c27eff;
  color: #000;
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: bold;
  font-size: 1.1rem;
  margin-top: 16px;
}

/* Screenshots Section */
.screenshots {
  padding: 60px 20px;
  text-align: center;
}

.screenshot-grid {
  display: flex;
  gap: 20px;
  margin-top: 30px;

  /* Always horizontal scroll */
  overflow-x: auto;
  overflow-y: hidden;
  flex-wrap: nowrap;
  justify-content: flex-start;

  /* Smooth scrolling on iOS */
  -webkit-overflow-scrolling: touch;

  /* Nice snapping per screenshot */
  scroll-snap-type: x mandatory;

  /* A little breathing room at the ends */
  padding: 8px 10px 14px;
}

.screenshot-grid img {
  flex: 0 0 auto;

  /* Card sizing */
  width: 280px;
  max-width: 80vw;
  height: auto;

  border-radius: 16px;
  scroll-snap-align: center;

  /* Optional: make them feel a bit more like cards */
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

/* Optional: hide scrollbar but keep scrolling */
.screenshot-grid::-webkit-scrollbar {
  height: 10px;
}
.screenshot-grid::-webkit-scrollbar-thumb {
  background: #222;
  border-radius: 10px;
}
.screenshot-grid::-webkit-scrollbar-track {
  background: transparent;
}
.screenshot-grid {
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 24px, black calc(100% - 24px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, black 24px, black calc(100% - 24px), transparent 100%);
}


/* About */
.about {
  padding: 60px 20px;
  background-color: #0d0d0d;
  text-align: center;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

/* Footer */
footer {
  background: #000;
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid #333;
}

.footer-links {
  margin-bottom: 20px;
}



.footer-links {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-cta {
  font-size: 1.4rem;
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}


.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.social-icons img {
  width: 32px;
  height: 32px;
  opacity: 0.9; /* optional, tweak if needed */
  transition: 0.3s;
}


.social-icons img:hover {
  opacity: 1;
}



/* Mobile */
@media (max-width: 768px) {
  .features {
    padding: 32px 8px 24px 8px;
    margin: -36px 12px 28px 12px;
    border-radius: 16px;
  }

  .featured-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .featured-image img {
    width: 100%;
    max-width: 480px;
  }

  .screenshots {
    padding-top: 16px !important;
  }

  .screenshot-grid {
    margin-top: 12px !important;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .cta-buttons,
  .artist-card {
    flex-direction: column;
  }
}

.app-store-badge {
  height: 60px;
  width: auto;
  display: inline-block;
}

@media (min-width: 768px) {
  .app-store-badge {
    height: 80px;
  }
}

.about-text {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: left;
}

.support-page .hero {
  min-height: auto;
  padding: 20px 20px 10px 20px; /* top, right, bottom, left */
}

.support-page .features {
  margin: 20px auto 40px auto; /* top, sides, bottom */
}

.support-page .feature h3 {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.support-page .feature p,
.support-page .feature ul,
.support-page .feature li {
  color: #cccccc;
  font-size: 1rem;
  line-height: 1.6;
}

.support-page .about p {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .support-page .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .support-page .store-btn {
    width: auto;
    min-width: 200px;
    max-width: 90%;
    text-align: center;
  }
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}

.faq-question {
  background: none;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 16px;
  width: 100%;
  text-align: left;
  border: 1px solid #333;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background-color: #111;
}

.faq-answer {
  background-color: #0a0a0a;
  color: #ccc;
  padding: 16px;
  margin-top: -10px;
  border: 1px solid #333;
  border-top: none;
  border-radius: 0 0 12px 12px;
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.faq-answer p,
.faq-answer ul,
.faq-answer li {
  margin-bottom: 10px;
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.5;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 768px) {
  .featured-text {
    text-align: left !important;
  }
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

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

.about-image {
  flex: 1 1 320px;
  max-width: 400px;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: left;
    gap: 24px;
  }
  .about-image img {
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (min-width: 769px) {
  .about-image {
    max-width: 600px;
  }
  .about-image img {
    max-width: 600px;
  }
}

.social-grid-3over2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 36px;
  justify-items: center;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}

.social-grid-3over2 > a {
  grid-row: 1;
}
.social-grid-3over2 > a:nth-child(1) { grid-column: 1; }
.social-grid-3over2 > a:nth-child(2) { grid-column: 2; }
.social-grid-3over2 > a:nth-child(3) { grid-column: 3; }

/* Centered bottom row */
.social-grid-3over2 .bottom-row {
  grid-row: 2;
  grid-column: 1 / span 3;
  display: flex;
  justify-content: center;
  gap: 36px;
}

.social-grid-3over2 img {
  width: 108px;
  height: 108px;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(194,126,255,0.16);
  opacity: 0.98;
  background: #181018;
  transition: 0.3s;
}

.social-grid-3over2 img:hover {
  opacity: 1;
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 12px 48px rgba(194,126,255,0.30);
}

/* --- MOBILE FIX: 2x2 grid, then last row centered --- */
@media (max-width: 700px) {
  .social-grid-3over2 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 20px 16px;
    max-width: 98vw;
  }

  .social-grid-3over2 > a {
    grid-row: auto;
    grid-column: auto;
  }

  .social-grid-3over2 > a:nth-child(1) { grid-row: 1; grid-column: 1; }
  .social-grid-3over2 > a:nth-child(2) { grid-row: 1; grid-column: 2; }
  .social-grid-3over2 > a:nth-child(3) { grid-row: 2; grid-column: 1; }

  .social-grid-3over2 .bottom-row {
    grid-row: 2;
    grid-column: 2;
    display: flex;
    justify-content: center;
    gap: 16px;
  }
}


  /* Venue Ideas form styling */
.venue-form .form-group {
  margin-bottom: 16px;
  text-align: left;
}

.venue-form label {
  display: block;
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #f0f0f0;
}

.venue-form input,
.venue-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #333;
  background-color: #050505;
  color: #f0f0f0;
  font-size: 0.98rem;
  font-family: 'Inter', sans-serif;
}

.venue-form input::placeholder,
.venue-form textarea::placeholder {
  color: #777;
}

.venue-form textarea {
  resize: vertical;
  min-height: 90px;
}

.venue-form input:focus,
.venue-form textarea:focus {
  outline: none;
  border-color: #c27eff;
}

/* Featured Artist form: builds on venue-form styles */
.featured-form .field-hint {
  display: block;
  margin-top: 6px;
  font-size: 0.92rem;
  color: #9a9a9a;
}

.featured-form input,
.featured-form textarea {
  border-color: #2a2233;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.06s ease;
}

.featured-form input:hover,
.featured-form textarea:hover {
  border-color: #3a2b4a;
}

.featured-form input:focus,
.featured-form textarea:focus {
  border-color: #c27eff;
  box-shadow: 0 0 0 4px rgba(194,126,255,0.16);
}

.featured-form textarea {
  min-height: 110px;
}


/* Newsletter section under Featured Setlists */
.newsletter {
  background: #000;            /* matches your main page background */
  padding: 60px 20px;          /* same feel as screenshots/about sections */
}

.newsletter-inner {
  max-width: 1000px;           /* aligns with your featured-content max */
  margin: 0 auto;
  display: flex;
  justify-content: center;     /* centers the card */
}

.newsletter-card {
  width: 100%;
  max-width: 960px;            /* matches your features card width */
  padding: 32px 28px;
  border-radius: 20px;
  border: 1px solid #333;
  background: #070707;
  box-shadow: 0 10px 40px rgba(0,0,0,0.35);
}

/* If MailerLite adds extra top margin inside, this helps normalize */
.newsletter-card .ml-embedded {
  margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .newsletter {
    padding: 40px 14px;
  }

  .newsletter-card {
    padding: 22px 16px;
    border-radius: 16px;
  }
}
.newsletter-card .ml-embedded > *:first-child {
  margin-top: 0 !important;
}

.newsletter-card .ml-embedded *:last-child {
  margin-bottom: 0 !important;
}
.newsletter-title {
  margin: 0 0 8px;
  text-align: center;
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: 1.6rem;
  color: #fff;
}

.newsletter-sub {
  margin: 0 auto 16px;
  text-align: center;
  max-width: 720px;
  color: #ddd;
  opacity: 0.95;
  line-height: 1.55;
  font-size: 1rem;
}
