/**
 * Radio432 Customizations - Haupt-Stylesheet
 * 
 * Dieses Stylesheet überschreibt Widget-Styles von:
 * - Elementor
 * - Elementor Pro
 * - Element Pack Pro
 * - Pro.Radio
 * 
 * Die CSS Variablen (--r432-*) werden in class-css-customizations.php definiert
 */

/* ==========================================================================
   RESET & BASE
   ========================================================================== */

.radio432-colors-yes,
.radio432-dark-yes,
.radio432-style-yes {
    /* Marker Klassen für aktivierte Radio432 Styles */
}

/* ==========================================================================
   BUTTONS - Anpassungen
   ========================================================================== */

/* Radio432 Button Styles */
.elementor-widget-button.radio432-style-yes .elementor-button {
    background: linear-gradient(135deg, var(--r432-primary) 0%, var(--r432-primary-dark) 100%);
    border-radius: var(--r432-border-radius);
    font-family: var(--r432-font-primary);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 14px 32px;
    transition: all var(--r432-transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.elementor-widget-button.radio432-style-yes .elementor-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
}

.elementor-widget-button.radio432-style-yes .elementor-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.elementor-widget-button.radio432-style-yes .elementor-button:hover::before {
    left: 100%;
}

/* ==========================================================================
   HEADINGS - Anpassungen
   ========================================================================== */

.elementor-widget-heading.radio432-style-yes .elementor-heading-title {
    font-family: var(--r432-font-heading);
    font-weight: 700;
    line-height: 1.2;
}

/* Gradient Heading */
.elementor-widget-heading.radio432-gradient-yes .elementor-heading-title {
    background: linear-gradient(90deg, var(--r432-primary), var(--r432-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================================================
   CARDS & CONTAINERS
   ========================================================================== */

/* Glasmorphism Effekt */
.radio432-glass-yes {
    background: rgba(30, 30, 50, 0.6) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--r432-border-radius-lg);
}

/* Dark Mode Card */
.radio432-dark-yes {
    background: var(--r432-bg-card);
    border-radius: var(--r432-border-radius);
    border: 1px solid var(--r432-border-color);
}

/* ==========================================================================
   HOVER EFFEKTE
   ========================================================================== */

/* Lift Hover */
.radio432-hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--r432-shadow-lg);
    transition: all var(--r432-transition);
}

/* Glow Hover */
.radio432-hover-glow:hover {
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.3);
    transition: all var(--r432-transition);
}

/* Scale Hover */
.radio432-hover-scale:hover {
    transform: scale(1.03);
    transition: all var(--r432-transition);
}

/* Border Highlight Hover */
.radio432-hover-border {
    border: 2px solid transparent;
    transition: all var(--r432-transition);
}

.radio432-hover-border:hover {
    border-color: var(--r432-primary);
}

/* ==========================================================================
   FORMS
   ========================================================================== */

/* Input Fields */
.radio432-style-yes input[type="text"],
.radio432-style-yes input[type="email"],
.radio432-style-yes input[type="tel"],
.radio432-style-yes input[type="url"],
.radio432-style-yes input[type="password"],
.radio432-style-yes textarea,
.radio432-style-yes select {
    background: var(--r432-bg-secondary);
    border: 1px solid var(--r432-border-color);
    border-radius: var(--r432-border-radius-sm);
    color: var(--r432-text-primary);
    padding: 12px 16px;
    font-family: var(--r432-font-primary);
    transition: all var(--r432-transition);
}

.radio432-style-yes input:focus,
.radio432-style-yes textarea:focus,
.radio432-style-yes select:focus {
    border-color: var(--r432-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.2);
}

/* ==========================================================================
   SLIDERS & CAROUSELS
   ========================================================================== */

/* Slider Navigation */
.radio432-style-yes .swiper-button-next,
.radio432-style-yes .swiper-button-prev,
.radio432-style-yes .slick-next,
.radio432-style-yes .slick-prev {
    background: var(--r432-bg-card);
    border: 1px solid var(--r432-border-color);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    transition: all var(--r432-transition);
}

.radio432-style-yes .swiper-button-next:hover,
.radio432-style-yes .swiper-button-prev:hover,
.radio432-style-yes .slick-next:hover,
.radio432-style-yes .slick-prev:hover {
    background: var(--r432-primary);
    border-color: var(--r432-primary);
}

/* Slider Pagination */
.radio432-style-yes .swiper-pagination-bullet,
.radio432-style-yes .slick-dots li button {
    background: var(--r432-border-color);
    opacity: 1;
    transition: all var(--r432-transition);
}

.radio432-style-yes .swiper-pagination-bullet-active,
.radio432-style-yes .slick-dots li.slick-active button {
    background: var(--r432-primary);
    transform: scale(1.2);
}

/* ==========================================================================
   TABS & ACCORDIONS
   ========================================================================== */

/* Tabs */
.radio432-style-yes .elementor-tab-title,
.radio432-style-yes .bdt-tab-title {
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--r432-text-secondary);
    font-family: var(--r432-font-primary);
    font-weight: 600;
    padding: 12px 24px;
    transition: all var(--r432-transition);
}

.radio432-style-yes .elementor-tab-title.elementor-active,
.radio432-style-yes .elementor-tab-title:hover,
.radio432-style-yes .bdt-tab-title.bdt-active,
.radio432-style-yes .bdt-tab-title:hover {
    color: var(--r432-primary);
    border-bottom-color: var(--r432-primary);
}

/* Accordions */
.radio432-style-yes .elementor-accordion-item,
.radio432-style-yes .bdt-accordion-item {
    background: var(--r432-bg-card);
    border: 1px solid var(--r432-border-color);
    border-radius: var(--r432-border-radius);
    margin-bottom: var(--r432-spacing-md);
    overflow: hidden;
}

.radio432-style-yes .elementor-accordion-title,
.radio432-style-yes .bdt-accordion-title {
    background: transparent;
    color: var(--r432-text-primary);
    font-family: var(--r432-font-heading);
    font-weight: 600;
    padding: 16px 20px;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

/* Fade In Animation */
@keyframes radio432FadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.radio432-animate-fade-in {
    animation: radio432FadeIn 0.6s ease forwards;
}

/* Pulse Animation */
@keyframes radio432Pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.radio432-animate-pulse {
    animation: radio432Pulse 2s ease infinite;
}

/* Glow Animation */
@keyframes radio432Glow {
    0%, 100% {
        box-shadow: 0 0 5px var(--r432-primary);
    }
    50% {
        box-shadow: 0 0 20px var(--r432-primary), 0 0 30px var(--r432-primary);
    }
}

.radio432-animate-glow {
    animation: radio432Glow 2s ease infinite;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
    .radio432-style-yes .elementor-button {
        padding: 12px 24px;
    }
}

@media (max-width: 768px) {
    .radio432-style-yes .elementor-button {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .radio432-hover-lift:hover,
    .radio432-hover-scale:hover {
        transform: none;
    }
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

/* Text Colors */
.r432-text-primary { color: var(--r432-text-primary) !important; }
.r432-text-secondary { color: var(--r432-text-secondary) !important; }
.r432-text-accent { color: var(--r432-primary) !important; }

/* Background Colors */
.r432-bg-primary { background: var(--r432-bg-primary) !important; }
.r432-bg-secondary { background: var(--r432-bg-secondary) !important; }
.r432-bg-card { background: var(--r432-bg-card) !important; }

/* Border Radius */
.r432-rounded { border-radius: var(--r432-border-radius) !important; }
.r432-rounded-sm { border-radius: var(--r432-border-radius-sm) !important; }
.r432-rounded-lg { border-radius: var(--r432-border-radius-lg) !important; }
.r432-rounded-full { border-radius: 9999px !important; }

/* Shadows */
.r432-shadow { box-shadow: var(--r432-shadow) !important; }
.r432-shadow-lg { box-shadow: var(--r432-shadow-lg) !important; }
.r432-shadow-none { box-shadow: none !important; }
