@charset "utf-8";
/* CSS Document */
* { margin:0; padding:0; box-sizing:border-box; }
body { background:var(--bg); color:var(--text); transition:0.3s ease; font-family:'SST';
		overflow-x: hidden;
}


:root {
  --bg: #ffffff;
  --text: #000000;

  /* Subscribe box colors */
  --subscribe-bg: #000000;   /* black input in light mode */
  --subscribe-text: #ffffff; /* white text in light mode */
}


[data-theme="dark"] {
  --bg: #000000;
  --text: #ffffff;
	

  /* Subscribe box colors */
  --subscribe-bg: #ffffff;   /* white input in dark mode */
  --subscribe-text: #000000;  /* black text in dark mode */
	
}


header {
  display:flex; justify-content:space-between; align-items:center;
  padding:15px 25px; background:var(--bg); position:sticky; top:0; z-index:1000;
  box-shadow:0 2px 5px rgba(0,0,0,0.1);
}

nav a { margin:0 10px; text-decoration:none; color:var(--text); font-weight:bold; }
.hamburger span { display:block; width:25px; height:3px; background:var(--text); margin:5px 0; }
.theme-toggle { margin-left:20px; padding:8px 14px; border:none; border-radius:6px; cursor:pointer; background:var(--card); color:var(--text); }

.hero { text-align:center; padding:60px 20px; position:relative; overflow:hidden; }
.gradient-bg { 
  background: #ffffff !important; 
}


.goal-section {
    background: #f4c63d;
    text-align: center;
    padding: 60px 20px;
}

/* Responsive controller / goal image */
.controller-img {
    width: 30%;
    max-width: 100%;
    height: auto;
    margin: 10px auto 5px; /* ⬅ less space below image */
    display: block;
}



/* Goal image container */
.goal-image {
    display: flex;
    justify-content: center;   /* horizontal center */
    align-items: center;       /* vertical center if needed */
    margin: 30px 10px;
}

/* Responsive goal image */
.goal-image img {
    width: 10%;        /* Desktop / monitor size */
    max-width: 100%;
    height: auto;
    display: block;
}


/* Button base — make sure this is loaded AFTER any other btn rules */
.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  margin-top: 5px;
  cursor: pointer;
  background: var(--text);
  color: var(--bg);
  transition: transform 220ms cubic-bezier(.2,.9,.3,1), box-shadow 220ms ease;
  transform-origin: center center;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* Remove hover effect on store buttons */
.store-btn:hover,
.store-btn:focus {
  transform: none !important;
  box-shadow: none !important;
}

.hero-middle h1 {
    margin-bottom: 20px; /* Adjust gap as needed */
}


.btn:active {
  transform: scale(0.995);
}

/* Pop-up X styling */
.popup-box {
    position: relative; /* ensure child absolute positioning works */
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    transition: 0.2s;
}

.close-popup:hover {
    color: #f4c63d; /* highlight color on hover */
    transform: scale(1.2);
}

/* Website under-dev */
.dev-notice {
    width: 100%;
    text-align: center;
    background-color: #e24343;   /* exact color */
    color: #ffffff;
    font-family: 'SST', Arial, sans-serif; /* SST applied */
    font-size: 13px;
    font-weight: 600;
    padding: 6px 10px;
    letter-spacing: 0.3px;
    animation: blinkBg 2.8s ease-in-out infinite;
}

/* Smooth, eye-safe blink */
@keyframes blinkBg {
    0%   { opacity: 1; }
    50%  { opacity: 0.65; }
    100% { opacity: 1; }
}





/* Pop-up subscriber start */
.popup-subscribe {
    display: none;  /* hidden by default */
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.85);
    z-index: 100000;
    justify-content: center;
    align-items: center;
}

.popup-box {
    background: linear-gradient(135deg, #417bf2, #c34e65);
    color: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    max-width: 600px;
    width: 90%;
}

.popup-box input[type="email"] {
    width: 80%;
    padding: 10px;
    margin: 15px 0;
    border-radius: 20px;
    border: none;
    font-size: 15px;
}

.popup-box button {
    padding: 10px 25px;
    border-radius: 20px;
    border: none;
    background: #f4c63d;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
	font-family: 'SST', Arial, sans-serif;
}

.popup-box .close-popup {
    position: absolute;
    top: -40px;
    right: -40px;
    font-size: 30px;
    cursor: pointer;
}

/* Pop-up subscriber end */


/* Hero section buttons with hover effect */
.hero .btn {
  background: #000 !important;
  color: #fff !important;
  transition: transform 220ms cubic-bezier(.2,.9,.3,1), box-shadow 220ms ease;
}

.hero .btn:hover,
.hero .btn:focus {
  transform: scale(1.08) !important;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18) !important;
}

/* Keep ONLY hero text black always */
.hero h1,
.hero p {
  color: #000 !important;
}


.gs-footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
	contain: layout paint;
    transform: translateZ(0); /* ✅ ADD THIS */
}


.footer-logo img {
    width: 80px;
    height: auto;
}

.footer-logo h3 {
    margin-top: 10px;
    font-size: 22px;
    font-weight: 600;
}

.footer-menu {
    margin: 25px 0;
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    opacity: 0.85;
}

.footer-menu li a:hover {
    opacity: 1;
}

.footer-line {
    width: 90%;
    height: 1px;
    margin: 20px auto;
    background: #777;
    opacity: 0.4;
}

.footer-copy {
    font-size: 14px;
    opacity: 0.9;
}


.social-icons img { width:60px; margin:0 10px; }
footer {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #000;
  color: #fff;
  text-align: center;
  padding: 20px;
  z-index: 8000;
}


/* CENTER LOGO + NAV TOGETHER */
header {
  display: flex;
  justify-content: center;   /* centers everything */
  align-items: center;
  gap: 40px;                  /* space between logo and nav links */
  padding: 15px 25px;
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}


#site-logo {
  width: 160px;
  height: auto;
}



/* NAV LINKS */
#nav-menu {
  display: flex;
  gap: 5px;
}

nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: bold;
}

/* Theme toggle + hamburger go to the RIGHT */
header .right-buttons {
  position: absolute;
  right: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Hamburger should ALWAYS be visible */
.hamburger {
    flex-shrink: 0 !important;  
}


.hamburger span {
    width: 25px;
    height: 3px;
    margin: 5px 0;
    display: block;
}

/* Hamburger inside a circle */
/* Bigger black circle (10% increase) */
.hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50px;         /* increased from 45px */
    height: 50px;        /* increased from 45px */
    border-radius: 50%;
    background: #000;    /* black circle */
    cursor: pointer;
    transition: 0.25s ease;
}

/* Bars with small spacing */
.hamburger span {
    width: 26px;         /* slightly wider for bigger circle */
    height: 3px;
    border-radius: 2px;
    display: block;
    margin: 2.8px 0;     /* small gap between lines */
}

/* Colors: red top → yellow middle → blue bottom */
.hamburger span:nth-child(1) { background: #e24343; } /* red */
.hamburger span:nth-child(2) { background: #efc233; } /* yellow */
.hamburger span:nth-child(3) { background: #748ff3; } /* blue */

.circle {
  width: 80px;             /* Any size you want */
  aspect-ratio: 1 / 1;     /* Forces it to stay a perfect square */
  background: black;
  border-radius: 50%;
}

/* Breathing (pulse) animation for hamburger circle */
.hamburger {
    animation: breathe 2.4s ease-in-out infinite;
}

@keyframes breathe {
    0% { transform: scale(1); }
    50% { transform: scale(1.07); }
    100% { transform: scale(1); }
}


/* Light theme */
:root {
    --hamburger-bg: #000;   /* black */
}

/* Dark theme */
[data-theme="dark"] {
    --hamburger-bg: #fff;   /* white */
}

.hamburger {
    background: var(--hamburger-bg) !important;
}


.hero-container {
    display: grid;
    grid-template-columns: auto 600px auto; /* middle stays fixed */
    align-items: center;
    gap: 30px;
    justify-content: center; /* keeps everything centered */
}

.hero-left img,
.hero-right img {
    width: auto;
    height: auto;
    max-width: none; /* keep original size */
}



/* Mobile responsive */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-left img,
    .hero-right img {
        margin: 0 auto;
        max-width: 220px;
    }
}

.theme-toggle {
  padding:8px 14px;
  border:none;
  border-radius:6px;
  cursor:pointer;
  background:var(--card);
  color:var(--text);
}

@media (max-width: 768px) {
    .subscribe-box {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .subscribe-inputs {
        width: 100%;
        justify-content: center;
    }

    .subscribe-input {
        width: 60%;
		background: var(--subscribe-bg);
    color: var(--subscribe-text);
}

    }
}

/* Subscribe Now button style */
    .subscribe-inputs {
        width: 100%;
        justify-content: center;
    }


.subscribe-button:hover {
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
    opacity: 0.95;
}



/* Subscribe section policy and consent */

.subscribe-consent {
    margin: 15px 0;
    font-size: 14px;
    color: #555;
    text-align: center;
}

.subscribe-consent label {
    cursor: pointer;
}

.subscribe-consent a {
    color: #4a6cff;
    text-decoration: underline;
}

.subscribe-note {
    margin-top: 12px;
    font-size: 13px;
    color: #777;
    text-align: center;
    line-height: 1.4;
}


/* Subscribe section policy and consent end */


@media(max-width:768px){
  #nav-menu {
    display: none;
    position: absolute;
    top: 75px;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    background: var(--bg);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    text-align: center;
    align-items: center;
    z-index: 2000;
  }

  #nav-menu.active {
    display: flex;
  }

  .hamburger { display:block; }
  nav a {
    margin: 12px 0;
    display: block;
  }
}

/* hamburger each line color */

/* Top line */
.hamburger span:nth-child(1) {
    background: #e24343;  /* red */
}

/* Middle line */
.hamburger span:nth-child(2) {
    background: #efc233;  /* yellow */
}

/* Bottom line */
.hamburger span:nth-child(3) {
    background: #748ff3;  /* blue */
}


/* Popup Background */
.video-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.85);
    z-index: 99999;
    justify-content: center;
    align-items: center;
}

/* Video Frame (1920 × 1080 scaling) */
.video-popup iframe {
    width: 90vw;
    height: calc(90vw * 0.5625);
    max-width: 1920px;
    max-height: 1080px;
    border: none;
    border-radius: 10px;
}

/* Video container */
.video-box {
    position: relative;
    display: inline-block;
}

/* Close button inside video frame */
.close-video {
    position: absolute;
    top: -60px;   /* moves UP outside the frame */
    right: -50px; /* moves RIGHT outside the frame */
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    z-index: 100000;
}

.subscribe-btn {
    display: inline-block;
    margin-top: 20px;
	white-space: nowrap;   /* Keep text in a single line */
    position: relative; /* inside section */
    z-index: 10;
}



#contact {
    text-align: center;
    padding: 60px 20px; /* space around content */
    min-height: 300px;  /* ensure it's tall enough */
}


#contact .fade-in,
#contact .zoom-in {
    opacity: 1 !important; /* force visibility if animation hasn't triggered */
}

#contact .zoom-in {
    opacity: 1 !important;
    transform: scale(1) !important;
}

.store-row {
  display: flex;
  justify-content: center;  /* center the buttons */
  gap: 2%;                /* space between buttons */
  margin: 30px auto;
  padding: 0;
  max-width: 900px;
}

.store-box {
    width: 45%;
    text-align: center;
}

.store-left a, .store-right a {
    padding: 12px 20px;
    display: inline-block;
}



/* Individual store buttons */
.store-btn {
  background-color: var(--text) !important;  /* dynamic */
  color: var(--bg) !important;               /* dynamic */
  text-decoration: none;
  font-weight: normal;
  border-radius: 6px;
  padding: 8px 15px;
  width: 180px;
  text-align: center;
  transition: 0.2s ease;
}

.subscribe-input,
.subscribe-button {
    outline: none;
}

/* Subscribe Now Section start */

.subscribe-section {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
}



/* Input + Button container */
.subscribe-inputs {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;      /* prevent wrapping */
    flex-wrap: nowrap;   /* keep same line */
}

/* Email input */
.subscribe-input {
    padding: 10px 15px;
    border-radius: 20px;
    border: none;
    width: 260px;
    outline: none;
    font-size: 15px;

    will-change: transform; /* ✅ ADD THIS */
}


.subscribe-button:focus {
    outline: none;
}



.subscribe-button {
    padding: 10px 22px;
    border-radius: 20px;
    border: none;
    font-size: 15px;
    background: #f4c63d;

    white-space: nowrap;
    min-width: 160px;   /* 👈 prevents text overflow */
    flex-shrink: 0;     /* 👈 stops button from shrinking */
}



/* ================================
   Mobile — only stack on VERY small
================================ */
@media (max-width: 600px) {
    .subscribe-button {
        min-width: 140px;
        font-size: 14px;
    }
}


    .subscribe-inputs {
        justify-content: center;
    }
}

@media (max-width: 420px) {
    .subscribe-inputs {
        flex-direction: column;
        width: 100%;
    }

    .subscribe-input {
        width: 90%;
    }
}

@keyframes shake {
  0%   { transform: translateX(0); }
  20%  { transform: translateX(-6px); }
  40%  { transform: translateX(6px); }
  60%  { transform: translateX(-6px); }
  80%  { transform: translateX(6px); }
  100% { transform: translateX(0); }
}



.shake {
  animation:
    shake 0.4s ease,
    doubleBlinkRed 0.9s ease;
}


/* Subscribe Now Section end */


.notify {
    position: fixed;
    bottom: 80px; /* slightly above button */
    right: 30px;
    z-index: 100001; /* higher than button */
}



@keyframes pulse {
    0%,100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Double blink red (no layout jump) */
@keyframes doubleBlinkRed {
  0%   { box-shadow: 0 0 0 0 red inset; }
  15%  { box-shadow: 0 0 0 2px red inset; }
  30%  { box-shadow: 0 0 0 0 red inset; }
  45%  { box-shadow: 0 0 0 2px red inset; }
  60%  { box-shadow: 0 0 0 0 red inset; }
  100% { box-shadow: 0 0 0 0 red inset; }
}


/* Notification Popup */
.notify {
  position:fixed;
  bottom:30px;
  right:30px;
  background:#4caf50;
  color:#000;
  padding:15px 25px;
  border-radius:8px;
  box-shadow:0 4px 10px rgba(0,0,0,0.2);
  opacity:0;
  transform:translateY(20px);
  transition:0.4s ease;
  pointer-events:none;
  z-index:9999;
/* 🔥 3-Color Gradient */
background: linear-gradient(135deg, #e24343, #efc233);
}


.notify.active {
  opacity:1;
  transform:translateY(0);
}

/* Animations */
.fade-in { animation: fadein 1.3s ease forwards; opacity:0; }
@keyframes fadein { to { opacity:1; } }
.slide-left { animation: slideL 1.3s ease forwards; opacity:0; }
@keyframes slideL { to { transform:translateX(0); opacity:1; } }
.slide-right { animation: slideR 1.3s ease forwards; opacity:0; }
@keyframes slideR { to { transform:translateX(0); opacity:1; } }
.zoom-in { animation: zoom 1s ease forwards; opacity:0; transform:scale(0.9); }
@keyframes zoom { to { transform:scale(1); opacity:1; } }

.subscribe-button:hover,
.subscribe-button:focus,
.subscribe-button:active {
    transform: none !important;
}

/* =====================================
   MOVE NOTE + CHECKBOX BELOW TITLE ONLY
===================================== */

/* FINAL — SUBSCRIBE BOX LAYOUT (WORKING) */

.subscribe-box {
    background: #000;
    color: #fff;
    width: 95%;
	max-width: 1100px;

    padding: 25px 30px;
    border-radius: 14px;

    display: flex;
    align-items: center;       /* vertical center */
    justify-content: center;   /* center the row */
    gap: 20px;
    flex-wrap: wrap;           /* allows note below */
}


[data-theme="dark"] .subscribe-box {
    border: 1.5px solid rgba(255, 255, 255, 0.6);
}





/* Title */
.subscribe-title {
    white-space: nowrap;
    text-align: left;
}

.subscribe-inputs {
    display: flex;
    align-items: center;
    gap: 12px;
}




/* Legal note — bottom */
.subscribe-note {
    order: 4;
    width: 100%;
    text-align: center;
    margin-top: 12px;
}

/* Checkbox — very bottom */
.subscribe-consent {
    order: 5;
    width: 100%;
    text-align: center;
}


/* ==============================
   Popup Subscribe – SST Branding
============================== */

.popup-box,
.popup-box h2,
.popup-box input,
.popup-box button,
.popup-box label {
    font-family: 'SST', Arial, sans-serif; /* Your branding font */
}

.popup-box input::placeholder {
    font-family: 'SST', Arial, sans-serif;
    color: #ccc; /* lighter color for placeholder */
}

/* Force email input to stay WHITE in all themes & devices */
.subscribe-input,
.popup-box input[type="email"] {
    background-color: #ffffff !important;
    color: #000000 !important;
}

/* Placeholder text color */
.subscribe-input::placeholder,
.popup-box input::placeholder {
    color: #666666 !important;
}


