/*
Theme Name: infosiotherapy
Theme URI: https://infosiotherapy.de
Author: Antigravity AI
Author URI: https://infosiotherapy.de
Description: Modern, premium SaaS-inspired WordPress theme for InfoSiotherapy - Preparation Course for Physiotherapy in Germany. Includes page templates, customizer options, Elementor-compatibility, and Tailwind CSS.
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: infosiotherapy
*/

/* WordPress Core Styles alignment */
.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.alignleft {
    float: left;
    margin-right: 1.5em;
    margin-bottom: 1.5em;
}
.alignright {
    float: right;
    margin-left: 1.5em;
    margin-bottom: 1.5em;
}
.alignwide {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.alignfull {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Accessibility */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* Glassmorphism Styles */
.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.glass-panel-dark {
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Hide standard scrollbars for slider if requested */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Premium Dotted Grid Pattern */
.dotted-grid {
    background-image: radial-gradient(rgba(15, 23, 42, 0.08) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
}

/* Custom Overlapping Pill Buttons */
.btn-pill-white {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    color: #0f172a; /* slate-900 */
    border: 1px solid #e2e8f0; /* slate-200 */
    border-radius: 9999px;
    padding-left: 1.5rem; /* pl-6 */
    padding-right: 0.375rem; /* pr-1.5 */
    padding-top: 0.375rem; /* py-1.5 */
    padding-bottom: 0.375rem;
    font-weight: 700;
    font-size: 0.875rem; /* text-sm */
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    gap: 1rem;
}
.btn-pill-white:hover {
    border-color: #94a3b8; /* slate-400 */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.04), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
}
.btn-pill-white .btn-circle {
    width: 2rem; /* w-8 */
    height: 2rem; /* h-8 */
    border-radius: 9999px;
    background-color: #0f172a; /* slate-900 */
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}
.btn-pill-white:hover .btn-circle {
    transform: scale(1.08) rotate(90deg);
}

.btn-pill-black {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background-color: #0f172a; /* slate-900 */
    color: #ffffff;
    border: 1px solid #0f172a;
    border-radius: 9999px;
    padding-left: 1.5rem;
    padding-right: 0.375rem;
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    gap: 1rem;
}
.btn-pill-black:hover {
    background-color: #1e293b; /* slate-800 */
    border-color: #1e293b;
    box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.15);
}
.btn-pill-black .btn-circle {
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    background-color: #ffffff;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #0f172a;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}
.btn-pill-black:hover .btn-circle {
    transform: scale(1.08) rotate(90deg);
}

/* Lenis smooth scrolling compatibility rules */
html.lenis, html.lenis body {
    height: auto;
}
.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}
.lenis.lenis-stopped {
    overflow: hidden;
}
.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

/* Custom premium float animation for hero banner */
@keyframes premiumFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}
.animate-float-1 {
    animation: premiumFloat 4s ease-in-out infinite;
}
.animate-float-2 {
    animation: premiumFloat 5s ease-in-out infinite;
    animation-delay: 1.5s;
}

