/*
Theme Name: Testers Dev
Theme URI: https://testers.dev
Author: testers.dev
Description: Custom WordPress theme for testers.dev – Google Play 14-Day Testing Service
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: testers-dev
Tags: custom-theme, landing-page, acf
*/

/* Theme styles are handled via Tailwind CSS CDN in header.php */

/* Custom logo sizing */
.custom-logo-link { display: flex; align-items: center; }
.custom-logo-link .custom-logo { height: 36px; width: auto; display: block; }
footer .custom-logo-link .custom-logo { height: 28px; }
body { font-family: 'Inter', sans-serif; }

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

details > summary { list-style: none; }
details > summary::-webkit-details-marker { display: none; }
