/*
Theme Name: Act Theme
Theme URI: https://example.com/act-theme
Author: Act
Author URI: https://example.com
Description: A modern WordPress theme built with React, Vite, and Tailwind CSS.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: act-theme
Tags: react, vite, tailwind, custom-menu, featured-images, full-width-template, translation-ready
*/


html, body, #page {
  background-color: #FFF7F1;
}


/* ---------------------------------------------------------------------------
   Member Logos Marquee
   Endless horizontal scroll carousel for the member logos strip.
--------------------------------------------------------------------------- */

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-wrapper {
  display: flex;
  will-change: transform;
  animation: marquee 30s linear infinite;
}

.marquee-wrapper:hover {
  animation-play-state: paused;
}