/*
Theme Name: Reguweb
Theme URI: https://reguweb.com
Author: Allshore Talent
Author URI: https://allshoretalent.com
Description: A modern WordPress theme for Reguweb - Your Path to Digital Accessibility Compliance
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: reguweb
Tags: accessibility, compliance, wcag, ada, eaa
*/

/* Import Tailwind CSS */
@import 'assets/css/tailwind.css'; 

.custom_bg_gray_900 {background-color: #000;}
.custom_green {color: #4d9d34;}
.custom_green_bg {background-color: #4d9d34;}
.custom_blue {color: #00bdff;}
.custom_blue_bg {background-color: #00bdff;}
.custom_dark_blue {color: #0b5cff;}
.custom_dark_blue_bg {background-color: #0b5cff;}
.animate-fade-in {animation: fadeIn 0.5s ease-in forwards;}
@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}
nav.fixed {position: fixed;top: 0;left: 0;right: 0;box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);}
@keyframes fade-in {
    0% { opacity: 0; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
}
@keyframes slide-up {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}
.animate-slide-up {animation: slide-up 0.7s ease-out forwards;}
.delay-150 {animation-delay: 0.15s;}

/* Modal Backdrop */
.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.8);
    transition: opacity 0.3s ease;
}

/* Text Opacity Classes */
.text-opacity-80 {
    opacity: 0.8;
}

.text-opacity-90 {
    opacity: 0.9;
}

/* Progress Bar */
.progress-container {
    width: 100%;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    overflow: hidden;
    margin-top: 1rem;
}

.progress-bar {
    height: 100%;
    width: 0;
    background-color: #ffffff;
    border-radius: 9999px;
    transition: width 0.3s ease;
}