/* =========================================================
   Flutterbys Club Landing Page
   File: flutterbys-club.css

   Uses images:
   images/logo.png
   images/ruby.png
   images/rosie.png
   images/benny.png
   images/ollie.png
   images/background.jpg   (meadow rainbow background)

   ========================================================= */

/* ===============================
   ROOT VARIABLES
   =============================== */

:root{
  --fb-bg: #fff7fb;
  --fb-ink: #1f1f25;
  --fb-muted: #5a5a6b;

  --fb-card: #ffffff;
  --fb-border: rgba(0,0,0,.08);
  --fb-shadow: 0 14px 40px rgba(18, 18, 30, .08);

  --fb-accent: #ff4fa3;   /* pink */
  --fb-radius: 18px;
  --fb-radius2: 999px;
  --fb-max: 1040px;

  --fb-font: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{ box-sizing: border-box; }
html, body{ margin: 0; padding: 0; }

/* ===============================
   PAGE BACKGROUND
   =============================== */

body.fb{
  font-family: var(--fb-font);
  color: var(--fb-ink);

  /* Meadow Background + Pale Green Overlay */
  background:
    linear-gradient(
    rgba(210, 245, 220, 0.82),
    rgba(210, 245, 220, 0.82)
    ),
    url("images/background.jpg") no-repeat center center;

  background-size: cover;
  line-height: 1.55;
}


/* ===============================
   TOP NAVIGATION (NO LOGO)
   =============================== */

.fb-nav {
  width: 100%;
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid rgba(0,0,0,0.10);
  padding: 12px 0;
}

.fb-nav__inner {
  max-width: var(--fb-max);
  margin: auto;
  padding: 0 16px;
  display: flex;
  justify-content: center;
}

.fb-nav__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

/* Nav Buttons */
.fb-nav__links a {
  display: inline-block;
  padding: 9px 16px;
  border-radius: 999px;

  background: white;
  border: 2px solid rgba(255,79,163,0.55);

  font-weight: 750;
  font-size: 0.92rem;
  color: var(--fb-accent);

  text-decoration: none;
  transition: 0.2s ease;
}

.fb-nav__links a:hover {
  background: var(--fb-accent);
  color: white;
}

/* Highlight current page */
.fb-nav__links a.active {
  background: var(--fb-accent);
  color: white;
  border-color: transparent;
}

/* ===============================
   HERO SECTION
   =============================== */

.fb-hero{
  padding: 30px 16px 50px;
}

.fb-hero__inner{
  max-width: var(--fb-max);
  margin: 0 auto;
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--fb-border);
  border-radius: calc(var(--fb-radius) + 8px);
  box-shadow: var(--fb-shadow);
  padding: 22px 20px 28px;
}

/* Center Logo Row */
.fb-hero__logoRow{
  width: 100%;
  text-align: center;
  margin-bottom: 12px;
}

.fb-logo{
  height: 100px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  display: inline-block;
}

/* Price top-right */
.fb-hero__top{
  display: flex;
  justify-content: flex-end;
}

.fb-priceRow{
  text-align: center;
  margin-bottom: 10px;
}

.fb-price{
  text-align: center;
}


.fb-price__big{
  font-weight: 900;
  font-size: 1.6rem;
}

.fb-price__big span{
  font-size: 1rem;
  opacity: 0.7;
}

.fb-price__small{
  font-size: 0.95rem;
  color: var(--fb-muted);
}

/* Hero Heading */
.fb-hero__title {
  font-size: 3rem;
  font-weight: 650;
  color: #2b2b2b3; /* soft pink accent */
  letter-spacing: -0.5px;
  margin-bottom: 0.6rem;
}

.fb-hero__subtitle{
  margin: 0 0 18px;
  font-size: 1.08rem;
  color: var(--fb-muted);
  max-width: 60ch;
}

/* CTA Buttons */
.fb-ctaRow{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.fb-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--fb-radius2);
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.2s ease;
}

.fb-btn--primary{
  background: var(--fb-accent);
  color: white;
}

.fb-btn--primary:hover{
  opacity: 0.9;
}

.fb-btn--ghost{
  border: 2px solid rgba(0,0,0,0.15);
  background: white;
  color: var(--fb-ink);
}

.fb-btn--ghost:hover{
  border-color: var(--fb-accent);
}

/* Trust badges */
.fb-trust{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.fb-trust span{
  font-size: 0.92rem;
  padding: 7px 12px;
  border-radius: var(--fb-radius2);
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.7);
}

/* Character Row */
.fb-characters{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed rgba(0,0,0,0.12);
}

.fb-char{
  width: 100%;
  max-width: 120px;
  justify-self: center;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.10));
}

/* ===============================
   MAIN CONTENT CARDS
   =============================== */

.fb-wrap{
  max-width: var(--fb-max);
  margin: 0 auto;
  padding: 0 16px 60px;
}

.fb-section{
  margin-top: 18px;
}

.fb-card{
  /* Soft pastel storybook wash */
  background: linear-gradient(
    180deg,
    rgba(255, 245, 252, 0.96),  /* blush pink */
    rgba(245, 252, 255, 0.96)   /* sky blue */
  );

  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--fb-radius);
  box-shadow: var(--fb-shadow);
  padding: 12px;
}

.fb-card h2{
  margin-top: 0;
  font-size: 1.35rem;
}

.fb-card p{
  color: var(--fb-muted);
}

/* Grid tiles */
.fb-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.fb-tile{
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.08);
  background: white;
}

.fb-tile h3{
  margin: 0 0 6px;
}

.fb-tile p{
  margin: 0;
  color: var(--fb-muted);
}

/* Value bar */
.fb-valueBar{
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  background: rgba(255,79,163,0.10);
  border: 1px solid rgba(255,79,163,0.20);
  padding: 12px;
  border-radius: 16px;
  text-align: center;
  font-weight: 750;
}

/* Lists */
.fb-steps,
.fb-bullets{
  padding-left: 20px;
  color: var(--fb-muted);
}

.fb-note{
  font-weight: 700;
  color: var(--fb-ink);
}

/* Final CTA */
.fb-final{
  text-align: center;
}

.fb-final__price{
  color: var(--fb-muted);
}

.fb-btn--big{
  padding: 14px 24px;
  font-size: 1.05rem;
}

.fb-micro{
  font-size: 0.95rem;
  color: var(--fb-muted);
}

/* ===============================
   FOOTER LINKS
   =============================== */

.fb-footer{
  text-align: center;
  padding: 26px 12px 36px;
  color: rgba(0,0,0,.60);
  font-size: 0.95rem;
}

.fb-footer__links{
  margin-bottom: 12px;
}

.fb-footer__links a{
  color: rgba(0,0,0,0.65);
  font-weight: 650;
  text-decoration: none;
  margin: 0 6px;
}

.fb-footer__links a:hover{
  color: var(--fb-accent);
  text-decoration: underline;
}

/* ===============================
   RESPONSIVE DESIGN
   =============================== */

@media (max-width: 860px){
  .fb-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .fb-price{
    text-align: center;
  }
}

@media (max-width: 520px){
  .fb-grid{
    grid-template-columns: 1fr;
  }

  .fb-valueBar{
    grid-template-columns: 1fr;
  }

  .fb-characters{
    grid-template-columns: repeat(2, 1fr);
  }
}
/* =========================================================
   CAROUSEL STYLING
   ========================================================= */

.fb-carousel{
  position: relative;
  margin-top: 14px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.12);
  background: white;
}

.fb-carousel__track{
  display: flex;
  transition: transform 0.35s ease;
}

.fb-carousel__slide{
  min-width: 100%;
  margin: 0;
  position: relative;
}

.fb-carousel__slide img{
  width: 100%;
  height: 480px;   /* SMALLER */
  object-fit: contain;
  background: white;
    display: block;
  margin: 0 auto;
}

.fb-carousel__slide figcaption{
  position: static;           /* not over image */
  margin: 10px 12px 14px;
  padding: 8px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.08);
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
  color: rgba(0,0,0,0.75);
}

/* Arrow Buttons */
.fb-carousel__btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.15);
  background: rgba(255,255,255,0.95);
  cursor: pointer;
  font-size: 28px;
  font-weight: bold;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.fb-carousel__btn--prev{ left: 12px; }
.fb-carousel__btn--next{ right: 12px; }

.fb-carousel__btn:hover{
  border-color: rgba(255,79,163,0.5);
}

/* Dots */
.fb-carousel__dots{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.fb-carousel__dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.25);
  background: rgba(255,255,255,0.85);
  cursor: pointer;
}

.fb-carousel__dot.is-active{
  background: #ff4fa3;
  border-color: rgba(255,79,163,0.55);
}

/* Mobile Friendly */
@media (max-width: 520px){
  .fb-carousel__slide img{
    height: 200px;
  }

  .fb-carousel__btn{
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
}

/* =========================================================
   VIDEO PREVIEW BOX
   ========================================================= */

.fb-videoBox{
  margin-top: 14px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.12);
  background: white;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.fb-video{
  width: 100%;
  height: 300px;
  object-fit: contain;
  background: white;
  display: block;
}

/* Mobile friendly */
@media (max-width: 520px){
  .fb-video{
    height: 280px;
  }
}


