/* Modern BreuksBots Design Enhancements */

/* Color Variables */
:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --dark-gradient: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    --accent-color: #667eea;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --card-shadow: 0 10px 30px rgba(0,0,0,0.1);
    --hover-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Body and General Styling */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Header Enhancements */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-title a {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.8rem;
}

/* Navigation Menu */
.main-header-menu .menu-item > .menu-link {
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.main-header-menu .menu-item > .menu-link:hover {
    color: var(--accent-color);
}

.main-header-menu .menu-item > .menu-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--primary-gradient);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.main-header-menu .menu-item:hover > .menu-link::after {
    width: 100%;
}

/* Hero Section */
.entry-content h1:first-child {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Cards and Content Sections */
.entry-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Modern Card Styling */
.bot-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    margin: 2rem 0;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.bot-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

/* Section Headers */
.entry-content h2 {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 2.5rem;
    margin: 3rem 0 1.5rem 0;
    position: relative;
    text-align: center;
}

.entry-content h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: var(--primary-gradient);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Bot Section Styling */
.entry-content h2:has(+ h3) {
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.2rem;
    text-align: left;
    margin: 2rem 0 1rem 0;
}

.entry-content h3 {
    color: #666;
    font-style: italic;
    font-weight: 400;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

/* Lists and Features */
.entry-content ul {
    list-style: none;
    padding: 0;
}

.entry-content ul li {
    position: relative;
    padding: 0.8rem 0 0.8rem 2rem;
    margin: 0.5rem 0;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.entry-content ul li::before {
    content: '✨';
    position: absolute;
    left: 0.8rem;
    top: 0.8rem;
}

/* Buttons and CTAs */
.wp-block-button .wp-block-button__link,
.ast-button {
    background: var(--primary-gradient);
    border: none;
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.wp-block-button .wp-block-button__link:hover,
.ast-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

/* Stats/Numbers Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Contact Section */
.contact-info {
    background: var(--dark-gradient);
    color: var(--text-light);
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
    text-align: center;
}

.contact-info h2 {
    color: var(--text-light);
}

/* FAQ Section */
.faq-item {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1rem 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-left: 4px solid var(--accent-color);
}

.faq-item strong {
    color: var(--accent-color);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .entry-content h1:first-child {
        font-size: 2.5rem;
    }
    
    .entry-content h2 {
        font-size: 2rem;
    }
    
    .bot-card {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bot-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-gradient);
}

/* Additional Styling for Enhanced Design */

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 20px;
    margin-bottom: 4rem;
}

/* Stat Labels */
.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Bot Card Headers */
.bot-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Enhanced List Styling */
.entry-content ul li strong {
    color: var(--accent-color);
    font-weight: 600;
}

/* Background Pattern */
body {
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
}

/* Content Container */
.ast-separate-container .ast-article-inner {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-section {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.stat-item:hover .stat-number {
    animation: pulse 0.6s ease-in-out;
}

/* Enhanced Hover Effects */
.bot-card:hover h3 {
    color: var(--accent-color);
    transition: color 0.3s ease;
}

/* Footer Styling */
.site-footer {
    background: var(--dark-gradient);
    color: var(--text-light);
    margin-top: 4rem;
}

/* Enhanced Typography */
.entry-content p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Focus States for Accessibility */
.bot-card:focus-within {
    outline: 2px solid var(--accent-color);
    outline-offset: 4px;
}

a:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}
