html, body {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

.hero-section{
  position: relative;
  min-height: 45vh;          
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background-image: url("./Agradisslike/Agradisslike18.PNG");
  background-size: cover;     
  background-position: center;
  background-repeat: no-repeat;

  background-color: #0f2a6d;  
  padding: 64px 16px;
}


.hero-section::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.30);
}

.hero-inner{
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-inner h2{
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
  text-shadow: 0 6px 20px rgba(0,0,0,0.6);
}

.hero-inner p{
  font-size: 1.1rem;
  color: white;
  text-shadow: 0 4px 16px rgba(0,0,0,0.6);
}

.service-box{
  background: white;
  padding: 22px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}
.service-box {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 30px rgba(0,0,0,0.15);
}
.site-logo {
  width: 44px;
  height: 44px;
  object-fit: cover;      /* popuni krug */
  border-radius: 50%;     /* savršeni krug */
  display: block;
}
.site-logo {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

#mobileMenu { display: none; }
#mobileMenu.open { display: block; }
