/* Palika Vinayak Hospital - Custom Styles */

.hover-lift {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hover-lift:hover {
    transform: translateY(-10px);
}

@keyframes dash {
    from { stroke-dasharray: 0 100; }
    to { stroke-dasharray: 100 0; }
}

.animate-pulse-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: dash-animation 3s linear infinite;
}

@keyframes dash-animation {
    to { stroke-dashoffset: 0; }
}

.bg-pattern {
    background-color: #f7f6f7;
    background-image: radial-gradient(#92363b 0.5px, transparent 0.5px), radial-gradient(#92363b 0.5px, #f7f6f7 0.5px);
    background-size: 20px 20px;
    background-position: 0 0,10px 10px;
    opacity: 0.1;
}

/* Soft Reveal Animations */
@keyframes soft-fade-up {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-soft {
    animation: soft-fade-up 1s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

.reveal-delay-1 { animation-delay: 0.15s; opacity: 0; }
.reveal-delay-2 { animation-delay: 0.3s; opacity: 0; }
.reveal-delay-3 { animation-delay: 0.45s; opacity: 0; }
.reveal-delay-4 { animation-delay: 0.6s; opacity: 0; }
.reveal-delay-5 { animation-delay: 0.75s; opacity: 0; }
.reveal-delay-6 { animation-delay: 0.9s; opacity: 0; }

/* Subtle Background Zoom (Ken Burns) */
@keyframes ken-burns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.animate-ken-burns {
    animation: ken-burns 20s ease-out forwards;
}

/* Gentle Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

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

/* Gallery Page Styles */
.gallery-container {
    background-color: #ffffff;
    background-image: 
        linear-gradient(to right, rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    min-height: 100vh;
}

.card-hover { transition: all 0.4s ease; }
.card-hover:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); }

#photo-modal, #video-modal { display: none; }
#photo-modal.active, #video-modal.active { display: flex; }

.tab-btn.active { background-color: #92363B; color: #fff; box-shadow: 0 10px 20px rgba(146, 54, 59, 0.3); }
.tab-btn:not(.active) { color: #64748b; background-color: transparent; }

.view-section { display: none; }
.view-section.active { display: block; }

/* Treatments Page Styles */
.treatment-card:hover .treatment-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Blog Detail Page Styles */

/* Global Prose/Rich Text Content Styles */
.prose ul {
    list-style-type: disc !important;
    padding-left: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}
.prose ul li {
    margin-bottom: 0.5rem !important;
    padding-left: 0.5rem !important;
}
.prose ul ul, .prose ol ul {
    list-style-type: circle !important;
    padding-left: 1.25rem !important;
}
.prose ol {
    list-style-type: decimal !important;
    padding-left: 1.5rem !important;
}
.prose p { margin-bottom: 1.5rem; line-height: 1.8; color: #4a5568; }
.prose h2 { font-size: 1.5rem; font-weight: 800; color: #1a202c; margin-top: 2.5rem; margin-bottom: 1rem; }

.dropcap::first-letter {
    float: left;
    font-size: 4rem;
    line-height: 0.8;
    font-weight: 800;
    color: #92363B;
    margin-right: 0.75rem;
    margin-top: 0.5rem;
}

