/*
Theme Name: physiotherapy-lite-child
Theme URI: https://example.com/
Description: Child tema za edukativnu stilizaciju
Author: Vlado
Author URI: https://example.com/
Template: physiotherapy-lite
Version: 1.0
*/

/* Ovde dodaješ svoj CSS */
body {
    background-color: #ffffff;
}

.menu-box {
    background-color: #ffffff; /* bela traka */
    box-shadow:  0 2px 4px rgba(0, 0, 0, 0.3),  0 6px 12px rgba(0, 0, 0, 0.8),  0 12px 24px rgba(0, 0, 0, 0.4);
    z-index: 10;
    position: relative;
	margin-top: -20px; 
	padding: 10px;
}

.menu-box a:hover {
    color: #7b1fa2;
    text-decoration: underline;
}



@media screen and (min-width: 900px) and (max-width: 992px) {
    .menu-box {
        background-color: #ffffff;
        box-shadow: 0 2px 6px rgba(0,0,0,0.15);      
		
    }
}

.animirani-tekst {
  font-size: 24px;
  opacity: 0.4;
  transform: scale(0.9);
  transition: font-size 0.6s ease, opacity 0.6s ease, transform 0.6s ease;
}

.animirani-tekst.vidljiv {
  font-size: 56px;
  opacity: 1;
  transform: scale(1);
}


.typed-wrapper {
  display: flex;
  justify-content: center;   /* horizontalno */
  align-items: center;       /* vertikalno */
  height: 100vh;             /* zauzima celu visinu ekrana */
  text-align: center;
}

.hero-title {
  font-size: 2rem;
  font-weight: 600;
  white-space: nowrap;
}



