/*
Theme Name: Aurora Optronics
Theme URI: https://aurora-optronics.com
Author: Aurora Optronics Team
Author URI: https://aurora-optronics.com
Description: Professional WordPress theme for Aurora Optronics - Global Leader in Integrated Display, Lighting & HybridPower Solutions. Features English content, multi-language support, and responsive design.
Version: 3.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aurora-optronics
Tags: business, corporate, responsive, multilingual, led, lighting

This theme, like WordPress, is licensed under the GPL.
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f9fafb;
}

/* Theme Colors */
:root {
    --aurora-blue: #1e3a8a;
    --aurora-green: #10b981;
    --aurora-dark: #0f172a;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

/* Carousel Styles */
.carousel-slide {
    display: none;
}

.carousel-slide.active {
    display: block;
}

.slide-dot {
    background-color: rgba(255, 255, 255, 0.5);
}

.slide-dot.active {
    background-color: white !important;
}

/* Navigation Hover Effects */
.nav-link {
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--aurora-green);
}

/* Card Hover Effects */
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Hero Gradient */
.hero-gradient {
    background: linear-gradient(135deg, #1e3a8a 0%, #10b981 100%);
}

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

/* Accessibility */
a:focus,
button:focus,
input:focus {
    outline: 2px solid var(--aurora-green);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    header, footer, nav {
        display: none;
    }
}
