/* ============================================
   BALLOON STYLES TEMPLATE
============================================ */

/* === HERO GRID === */
.hero-case {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: stretch;
  width: 100%;
  max-width: 1400px;
  margin: 100px auto 0;
  column-gap: 60px;
  row-gap: 0;
  padding: 0 30px;
  box-sizing: border-box;
}

/* === HERO IMAGES COLUMN === */
.hero-images {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: flex-start;
}

.hero-images img.hero-main {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border: none;
}

/* === SCROLLABLE GALLERY BELOW HERO === */
.scroll-gallery {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 14px;
}

/* ONE SLIDE PER VIEW USING CSS GRID */
.scroll-gallery .gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
}

.scroll-gallery .gallery-track img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border: none;
  display: block;
}

/* === SCROLL ARROWS === */
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #3F4144;
  color: #f7f5f3;
  border: none;
  font-size: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  transition: background 0.3s ease, transform 0.2s ease, color 0.3s ease;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
}

.scroll-btn:hover,
.scroll-btn:focus {
  background: #A3A19D !important;
  color: #fff !important;
  transform: translateY(-50%) scale(1.08);
  outline: none;
}

.scroll-btn.left {
  left: 14px;
}

.scroll-btn.right {
  right: 14px;
}

/* === HERO TEXT COLUMN === */
.hero-text {
  grid-column: 2;
  background: #f7f5f3;
  display: flex;
  flex-direction: column;
}

/* === HERO LABEL === */
.hero-label {
  display: block;
  background: #F7F5F3;
  color: #A3A19D;
  font-family: 'Stack Sans Headline', sans-serif;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.8px;
  padding: 22px 26px 0;
  margin: 0;
  text-decoration: none !important;
}

.hero-label:hover {
  color: #A3A19D;
}

/* === HERO TITLE === */
.hero-title {
  background: #3F4144;
  color: #F7F5F3;
  font-family: 'Stack Sans Headline', sans-serif;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 32px;
  margin: 0;
  padding: 22px 26px;
  line-height: 1.3;
}

/* === HERO BODY COPY === */
.hero-text .box-content {
  background: #f7f5f3;
  padding: 40px 26px 30px;
  font-size: 16.5px;
  color: #3F4144;
}

.hero-text .box-content p {
  margin-bottom: 20px;
  line-height: 1.85;
}

/* === CTA BOX (SNUG UNDER COPY) === */
.hero-cta-square {
  background: #3F4144;
  color: #f7f5f3;
  padding: 22px 26px 24px;
  font-family: 'Stack Sans Headline', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  align-items: flex-start;
  box-sizing: border-box;
  margin-top: 0;
}

.hero-cta-square a {
  color: #f7f5f3;
  text-decoration: none;
  font-weight: 800;
}

.hero-cta-square a:hover {
  border-bottom: 1px solid #f7f5f3;
}

/* === JOINED SECTION BELOW HERO === */
.joined-section {
  max-width: 1400px;
  margin: 60px auto 100px;
  padding: 0 30px;
  box-sizing: border-box;
}

.joined-box {
  background: #f7f5f3;
  margin-bottom: 60px;
}

.joined-box .box-header {
  background: #3F4144;
  color: #f7f5f3;
  font-family: 'Stack Sans Headline', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 20px 26px;
  font-weight: 800;
  font-size: 22px;
}

.joined-box .box-content {
  background: #f7f5f3;
  padding: 40px 26px 60px;
  font-size: 16.5px;
  color: #3F4144;
  line-height: 1.85;
}

.joined-box .box-content a {
  color: #3F4144;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(63, 65, 68, 0.2);
}

.joined-box .box-content a:hover {
  color: #A3A19D;
  border-bottom-color: #A3A19D;
}

/* === FAQ ACCORDION === */
.faq-accordion {
  background: #f7f5f3;
  margin-bottom: 60px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-header {
  background: #A3A19D;
  color: #fff;
  padding: 18px 26px;
  font-family: 'Stack Sans Headline', sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 800;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 20px 26px;
  font-family: 'Stack Sans Headline', sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  background: #f7f5f3;
}

.faq-answer {
  display: none;
  padding: 0 26px 20px;
  font-size: 16.5px;
  line-height: 1.7;
  color: #3F4144;
}

.faq-item.open .faq-answer {
  display: block;
}

/* === BREADCRUMBS === */
.breadcrumbs {
  max-width: 1400px;
  margin: 80px auto;
  padding: 20px 30px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 14px;
  color: #666;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.breadcrumbs a {
  color: #3F4144;
  text-decoration: none;
  font-weight: 600;
}

.breadcrumbs a:hover {
  color: #A3A19D;
}

.breadcrumbs i {
  font-size: 12px;
  color: #A3A19D;
}

/* === RESPONSIVE === */
@media (max-width: 1000px) {
  .hero-case {
    grid-template-columns: 1fr;
    row-gap: 40px;
    margin-top: 60px;
  }

  .hero-images {
    grid-column: 1;
  }

  .hero-text {
    grid-column: 1;
  }
}

/* MOBILE:
   - Lose main hero image
   - Gallery sits at top and swipes like Tinder
   - Content feels edge-to-edge
*/
@media (max-width: 768px) {
  .hero-images img.hero-main {
    display: none;
  }

  .scroll-gallery {
    margin-top: 0;
  }

  .hero-case,
  .joined-section,
  .breadcrumbs {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .hero-text .box-content,
  .hero-cta-square,
  .joined-box .box-content,
  .joined-box .box-header,
  .faq-header,
  .faq-question,
  .faq-answer {
    padding-left: 20px;
    padding-right: 20px;
  }
}
