/**
 * Theme Name:     Twenty Twenty-One Child
 * Author:         the WordPress team
 * Template:       twentytwentyone
 * Text Domain:	   twenty-twenty-one-child
 * Description:    Twenty Twenty-One is a blank canvas for your ideas and it makes the block editor your best brush. With new block patterns, which allow you to create a beautiful layout in a matter of seconds, this theme’s soft colors and eye-catching — yet timeless — design will let your work shine. Take it for a spin! See how Twenty Twenty-One elevates your portfolio, business website, or personal blog.
 */

body {
  font-family: "Rethink Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}


.notification-bar {
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 2px solid #ffc107;
}

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
}

.marquee-track {
  width: max-content;
  animation: marquee-scroll 18s linear infinite;
}

.marquee-item {
  white-space: nowrap;
}

/* Seamless animation */
@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


/* Info box styling ONLY */
.info-box {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Slide-in-left animation base */
.slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

/* When visible */
.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}


/* Gain Card */
.gain-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 
    0 6px 15px rgba(0, 0, 0, 0.08),
    0 2px 6px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* Icon */
.gain-icon {
  font-size: 36px;
  line-height: 1;
}

/* Progress bar */
.gain-bar {
  height: 8px;
  background: #eee;
  border-radius: 20px;
  overflow: hidden;
}

.gain-bar .progress-bar {
  width: 0;
  background: linear-gradient(90deg, #ffb703, #fb8500);
  transition: width 1.2s ease;
}


.gain-item:hover {
  box-shadow: 
    0 12px 30px rgba(0, 0, 0, 0.12),
    0 4px 10px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
} 

/* Slide-up animation */
.slide-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.host-section .border {
  border: 2px solid #FFD500 !important;
}

.host-img {
  background: #fff;
  padding: 12px;
  border-radius: 20px;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.18),
    0 10px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Subtle hover effect (optional but premium) */
.host-img:hover {
  transform: translateY(-6px);
  box-shadow:
    0 28px 55px rgba(0, 0, 0, 0.25),
    0 15px 25px rgba(0, 0, 0, 0.12);
}

.accordion-button {
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background-color: #f8f9fa;
  color: #000;
}

.accordion-item {
  border-radius: 12px;
  overflow: hidden;
}


/* Reveal animation */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease-out;
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Optional hover polish */
.learn-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.learn-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* Giveaway animation */


/* Giveaway box polish */
.giveaway-box {
  border-left: 6px solid #000;
}

/* Optional subtle hover */
.giveaway-box:hover {
  transform: translateY(-4px);
  transition: transform 0.3s ease;
}

/* Ensure visibility above other elements */
.fixed-bottom {
  z-index: 1050;
}


/* Button on mobile full width */

/* Mobile tweaks */
@media (max-width: 768px) {
  .marquee-item span {
    font-size: 14px;
  }
}


@media (max-width: 576px) {
    .fixed-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.6rem;
  }
  .fixed-bottom .btn {
    width: 100%;
    font-size: 0.9rem;
  }
  .fixed-bottom .d-flex.flex-column.flex-sm-row {
    text-align: center;
    width: 100%;
    justify-content: center;
  }
}



/* Hero Section */
.hero-section {
  background: #FFD500;
  padding: 120px 20px 100px;
}

.hero-container {
  max-width: 1200px;
  margin: auto;
}

/* Two Column Grid */
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

/* Content */
.hero-content {
  animation: fadeUp 0.8s ease forwards;
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  color: #000;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 18px;
  max-width: 520px;
  color: #222;
}

/* Video */
.hero-video {
  animation: scaleIn 1s ease forwards;
}

.video-wrapper {
  position: relative;
  padding-top: 56.25%;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Info Boxes */
.info-boxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.info-box {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
  transform: translateY(25px);
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.info-box:nth-child(2) { animation-delay: 0.15s; }
.info-box:nth-child(3) { animation-delay: 0.3s; }
.info-box:nth-child(4) { animation-delay: 0.45s; }

/* =========================
   FAQ Section
========================= */

.faq-section {
  background: #ffffff;
  padding: 100px 20px;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq-title {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 60px;
  color: #000;
}

/* Accordion */
.faq-item {
  border-bottom: 1px solid #eee;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 25px 10px;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  color: #FFD500;
}

.faq-icon {
  font-size: 26px;
  transition: transform 0.3s ease;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 10px 25px;
  margin: 0;
  color: #444;
  line-height: 1.6;
}

/* Active State */
.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* =========================
   What You Will Gain (2 Col)
========================= */

.gain-section {
  background: #fff;
  padding: 100px 20px;
}

.gain-container {
  max-width: 1200px;
  margin: auto;
}

.gain-heading {
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 70px;
  color: #000;
}

/* Grid */
.gain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 40px;
}

/* Item */
.gain-item {
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

/* Icon */
.gain-icon {
  width: 60px;
  height: 60px;
  background: #FFD500;
  border-radius: 50%;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Content */
.gain-content h4 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
  color: #000;
}

.gain-content p {
  font-size: 15px;
  color: #444;
  margin-bottom: 12px;
}

/* Progress Bar */
.gain-bar {
  height: 8px;
  width: 100%;
  background: #eee;
  border-radius: 50px;
  overflow: hidden;
}

.gain-bar span {
  display: block;
  height: 100%;
  background: #FFD500;
  border-radius: 50px;
}

/* =========================
   Host Section
========================= */

.host-section {
  background: #fff;
  padding: 100px 20px;
}

.host-container {
  max-width: 1200px;
  margin: auto;
}

.host-heading {
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 60px;
  color: #000;
}

/* Two Column Grid */
.host-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

/* Info Boxes */
.host-info .info-box {
  display: flex;
  gap: 18px;
  margin-bottom: 20px;
  padding: 20px;
  border: 2px solid #FFD500;
  border-radius: 15px;
  align-items: center;
}

.info-icon {
  font-size: 30px;
  width: 60px;
  height: 60px;
  background: #FFD500;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.info-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.info-content p {
  font-size: 14px;
  margin: 0;
  color: #444;
}

/* Host Image */
.host-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* CTA Box */
.host-cta-box {
  text-align: center;
  padding: 30px 20px;
  border-radius: 20px;
  margin-bottom: 40px;
}

.host-cta-box .cta-btn {
  background: #000;
  color: #FFD500;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 800;
  text-decoration: none;
  font-size: 18px;
  display: inline-block;
  margin-bottom: 20px;
}

.host-cta-box .payment-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.host-cta-box .payment-icons img {
  width: 40px;
  height: auto;
}

.host-cta-box .seats-msg {
  font-weight: 700;
  color: #000;
  font-size: 16px;
  margin-bottom: 5px;
}

.host-cta-box .whatsapp-msg {
  font-size: 14px;
  color: #555;
}

/* Giveaway Box */
.giveaway-box {
  border: 2px solid #FFD500;
  border-radius: 20px;
  padding: 25px;
  text-align: center;
}

.giveaway-box h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}

.giveaway-box p {
  font-size: 16px;
  color: #444;
}

/* =========================
   What You Will Learn Section
========================= */

.learn-section {
  background: #fff;
  padding: 100px 20px;
}

.learn-container {
  max-width: 1200px;
  margin: auto;
}

.learn-heading {
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 70px;
  color: #000;
}

.learn-part {
  margin-bottom: 50px;
}

.part-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #000;
  text-align: left;
}

/* Two-column grid */
.learn-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 40px;
}

/* Info Box */
.learn-box {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 20px;
  border: 2px solid #FFD500;
  border-radius: 15px;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.learn-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.learn-icon {
  font-size: 28px;
  width: 50px;
  height: 50px;
  background: #FFD500;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.learn-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.learn-content p {
  font-size: 14px;
  margin: 0;
  color: #444;
}




/* Responsive */
@media (max-width: 992px) {
  .learn-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .part-title {
    text-align: center;
  }
}

/* =========================
   Disclaimer Section
========================= */

.disclaimer-section {
  background: #fff;
  padding: 60px 20px;
  border-top: 2px solid #FFD500;
  border-bottom: 2px solid #FFD500;
  text-align: center;
}

.disclaimer-container {
  max-width: 900px;
  margin: auto;
}

.disclaimer-heading {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 25px;
  color: #000;
}

.disclaimer-section p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}


/* =========================
   Fixed Bottom CTA Bar
========================= */

.fixed-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #FFD500;
  padding: 14px 20px;
  box-shadow: 0 -6px 25px rgba(0,0,0,0.15);
  z-index: 99999;
}

.bottom-bar-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.bottom-bar-info {
  display: flex;
  flex-direction: column;
  color: #000;
}

.bottom-price {
  font-size: 18px;
  font-weight: 800;
}

.bottom-text {
  font-size: 14px;
  opacity: 0.9;
}

.bottom-btn {
  background: #000;
  color: #FFD500;
  padding: 10px 26px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.bottom-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.25);
}

/* =========================
   Scroll Animations
========================= */

/* Hidden by default */
.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

/* Visible when in viewport */
.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Host Image Pop */
.host-image.animate {
  transform: scale(0.95);
  opacity: 0;
  transition: all 0.8s ease-out;
}

.host-image.animate.visible {
  transform: scale(1);
  opacity: 1;
}

/* CTA Pulse Animation */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.host-cta-box.animate.visible .cta-btn {
  animation: pulse 1.5s infinite;
}

/* Giveaway fade-up */
.giveaway-box.animate {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}

.giveaway-box.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   Notification Bar / Marquee
========================= */

.notification-bar {
  width: 100%;
  background: #ffffff; /* Highlighted yellow */
  color: #000;
  font-weight: 700;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 2px solid #000;
}

.notification-bar p {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 15s linear infinite;
  font-size: 16px;
  line-height: 40px;
  margin: 0;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .notification-bar p {
    font-size: 14px;
    line-height: 35px;
  }
}


/* Animations */
@keyframes fadeUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-description {
    margin: auto;
  }

  .info-boxes {
    grid-template-columns: repeat(2, 1fr);
  }

    .host-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .host-info .info-box {
    justify-content: center;
    text-align: center;
  }

  .info-icon {
    margin: auto;
  }

  .host-cta-box .payment-icons {
    flex-wrap: wrap;
    gap: 10px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .faq-title {
    font-size: 34px;
  }

  .gain-heading {
    font-size: 32px;
  }

    .gain-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .bottom-bar-content {
    flex-direction: column;
    text-align: center;
  }

  .bottom-btn {
    width: 100%;
  }
}


@media (max-width: 480px) {
  .hero-title {
    font-size: 36px;
  }

  .info-boxes {
    grid-template-columns: 1fr;
  }
}
