/* Custom styles for varvaradodina.ru
   Tailwind utility classes remain in HTML, while reusable visual effects live here. */

[x-cloak] { display: none !important; }
        
        .gradient-mesh {
            background: radial-gradient(circle at 50% 50%, rgba(255, 107, 107, 0.15) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(255, 142, 83, 0.12) 0%, transparent 50%),
                        radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
        }
        
        .glass-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        
        .photo-reveal {
            clip-path: inset(0 100% 0 0);
            transition: clip-path 0.8s cubic-bezier(0.19, 1, 0.22, 1);
        }
        
        .photo-reveal.visible {
            clip-path: inset(0 0 0 0);
        }
        
        .swiper-pagination-bullet {
            background: white !important;
            opacity: 0.5;
        }
        
        .swiper-pagination-bullet-active {
            opacity: 1;
            background: #FF6B6B !important;
        }

/* Reusable content page helpers */
.page-shell {
    min-height: 100vh;
    background: #0A0A0A;
    color: #ffffff;
}
.legal-content h1,
.legal-content h2,
.legal-content h3 {
    font-family: 'Unbounded', sans-serif;
}
.legal-content p,
.legal-content li {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
}
.legal-content a {
    color: #FF6B6B;
    text-decoration: underline;
    text-underline-offset: 4px;
}
