/* Custom Styles for A-1 To Be a Blessing Ready Electric */

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

/* Selection Color */
::selection {
    background-color: #B45309;
    color: #F5F5DC;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: #2C2C2C;
}

::-webkit-scrollbar-thumb:hover {
    background: #B45309;
}

/* Animation Utilities */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Form Focus Styles */
input:focus,
select:focus,
textarea:focus {
    box-shadow: 0 0 0 2px rgba(180, 83, 9, 0.2);
}

/* Navbar Glass Effect */
.nav-scrolled {
    background-color: rgba(250, 250, 245, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* Asymmetric Grid Adjustments */
@media (max-width: 1023px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-image-col {
        order: -1;
        height: 400px;
    }
}

/* Button Ripple Effect (Optional Polish) */
button, .cta-button {
    position: relative;
    overflow: hidden;
}

button::after, .cta-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

button:active::after, .cta-button:active::after {
    width: 200px;
    height: 200px;
}
