/* File Name: splash.css
Path: wp-content/plugins/navisa-splash-screen/assets/css/splash.css
Module: Splash Screen Styles
Structure Location: plugins/navisa-splash-screen/assets/css/splash.css */

/* ========== Splash Screen Styles ========== */

· {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }

html.navisa-splash-active,
html.navisa-splash-active body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
overflow: hidden;
position: fixed;
touch-action: manipulation;
-ms-touch-action: manipulation;
}

html.navisa-splash-active body {
display: flex;
align-items: center;
justify-content: center;
background-color: #ffffff;
font-family: 'IRANSans', 'Vazirmatn', 'Tahoma', sans-serif;
direction: rtl;
}

.navisa-splash-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
padding: 24px;
width: 100%;
}

.navisa-splash-icon {
width: 120px;
height: 120px;
border-radius: 28px;
object-fit: contain;
margin-bottom: 24px;
animation: navisa-splash-zoom-in 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
opacity: 0;
transform: scale(0.5);
}

.navisa-splash-text {
font-size: 1.1rem;
font-weight: 600;
color: #212121;
line-height: 1.8;
animation: navisa-splash-fade-up 0.6s ease 0.2s forwards;
opacity: 0;
transform: translateY(20px);
}

@keyframes navisa-splash-zoom-in {
to {
opacity: 1;
transform: scale(1);
}
}

@keyframes navisa-splash-fade-up {
to {
opacity: 1;
transform: translateY(0);
}
}