/*
Theme Name: Reputro
Theme URI: https://reputro.com/
Author: Your Name & Gemini
Author URI: https://reputro.com/
Description: A custom, modern theme for the Reputro service.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-theme, modern, reputro
Text Domain: reputro
*/

:root {
    --primary-blue: #2563eb;
    --primary-red: #dc2626;
    --dark-gray: #111827;
    --text-main: #1f2937;
}

/* --- Advanced Animations & Effects --- */
@keyframes subtle-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.7; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.7; }
}

@keyframes slide-in-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
    animation-duration: 1s;
}

.animate-on-scroll.is-visible {
    animation-name: slide-in-up;
}

/* --- Components Styling --- */
.cta-button {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px -1px rgba(37, 99, 235, 0.2), 0 2px 8px -1px rgba(37, 99, 235, 0.1);
}
.cta-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 20px -3px rgba(37, 99, 235, 0.3), 0 4px 8px -2px rgba(37, 99, 235, 0.15);
}

.cta-button-red {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px -1px rgba(220, 38, 38, 0.2), 0 2px 8px -1px rgba(220, 38, 38, 0.1);
}
.cta-button-red:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 20px -3px rgba(220, 38, 38, 0.3), 0 4px 8px -2px rgba(220, 38, 38, 0.15);
}

.header {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #f9fafb;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    top: -30%;
    left: -15%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1), transparent 70%);
    animation: pulse 10s infinite ease-in-out;
    z-index: 0;
}
.hero-section::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    bottom: -30%;
    right: -10%;
    background: radial-gradient(circle, rgba(232, 121, 249, 0.1), transparent 70%);
    animation: pulse 12s infinite ease-in-out reverse;
    z-index: 0;
}
.image-placeholder {
    background-color: #e5e7eb;
    animation: subtle-float 6s ease-in-out infinite;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
}

.price-card {
    transition: all 0.4s ease;
    border: 1px solid #e5e7eb;
}
.price-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}
.price-card.highlight {
    border-color: var(--primary-blue);
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.25);
}
.price-card.highlight:hover {
     transform: translateY(-10px) scale(1.08);
}

.faq-item details > summary { list-style: none; }
.faq-item details > summary::-webkit-details-marker { display: none; }
.faq-item .icon-toggle { transition: transform 0.3s ease; }
.faq-item details[open] summary .icon-toggle { transform: rotate(135deg); }

.competitor-banner {
    background-color: var(--dark-gray);
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.08) 1px, transparent 0);
    background-size: 25px 25px;
}

.blog-card {
    transition: all 0.4s ease;
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}
.blog-card .blog-image {
    transition: transform 0.4s ease;
}
.blog-card:hover .blog-image {
    transform: scale(1.05);
}

/*
 * Custom Component Styles
 * ----------------------------------------------------------------------------
 */

.star-rating input[type="radio"] { display: none; }
.star-rating label {
    cursor: pointer;
    color: #d1d5db;
    transition: color 0.2s;
}
.star-rating input[type="radio"]:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #f59e0b;
}
.star-rating {
    display: inline-flex;
    flex-direction: row-reverse;
}

.form-section {
    background-color: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.05), 0 4px 6px -4px rgb(0 0 0 / 0.05);
}

.summary-card {
    position: sticky;
    top: 120px;
}

.prose-custom {
    color: #1f2937;
}
.prose-custom h2 {
    font-size: 1.875rem;
    line-height: 2.25rem;
    color: #1f2937;
    font-weight: 800;
    margin-top: 2em;
    margin-bottom: 1em;
}
.prose-custom h3 {
    font-size: 1.5rem;
    line-height: 2rem;
    color: #1f2937;
    font-weight: 700;
    margin-top: 1.8em;
    margin-bottom: 0.8em;
}
.prose-custom p, .prose-custom ul, .prose-custom ol, .prose-custom blockquote {
    line-height: 1.75;
    margin-bottom: 1.25em;
    font-size: 1.125rem;
    color: #374151;
}
.prose-custom a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}
.prose-custom a:hover {
    text-decoration: underline;
}
.prose-custom ul {
    list-style-type: disc;
}
.prose-custom ol {
    list-style-type: decimal;
}
.prose-custom ul, .prose-custom ol {
    padding-left: 1.5rem;
}
.prose-custom li {
    margin-bottom: 0.5rem;
}
.prose-custom blockquote {
    border-left: 4px solid #2563eb;
    padding-left: 1.5rem;
    font-style: italic;
    color: #6b7280;
}
.prose-custom img {
    border-radius: 0.75rem;
    margin-top: 2em;
    margin-bottom: 2em;
}

/*
 * Blog Card Hover Effects
 * ----------------------------------------------------------------------------
 */
.blog-card {
    transition: all 0.4s ease;
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}
.blog-card .blog-image {
    transition: transform 0.4s ease;
}
.blog-card:hover .blog-image {
    transform: scale(1.05);
}

/*
 * Cookie Consent Styles
 * ----------------------------------------------------------------------------
 */
@keyframes slide-up {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}
@keyframes fade-in {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.animate-slide-up {
    animation: slide-up 0.5s ease-out forwards;
}
.animate-fade-in {
    animation: fade-in 0.3s ease-out forwards;
}


