/*
Theme Name: StaminUp Power Theme
Author: Your Expert Team
Description: A custom high-converting landing page theme for StaminUp Gummies, built for performance and authority.
Version: 1.0
*/

/* === GLOBAL STYLES === */
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background-color: #111827; color: #d1d5db; }
h1, h2, h3, h4 { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 0.05em; }

/* === BUTTONS === */
.btn-cta { 
    background-color: #F97316; /* Orange */
    color: white; 
    font-family: 'Oswald', sans-serif; 
    border-radius: 999px; 
    padding: 1rem 2.5rem; 
    font-weight: 700; 
    font-size: 1.25rem; 
    text-transform: uppercase; 
    transition: all 0.3s ease; 
}
.btn-cta:hover { 
    background-color: #EA580C; 
    transform: translateY(-3px); 
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.2); 
}

/* === LAYOUT & HELPERS === */
.section-padding { padding: 6rem 1rem; }
@media (max-width: 768px) { .section-padding { padding: 4rem 1rem; } }
.text-accent { color: #F97316; }
.bg-dark-secondary { background-color: #1F2937; }
.card { background-color: #1F2937; border: 1px solid #374151; border-radius: 1rem; }

/* === ANIMATIONS === */
.pulse-animation { animation: pulse 2s infinite; }
@keyframes pulse { 
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7); } 
    50% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(249, 115, 22, 0); } 
}

/* === FLOATING CTA BAR (UPDATED) === */
.fixed-cta-bar {
    position: fixed;
    bottom: -150px; /* Initially hidden */
    left: 0;
    right: 0;
    background-color: rgba(17, 24, 39, 0.9);
    backdrop-filter: blur(5px);
    padding: 1rem;
    z-index: 1000;
    transition: all 0.5s ease-in-out;
}
.fixed-cta-bar.show {
    bottom: 1rem; /* Display with a small margin from the bottom */
}