/* Global Styles */
.loader {
    border: 3px solid #374151; /* Darker gray for track */
    border-top: 3px solid #00E676; /* Neon Green */
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
    display: inline-block;
}

.loader-sm {
    width: 16px;
    height: 16px;
    border-width: 2px;
}

.loader-lg {
    width: 40px;
    height: 40px;
    margin: 50px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Scrollbar Utilities */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Hero Backgrounds */
.hero-bg {
    background-image: url('https://images.unsplash.com/photo-1518182170546-0766aaef0563?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

/* Video Background */
.video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

@media (min-aspect-ratio: 16/9) {
    .video-background {
        width: 100vw;
        height: 56.25vw;
    }
}

@media (max-aspect-ratio: 16/9) {
    .video-background {
        width: 177.78vh;
        height: 100vh;
    }
}

/* WordPress Content Styles */
.wp-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.wp-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.wp-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.wp-content ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.wp-content img {
    border-radius: 0.5rem;
    margin: 2rem 0;
    width: 100%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Marquee Animations */
@keyframes marquee-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes marquee-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.animate-marquee-left {
    display: flex;
    width: max-content;
    animation: marquee-left 60s linear infinite;
}
.animate-marquee-right {
    display: flex;
    width: max-content;
    animation: marquee-right 60s linear infinite;
}

.pause-hover:hover .animate-marquee-left,
.pause-hover:hover .animate-marquee-right {
    animation-play-state: paused;
}