/*
Theme Name: Bold Parallax
Theme Description: A premium, single-page WordPress theme featuring bold color schemes, dynamic scroll-triggered animations, and advanced parallax effects.
Theme Author: opencode
Theme Version: 1.1
License: GPL2
Text Domain: bop
*/

/* === GLOBAL STYLES: BOLD & HIGH CONTRAST === */
body {
    font-family: 'Arial Black', sans-serif;
    background-color: #121212; /* Dark Background */
    color: #e0e0e0; /* Light Text */
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scrolling from animations */
}

/* Global container for single page sections */
#site-container {
    scroll-behavior: smooth;
}

/* Styling for section wrappers */
.section {
    min-height: 100vh;
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: relative; /* Needed for absolute children */
    overflow: hidden;
}

/* Specific color themes for sections for contrast and boldness */
.hero {
    background-color: #1a1a2e; /* Darker blue/purple for hero */
    background-attachment: fixed; /* Essential for parallax effect */
    padding-top: 200px;
    padding-bottom: 200px;
}

.feature-section {
    background-color: #1e1e1e;
    padding: 120px 0;
}

/* --- Typography --- */
h1, h2, h3 {
    font-weight: 900;
    color: #e63946; /* Bold accent color (Red) */
    margin-bottom: 20px;
    letter-spacing: 2px; /* Added for boldness */
}

p {
    max-width: 900px;
    margin: 0 auto 20px;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* --- Animated Elements --- */
/* Initial hidden state for elements that reveal on scroll */
.animated-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Final visible state */
.animated-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* --- CTA BUTTONS --- */
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    margin-top: 20px;
    background-color: #e63946; /* Same bold color */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: #ff6b6b;
    transform: translateY(-2px);
}

/* --- Parallax Structure Specifics --- */
.parallax-generator {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform;
    transition: transform 0.1s linear;
}

/* === RESPONSIVENESS === */
@media (max-width: 768px) {
    .section {
        min-height: auto;
        padding: 80px 20px;
    }

    h1, h2, h3 {
        font-size: 2.5rem;
    }
    
    p {
        font-size: 1rem;
    }

    .parallax-generator {
        height: 60vh; /* Reduced height on mobile */
    }
}