/*
Theme Name: Anronix
Description: A modern, responsive WordPress theme for digital solutions and AI-powered business automation. Features dynamic content management with customizable sections for services, industries, and company information.
Version: 1.0.0
Author: Anronix Team
Text Domain: anronix
*/

/* WordPress Admin Bar Adjustment */
body.admin-bar #navbar { 
    top: 32px; 
}

@media screen and (max-width: 782px) {
    body.admin-bar #navbar { 
        top: 46px; 
    }
}

/* Responsive Images */
img { 
    max-width: 100%; 
    height: auto; 
}

/* Custom Animations */
@keyframes blob {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}

.animate-blob { 
    animation: blob 7s infinite; 
}

.animation-delay-2000 { 
    animation-delay: 2s; 
}

.animation-delay-4000 { 
    animation-delay: 4s; 
}

.animation-delay-1000 { 
    animation-delay: 1s; 
}

/* Background Patterns */
.pixel-pattern {
    background-image: radial-gradient(circle at 2px 2px, rgba(34, 81, 162, 0.8) 1px, transparent 0);
    background-size: 20px 20px;
}

.pixel-pattern-2 {
    background-image: radial-gradient(circle at 1px 1px, rgba(6, 95, 134, 0.6) 1px, transparent 0);
    background-size: 40px 40px;
}

/* WordPress Specific Styles */
.alignwide {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

/* Gutenberg Block Styles */
.wp-block {
    max-width: 1200px;
}

.wp-block-group {
    margin-bottom: 2rem;
}

.wp-block-heading {
    margin-bottom: 1rem;
}

.wp-block-paragraph {
    margin-bottom: 1rem;
}

/* Print Styles */
@media print {
    .no-print { 
        display: none !important; 
    }
}
