
:root{
  --violet:#8e2de2;
  --lavender:#b388ff;
  --deep-violet:#5e35b1;
  --soft-violet:#d1c4e9;
  --ink:#0b0b12;
  --text:#eee;
}

 html {
      scroll-behavior: smooth;
    }
 body {
  margin: 0;
  min-height: 100vh;
  background: #070707; /* još tamnija pozadina */
  color: #eee;
  font-family: 'Uncial Antiqua', serif;
  position: relative;
  overflow-x: hidden;
}
body {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  pointer-events: auto;
}

body::before, body::after {
  content: "";
  position: fixed;
  border-radius: 50%;
  filter: blur(60px); /* manje zamućenje za oštrije krugove */
  opacity: 0.7;       /* jača providnost */
  pointer-events: none;
  animation: pulse 6s ease-in-out infinite;
  mix-blend-mode: screen;
}

body::before {
  width: 500px;
  height: 500px;
  top: 20%;
  left: 20%;
  background: radial-gradient(circle, #5577ff 0%, transparent 60%);
}

body::after {
  width: 450px;
  height: 450px;
  top: 60%;
  left: 65%;
  background: radial-gradient(circle, #d1d1ff 0%, transparent 70%);
  animation-delay: 3s;
}
 
@keyframes pulse {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.15);
  }
}

.title-blok {
    display: flex;
    justify-content: center;
      flex-direction: column;
    align-items: center;
   padding: 20px 20px;
    background: transparent;
    margin-top: 40px;
   
  
}
 
.mocna-akademija {
  font-family: 'Uncial Antiqua', serif;
  font-size: 5em;
  background: linear-gradient(135deg, #b24c85, #8e2de2, #4a00e0, #ffe600);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: mysticGradient 6s ease infinite;
  text-align: center;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
  letter-spacing: 2px;
  min-width:100%;
}

.title-moc{
     font-family: 'Uncial Antiqua', serif;
  font-size: 2.2em;
background: linear-gradient(135deg, #b24c85, #FFF, #4a00e0, #FFF);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: mysticGradient 6s ease infinite;
  text-align: center;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
  letter-spacing: 2px;
  min-width:100%; 
    
}
.row-two {
  font-size: 1.4rem;
  font-family: 'Cinzel Decorative', cursive;
  color: #f3e5ab;

  letter-spacing: 1px;
  text-shadow: 0 0 8px rgba(142,45,226,.4);
  animation: fadeInSubtitle 3s ease forwards;
}

@keyframes mysticGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.misticna-poruka {
  max-width: 50%;
  margin: 40px auto;
  padding: 20px 30px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid var(--lavender);
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(179,136,255,0.5);
  color: var(--lavender);
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: center;
  backdrop-filter: blur(3px);
}


@keyframes glowFade {
  0% {
    box-shadow: 0 0 0px rgba(255, 215, 0, 0);
  }
  100% {
    box-shadow: 0 0 20px rgba(179,136,255,0.5);
  }
}

    header {
      background-image: url('img/lejla mocna.png');
      background-size: contain;
      background-repeat:no-repeat;
      background-position: center;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      padding: 2rem;
     background-attachment: fixed;
    }
  header h1 {
    font-size: 3rem;
    text-shadow: 2px 2px 10px #000;
    background-color: var(--deep-violet);
    padding: 10px;
}
    nav {
      position: fixed;
      top: 0;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.8);
      display: flex;
      justify-content: center;
      gap: 2rem;
      padding: 1rem;
      z-index: 1000;
      transition: transform 0.3s ease-in-out;
    }

    #nav {
  display: flex;
  align-items: center;
  gap: 25px; /* razmak između elemenata */
  font-family: 'Uncial Antiqua', serif; /* ako želiš da prati stil sajta */
}

.phone-left {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--lavender);
  font-weight: bold;
  font-size: 1em;
  user-select: none;
      margin-left: 50%;
    position: absolute;
}

.phone-left svg {
  fill: var(--lavender);
}

.phone-left a {
  color: var(--lavender);
  text-decoration: none;
}

.phone-left a:hover {
  text-decoration: underline;
}

    nav a {
      color: #fff;
      text-decoration: none;
      font-weight: bold;
    }
    .menu-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      position: fixed;
      top: 15px;
      right: 20px;
      z-index: 1001;
    }
    .menu-toggle div {
      width: 25px;
      height: 3px;
      background-color: #fff;
      margin: 4px 0;
      transition: 0.4s;
    }
    @media (max-width: 768px) {
        nav {
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 319px;
        transform: translateX(100%);
        align-items: baseline;
        justify-content: stretch;
        /* margin-top: 20px; */
        padding-top: 83px;
    }
    header h1 {
    font-size: 1.4rem;
    text-shadow: 2px 2px 10px #000;
    background-color: var(--deep-violet);
    padding: 2px;
}
p {
 
    font-size: 1.1em !important;
 
}

.title-moc{
    font-size:23px !important;
}
.row-two {
  font-size: 1.4rem;
  
}
.title-blok {
 
    margin-left: 20px;
    margin-right: 20px;
}

.title-blok {
    display: flex;
    justify-content: center;
      flex-direction: column;
 
  
}
.misticna-poruka {
    max-width: 82%;
}
.mocna-akademija {
 
    font-size: 3em;
   
}

.molitva {
    margin: 0;
    padding: 10px !important;
  
}
    .floating-buttons {
        top: 59% !important;
    }
@media (max-width: 768px) {
  #nav {
    flex-wrap: wrap; /* dozvoli da elementi prelaze u novi red */
  }
span.phone-left {
    display: flex;
    position: absolute;
    margin-top: 83%;
    align-items: center;
    margin-right: 53%;
    font-size: 1.3em;
     min-width: 205px;

}

}
      nav.active {
        transform: translateX(0);
      }
      .menu-toggle {
        display: flex;
      }
    }
    section {
      padding: 4rem 2rem;
      max-width: 900px;
      margin: 0 auto;
      margin-top: 20px;
      border: 1px solid var(--violet);
      border-radius: 12px;
      box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    }
    section:nth-of-type(even) {
      background: linear-gradient(135deg, #1b0c1d, #320e36);
    }
    section:nth-of-type(odd) {
      background: linear-gradient(135deg, #0e0e0e, #1c1c2b);
    }
    section:nth-of-type(1) {
      background: linear-gradient(135deg, #250f2d, #431642);
    }
    section:nth-of-type(2) {
      background: linear-gradient(135deg, #130b17, #2e1a3a);
    }
    section:nth-of-type(3) {
      background: linear-gradient(135deg, #1a0f1e, #351a47);
    }
    section:nth-of-type(4) {
      background: linear-gradient(135deg, #1e1423, #44254f);
    }
    section:nth-of-type(5) {
      background: linear-gradient(135deg, #1a0f1c, #3f1e4b);
    }
   h2 {
    border-bottom: 0;
    text-align: center;
    color: var(--lavender);
    margin-bottom: 20px;
    font-size: 2em;
    background: rgba(142,45,226,0.08);
    padding: 10px 14px;
    border-radius: 12px;
}
  p {
    text-align: center;
    font-size: 1.2em;
    line-height: 1.5;
}

    .floating-buttons {
      position: fixed;
      top: 50%;
      right: 10px;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1001;
    }
    .floating-buttons a {
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      border-radius: 50%;
      color: white;
      box-shadow: 0 0 10px rgba(0,0,0,0.6);
      text-decoration: none;
    }
    .floating-buttons a.whatsapp {
      background-color: #25D366;
    }
    .floating-buttons a.viber {
      background-color: #7360F2;
    }
    .back-to-top {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #d9a7f0;
      color: #000;
      padding: 10px 15px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      z-index: 100;;
    }
    .testimonial {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--violet);
      transform: rotate(-2deg);
      border-radius: 10px;
      padding: 1rem;
      margin: 2rem 0;
      position: relative;
      box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .testimonial:hover {
      transform: rotate(0deg) scale(1.03);
      box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
    }
    .testimonial::before-disabled {
      content: "\2727";
      position: absolute;
      top: -10px;
      left: 10px;
      font-size: 24px;
      color: #b24c85;
    }
    .faq {
      margin-bottom: 2rem;
    }
    .contact {
      background: linear-gradient(135deg, #420b32, #6a1e54);
      color: white;
      padding: 2rem;
      text-align: center;
      border: 1px solid var(--violet);
      border-radius: 12px;
    }
    .contact a {
      color: white;
      text-decoration: underline;
    }

 #usluge {
  position: relative;
 
  background-size: contain;
  padding: 40px;
  z-index: 0;
}

.usluge-kartice {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .usluge-kartice {
    grid-template-columns: 1fr;
  }
  
         header {
         background-image: url('img/vidovita lej.jpg');
        background-size: contain;
        background-repeat: no-repeat;
        justify-content: space-evenly;
        height: 55vh;
        background-position-y: top;
     
}
.misticna-poruka.aos-init.aos-animate {
    margin-top: 302px;
}
}

/* Kartice sa efektima i slikama */
.kartica {
  background-color: #111;
  border: 2px solid var(--violet);
  border-radius: 16px;
  padding: 20px 20px 30px;
  color: #f0e6f6;
  box-shadow: 0 0 10px rgba(178, 76, 133, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  position: relative;
  text-align: left;
}

.kartica:hover {
  transform: scale(1.03) rotate(-0.5deg);
  box-shadow: 0 0 25px rgba(179,136,255,0.5);
  border-color: var(--lavender);
}

/* Ikonica unutar kartice */
.kartica-ikonica {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  display: block;
}

/* Napomena stil */
.usluge-napomena {
  margin-top: 40px;
  background-color: #b24c85;
  color: var(--lavender);
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
  padding: 25px;
  border-radius: 12px;
  border: 2px solid var(--lavender);
  box-shadow: 0 0 15px rgba(179,136,255,0.5);
}

.usluge-napomena {
  margin-top: 40px;
  background-color: #b24c85;
  color: var(--lavender);
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
  padding: 25px;
  border-radius: 12px;
  border: 2px solid var(--lavender);
  box-shadow: 0 0 15px rgba(179,136,255,0.5);
}
/* Responsive */
@media (max-width: 768px) {
  #usluge {
    background-image: none;
    padding: 20px;
  }

  .sveca-mobile {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 20px auto 0;
  }
}


#o-meni {
  max-width: 600px;
  margin: 0 auto;
  font-family: 'Georgia', serif;
  color: #f0e6f6;
  line-height: 1.6;
  padding: 20px;
}

#o-meni h2 {
  text-align: center;
  color: var(--lavender); /* tamno zlatna */
  margin-bottom: 20px;
}

#o-meni p {
  margin-bottom: 15px;
}

.citat {
  margin-top: 30px;
  padding: 15px 25px;
  background: linear-gradient(135deg, var(--soft-violet), var(--violet));
  border-left: 5px solid var(--deep-violet);
  font-style: italic;
  color: #5a3e1b;
  box-shadow: 0 4px 10px rgba(184, 134, 11, 0.5);
  border-radius: 8px;
  text-align: center;
  font-size: 1.5em;
}
.e-con-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
 
}

.e-con-child {
  flex: 1 1 280px;
  max-width: 280px;
  text-align: center;
  position: relative;
  background-color: #111;
  border: 1px solid var(--violet);
  border-radius: 10px;
  padding: 20px 15px 30px;
  box-shadow: 0 6px 15px rgba(178, 76, 133, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.e-con-child:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 25px rgba(178, 76, 133, 0.9);
}

.wd-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wd-list li {
  position: relative;
  padding: 0;
  margin: 0;
}

.wd-list img {
  display: block;
  margin: 0 auto 15px;
  border-radius: 12px;
  width: 90px;
  height: 90px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(178, 76, 133, 0.7);
}

.icon {
  display: inline-block;
  font-size: 28px;
  color: #FFF;
  margin-bottom: 10px;
  user-select: none;
}

.list-content {
  font-family: 'Arial', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #FFF;
  margin-bottom: 10px;
}

.wd-fill {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
  text-indent: -9999px;
}

@media (max-width: 900px) {
  .e-con-inner {
    gap: 20px;
  }
  .e-con-child {
    max-width: 100%;
    flex: 1 1 100%;
  }
}
#molitva-box {
  position: relative;
  background: #f7e9d7; /* boja starog pergamenta */
  border: 3px solid #b28a56; /* zlatno-smeđi okvir */
  border-radius: 25px 10px 25px 10px; /* izvijeni uglovi */
  padding: 30px 60px;
  max-width: 600px;
  margin: 40px auto 0;
  box-shadow: 0 0 15px rgba(178, 138, 86, 0.7);
  font-family: 'Georgia', serif;
  color: #5a3e1b;
  position: relative;
}

.molitva {
  margin: 0;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.5;
  text-align: center;
}

.molitva footer {
  margin-top: 15px;
  font-weight: bold;
  font-style: normal;
  font-size: 1rem;
  color: #7a5c32;
}

/* Sveće sa strane */
.candle {
  position: absolute;
  width: 40px;
  top: 50%;
  transform: translateY(-50%);
}

.candle-left {
  left: -50px;
}

.candle-right {
  right: -50px;
}
.molitva-wrapper {
  position: relative;
  background: #2c1f0e; /* tamno smeđa boja pergamenta */
  border: 5px solid #b28a56; /* zlatni okvir */
  border-radius: 30px 10px 30px 10px;
  padding: 40px 60px;
  max-width: 600px;
  margin: 40px auto;
  box-shadow: 0 0 25px rgba(178, 138, 86, 0.8);
  font-family: 'Uncial Antiqua', 'Georgia', serif;
  color: var(--lavender); /* zlatna boja */
  text-shadow: 
    0 0 1px #f9e79f,   /* svetli zlatni odsjaj */
    0 0 2px #b28a56;  /* tamniji zlatni sjaj */
}

.molitva {
  margin: 0;
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: center;
  border: 2px solid var(--lavender);
  padding: 20px;
  border-radius: 20px;
  background: rgba(255 255 224 / 0.1); /* blago providna svetla pozadina */
  box-shadow:
    inset 0 0 10px #f9e79f,
    inset 0 0 15px #b28a56;
}

.molitva footer {
  margin-top: 15px;
  font-weight: 700;
  font-style: normal;
  font-size: 1rem;
  color: var(--lavender);
}

/* Stilizacija H3 naslova unutar kartica */
.kartica h3 {
  color: var(--lavender);
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-family: 'Cinzel', serif; /* Mističan, biblijski stil */
  text-shadow: 0 0 5px rgba(179,136,255,0.5);
}

/* Stilizacija li elemenata sa krstom umesto tačke */
.kartica ul {
  list-style: none;
  padding-left: 0;
}

.kartica ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  line-height: 1.5;
  color: #f0e6f6;
  font-size: 1rem;
}

.kartica ul li::before {
  content: "\271D"; /* Unicode krst ✝ */
  position: absolute;
  left: 0;
  top: 0;
  color: var(--lavender);
  font-size: 18px;
}


/* Sveće na uglovima */

.candle.corner {
  position: absolute;
  width: 90px;
  height: 90px;
  pointer-events: none;
  user-select: none;
}

.candle.top-left {
  top: -25px;
  left: -25px;
  transform: rotate(-10deg);
}

.candle.top-right {
  top: -25px;
  right: -25px;
  transform: rotate(15deg);
}

.candle.bottom-left {
  bottom: -25px;
  left: -25px;
  transform: rotate(10deg);
}

.candle.bottom-right {
  bottom: -25px;
  right: -25px;
  transform: rotate(-15deg);
}

    #faq {
      max-width: 700px;
      margin: auto;
      margin-top:15px;
      margin-bottom: 15px;
    }

  .section-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2.5rem;
  text-align: center;
  color: var(--lavender);
  text-shadow: 0 0 5px rgba(179,136,255,0.5),
               0 0 10px rgba(179,136,255,0.5);
  margin-bottom: 30px;
  position: relative;
  animation: pulseGlow 4s infinite ease-in-out;
}


    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border: 2px solid #b28a56;
      border-radius: 8px;
      padding: 15px 20px;
      font-weight: bold;
      font-size: 1.2rem;
      color: var(--lavender);
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
      background-color: #1c1c1c;
      box-shadow: 0 0 8px #b28a56;
    }

    .faq-toggle {
      font-size: 1.8rem;
      font-weight: bold;
      color: var(--lavender);
      transition: transform 0.3s ease;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.4s ease;
      background-color: #0e0e0e;
      padding: 0 20px;
      color: #eee;
      font-style: italic;
      border-left: 2px solid #b28a56;
      margin-bottom: 20px;
      box-shadow: inset 0 0 8px #b28a56;
    }

    .faq.open .faq-answer {
      max-height: 500px;
      padding: 15px 20px;
    }

    .faq.open .faq-toggle {
      transform: rotate(45deg);
      color: #f9e79f;
    }

    .faq-question:hover {
      background-color: #2a1a33;
      box-shadow: 0 0 15px #f9e79f;
    }
.pentagon-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
  text-align: center; /* Centriraj tekst */
}

.pentagon-list li {
  position: relative;
  padding-left: 0; /* Uklonimo padding za centar */
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #f5e9ff;
  line-height: 1.6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px; /* razmak između ikone i teksta */
}

.pentagon-list li::before {
  content: "⬟"; /* Pentagon unicode znak */
  font-size: 18px;
  color: var(--lavender);
}
/* Padajuće zvezde */
.stars-container, .meteors-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Zvezda */
.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: radial-gradient(circle, #cc99ff, #5577ff);
  border-radius: 50%;
  animation: fallStar linear infinite;
  opacity: 0.8;
}

@keyframes fallStar {
  0% {
    transform: translateY(-5vh);
    opacity: 1;
  }
  100% {
    transform: translateY(110vh);
    opacity: 0;
  }
}

/* Kometa */
.meteor {
  position: absolute;
  width: 2px;
  height: 100px;
  background: linear-gradient(45deg, #c0c0ff, transparent);
  transform: rotate(45deg);
  animation: meteorFall 3s linear infinite;
  opacity: 0.8;
}

@keyframes meteorFall {
  from {
    transform: translate(-20vw, -20vh) rotate(45deg);
    opacity: 1;
  }
  to {
    transform: translate(120vw, 120vh) rotate(45deg);
    opacity: 0;
  }
}


#mute-btn:hover {
  color: #b24c85;
  transform: scale(1.2);
  transition: transform 0.3s, color 0.3s;
}


.contact-buttons {
  margin-top: 20px;
}

.viber-btn,
.whatsapp-btn {
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  margin-right: 10px;
  border-radius: 5px;
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.viber-btn {
  background-color: #7360f2;
}

.whatsapp-btn {
  background-color: #25d366;
}

.viber-btn:hover,
.whatsapp-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

 

.contact-buttons {
  margin-top: 20px;
  text-align: center;
}

.phone-number {
  text-align: center;
  color: yellow;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 10px;
}


/*KOMENTARI WHATS UP*/

  /* Container & title */
  #wa-widget-amina{font-family:system-ui,-apple-system,Segoe UI,Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif;margin:24px auto;max-width:1200px}
  .waw-title{text-align:center;font-size:1.6rem;margin:0 0 16px;color:#0B141A}

  /* Grid: 3 per row on desktop */
 /* Container & title */
  #wa-widget-amina{font-family:system-ui,-apple-system,Segoe UI,Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif;margin:24px auto;max-width:1200px}
  .waw-title{text-align:center;font-size:1.6rem;margin:0 0 16px;color:#0B141A}

  /* Grid: 3 per row on desktop */
  
  .waw-title{
      
      font-weight:600;
      color:#fff;
  }
  .waw-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
  @media (max-width:1024px){.waw-grid{grid-template-columns:repeat(2,1fr)}}
  @media (max-width:640px){.waw-grid{grid-template-columns:1fr}}

  /* Card */
  .waw-card{background:#fff;border-radius:18px;box-shadow:0 10px 24px rgba(0,0,0,.08);overflow:hidden;border:1px solid rgba(0,0,0,.06)}

  /* Status bar (time, signal, wifi, battery) */
  .waw-statusbar{background:#0b141a;color:#E7F5EE;display:flex;align-items:center;justify-content:space-between;padding:6px 10px;font-size:.82rem}
  .sb-left{opacity:.95}.sb-right{display:flex;align-items:center;gap:8px}
  .sb-ico{width:18px;height:18px;fill:#E7F5EE;opacity:.9}
  .batt{width:30px;height:16px}

  /* Header (name + phone/video) */
  .waw-header{background:#075E54;color:#E7F5EE;padding:10px 12px;display:flex;align-items:center;justify-content:space-between}
  .waw-contact{display:flex;align-items:center;gap:10px}
  .waw-avatar-img{width:28px;height:28px;border-radius:50%;display:block;object-fit:cover;border:2px solid #25D366}
  .waw-name{font-weight:700;line-height:1}
  .waw-status{font-size:.78rem;opacity:.9}
  .waw-icons{display:flex;align-items:center;gap:10px}
  .waw-ico{width:20px;height:20px;fill:#E7F5EE;opacity:.95}

  /* Chat area */
  .waw-chat{
    background:#ECE5DD;padding:16px;min-height:140px;position:relative;
    background-image:
      radial-gradient(ellipse at top left, rgba(0,0,0,.04), transparent 50%),
      radial-gradient(ellipse at bottom right, rgba(0,0,0,.03), transparent 50%),
      url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="160" height="80" viewBox="0 0 160 80"><g fill="%23d7cfbf" opacity=".25"><circle cx="10" cy="10" r="1.2"/><circle cx="60" cy="30" r="1.2"/><circle cx="120" cy="50" r="1.2"/></g></svg>');
  }
  .waw-bubble{position:relative;max-width:92%;padding:10px 12px;border-radius:12px;margin:6px 0;font-size:.95rem;line-height:1.42;word-wrap:break-word}
  .waw-bubble.incoming{background:#fff;color:#111;margin-right:auto;border:1px solid rgba(0,0,0,.06)}
  .waw-bubble.incoming:after{content:"";position:absolute;left:-6px;top:10px;border-width:6px;border-style:solid;border-color:transparent #fff transparent transparent;filter:drop-shadow(-1px 0 0 rgba(0,0,0,.06))}
  .waw-time{display:inline-block;margin-left:8px;font-size:.78rem;color:#6b7280}
  .seen{color:#34B7F1} /* WhatsApp plava ✓✓ */

  /* CTA button */
  .waw-button{display:block;margin:20px auto 0;width:fit-content;background:#25D366;color:#083B32;padding:12px 18px;border-radius:999px;text-decoration:none;font-weight:700;box-shadow:0 6px 16px rgba(37,211,102,.3);transition:transform .15s ease,box-shadow .15s ease}
  .waw-button:hover{transform:translateY(-1px);box-shadow:0 10px 22px rgba(37,211,102,.35)}
  
  .hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

/* VIDEO KONTEJNER */
.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -2;
  background: url("img/pozadina.jpg") center/cover no-repeat; /* fallback */
}

/* VIDEO */
#bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

/* FALLBACK slika ako video ne radi */
.fallback-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("img/pozadina.jpg") center/cover no-repeat;
  z-index: -3;
}

/* Tamni sloj preko videa */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9));
  z-index: -1;
}

/* Sadržaj */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.hero-title {
  font-family: 'Uncial Antiqua', serif;
  font-size: 4em;
  background: linear-gradient(135deg, #fff, #b24c85, #fff);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: mysticGradient 6s ease infinite;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.hero-subtitle {
  font-size: 1.4em;
  margin-top: 15px;
  color: #f5e9ff;
  text-shadow: 0 0 10px #000;
}

.hero-btn {
  display: inline-block;
  margin-top: 25px;
  background: linear-gradient(90deg, #b24c85, #8e2de2);
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1em;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 0 15px rgba(178, 76, 133, 0.4);
}

.hero-btn:hover {
  background: linear-gradient(90deg, #ffe600, #b24c85);
  box-shadow: 0 0 25px rgba(179,136,255,0.5);
  transform: scale(1.05);
}

@keyframes mysticGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5em;
  }
  .hero-subtitle {
    font-size: 1.1em;
  }
}

h2.section-title.aos-init.aos-animate {
    background: blue !important;
}

.section-title{
  border:2px solid var(--violet) !important;
  color: var(--lavender) !important;
  background: rgba(142,45,226,0.08) !important;
  border-radius: 12px !important;
}

body::before, body::after { content: none !important; display:none !important; }

.testimonial::before-disabled{display:none !important; content:none !important;}
