/*
Theme Name: AuthenTech GeneratePress Child
Theme URI: https://authentech.ai
Template: generatepress
Author: AuthenTech Development
Description: Child theme for GeneratePress to match AuthenTech AI branding
Version: 1.0.0
Text Domain: authentech-child
*/

/* Import GeneratePress styles */
@import url("../generatepress/style.css");

/* AuthenTech Custom Variables */
:root {
    --authentech-primary: #0073e6;
    --authentech-secondary: #00d4ff;
    --authentech-dark: #1e293b;
    --authentech-light: #f8fafc;
    --authentech-text: #475569;
    --authentech-accent: #10b981;
    --authentech-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Global Overrides */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--authentech-text);
}

/* Header Styling */
.site-header {
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

.main-navigation {
    background: transparent;
}

.main-navigation .main-nav ul li a {
    color: var(--authentech-dark);
    font-weight: 500;
    padding: 15px 20px;
    transition: color 0.3s ease;
}

.main-navigation .main-nav ul li a:hover {
    color: var(--authentech-primary);
    background: transparent;
}

.main-navigation .main-nav ul li.current-menu-item a {
    color: var(--authentech-primary);
}

/* Site Branding */
.site-branding {
    padding: 20px 0;
}

.site-logo img {
    max-height: 50px;
    width: auto;
}

/* If no logo, style site title */
.main-title a {
    color: var(--authentech-dark);
    font-weight: 700;
    font-size: 24px;
    text-decoration: none;
}

.main-title a:hover {
    color: var(--authentech-primary);
}

/* Container widths to match AuthenTech */
.grid-container {
    max-width: 1200px;
}

/* Hero Section Styling for GenerateBlocks */
.gb-container.hero-gradient {
    background: var(--authentech-gradient) !important;
    color: white;
}

.gb-container.hero-gradient h1,
.gb-container.hero-gradient h2,
.gb-container.hero-gradient p {
    color: white !important;
}

/* Button Styling */
.wp-block-button__link,
.gb-button {
    background: var(--authentech-accent);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.wp-block-button__link:hover,
.gb-button:hover {
    background: #0ea968;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(16,185,129,0.2);
    color: white;
}

/* Card/Feature Box Styling */
.gb-container.feature-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gb-container.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Metrics Section */
.metrics-section {
    background: var(--authentech-dark);
    color: white;
}

.metric-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--authentech-accent);
}

.metric-label {
    font-size: 1.1rem;
    color: #e2e8f0;
}

/* Footer Styling */
.site-footer {
    background: var(--authentech-dark);
    color: #e2e8f0;
    padding: 40px 0 20px;
}

.site-footer a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: var(--authentech-accent);
}

.footer-widgets {
    padding: 40px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-bar {
    padding: 20px 0;
    text-align: center;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .menu-toggle {
        background: transparent;
        color: var(--authentech-dark);
        padding: 10px;
    }
    
    .main-navigation.toggled .main-nav {
        background: white;
    }
    
    .main-navigation.toggled .main-nav ul li a {
        color: var(--authentech-dark);
        padding: 15px 20px;
        border-bottom: 1px solid #f0f0f0;
    }
}

/* GenerateBlocks Helper Classes */
.authentech-gradient {
    background: var(--authentech-gradient);
}

.authentech-shadow {
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
}

.authentech-shadow-hover:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Trust Badges Section */
.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    opacity: 0.8;
    flex-wrap: wrap;
    padding: 20px 0;
}

.trust-badges img {
    max-height: 40px;
    width: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.trust-badges img:hover {
    filter: grayscale(0%);
}

/* Process Steps */
.process-step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.process-step-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
}

.process-step-content h3 {
    color: var(--authentech-dark);
    margin-bottom: 10px;
}

/* Responsive Typography */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
}

/* Animation Classes for GenerateBlocks */
.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Utility Classes */
.text-center { text-align: center; }
.text-white { color: white !important; }
.bg-light { background: var(--authentech-light); }
.bg-dark { background: var(--authentech-dark); }
.rounded { border-radius: 10px; }
.shadow { box-shadow: 0 4px 6px rgba(0,0,0,0.07); }
