/*
Theme Name: PixiFixi Landing Extension
Description: Additional CSS for PixiFixi landing page components
Version: 1.0
*/

/* Feature Card Hover Effects */
.is-style-pixifixi-card {
    transition: all 0.3s ease;
}

.is-style-pixifixi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

/* Phone Mockup Animation */
.phone-mockup {
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px); 
    }
    50% { 
        transform: translateY(-20px); 
    }
}

/* Header Styles (if using custom header) */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Logo Gradient */
.site-title a {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    text-decoration: none;
}

/* Button Hover Effects */
.wp-block-button .wp-element-button {
    transition: all 0.3s ease;
}

.wp-block-button .wp-element-button:hover {
    transform: translateY(-2px);
}

/* Feature Icons */
.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Step Numbers */
.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section Overlay Pattern */
.wp-block-cover.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="2" fill="white" opacity="0.1"/><circle cx="800" cy="300" r="1" fill="white" opacity="0.1"/><circle cx="300" cy="700" r="2" fill="white" opacity="0.1"/><circle cx="900" cy="800" r="1" fill="white" opacity="0.1"/><circle cx="500" cy="100" r="1" fill="white" opacity="0.1"/><circle cx="100" cy="600" r="2" fill="white" opacity="0.1"/></svg>');
    z-index: 1;
}

.wp-block-cover.hero-section .wp-block-cover__inner-container {
    z-index: 2;
    position: relative;
}

/* Responsive Design */
@media (max-width: 768px) {
    .phone-mockup {
        max-width: 250px;
    }
    
    .wp-block-heading.hero-title {
        font-size: 2.5rem !important;
    }
    
    .wp-block-columns {
        flex-direction: column;
    }
    
    .wp-block-column {
        flex-basis: 100% !important;
    }
}

@media (max-width: 480px) {
    .phone-mockup {
        max-width: 200px;
    }
    
    .wp-block-heading.hero-title {
        font-size: 2rem !important;
    }
    
    .wp-block-group.feature-icon,
    .wp-block-group.step-number {
        min-height: 60px;
    }
}

/* Footer Styles */
.site-footer {
    background: #2d3748;
    color: #a0aec0;
    padding: 3rem 0;
}

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

.site-footer a:hover {
    color: white;
}

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

/* Additional Utilities */
.text-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-card {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.shadow-button {
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.shadow-button-hover {
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}