/*
Theme Name: PiTime Labs Theme
Theme URI: https://pitime.de
Author: PiTime Labs
Author URI: https://pitime.de
Description: Ein maßgeschneidertes Theme für die PiTime Labs Website. Basiert auf statischem HTML mit Tailwind CDN.
Version: 1.0.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pitime-theme
Tags: custom-theme, one-page, dark-theme, tailwindcss
*/

/* Glow-Effekt mit NEUEN Markenfarben */
@keyframes subtle-glow {
    0% { 
        box-shadow: 0 0 15px -5px rgba(5, 185, 200, 0.3); /* custom-brand-aqua mit 30% Opazität */
    }
    50% { 
        box-shadow: 0 0 25px -5px rgba(5, 185, 200, 0.5); /* custom-brand-aqua mit 50% Opazität */
    }
    100% { 
        box-shadow: 0 0 15px -5px rgba(5, 185, 200, 0.3); /* custom-brand-aqua mit 30% Opazität */
    }
}

.animate-subtle-glow {
    animation: subtle-glow 4s ease-in-out infinite;
}


/* Styling für das dynamische WordPress-Menü (wp_nav_menu) mit NEUEN Markenfarben */

/* Desktop-Menü-Links (innerhalb von #primary-menu) */
.menu-item a {
    /* text-custom-text-secondary hover:text-custom-brand-aqua */
    color: #BCCFDF; /* custom-text-secondary */
    transition-property: color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 200ms;
}

.menu-item a:hover {
    color: #05B9C8; /* custom-brand-aqua */
}

/* Aktiven Menüpunkt hervorheben */
.current-menu-item > a {
    color: #05B9C8; /* custom-brand-aqua */
    font-weight: 600;
}

/* Mobiles Menü (innerhalb von #mobile-menu) */
#mobile-menu .menu-item a {
    display: block;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}