/*
Theme Name: G1Wonders
Version: 1.0
Description: Loads HTML from /stitch with one global header/footer.
Author: You
*/

:root {
  --primary-color: #38e07b;
  --secondary-color: #e0ffe0;
  --background-color: #f8fff8;
  --text-primary: #1a1a1a;
  --text-secondary: #4d4d4d;
  --accent-color: #2cc26a;
  --brand-primary: #161a39;
}

body {
  font-family: "Spline Sans","Noto Sans",sans-serif;
}

@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.animate-slide {
  animation: slide 30s linear infinite;
}










/* ---------- HERO IMAGE FIX (Option 1) ---------- */
@media (max-width: 768px) {
  .swiper-slide {
    min-height: 60vh !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;

    /* >>> Choose ONE according to your image <<< */
    background-position: top center !important;    /* agar upar ka part important hai */
    /* background-position: center center !important; */ /* agar beech important hai */
    /* background-position: bottom center !important; */ /* agar neeche important hai */
  }
}





