/* GENERAL */
* { box-sizing: border-box; margin:0; padding:0; }
body { font-family: Inter, sans-serif; background: #0b1525; color: #e6eef6; line-height: 1.55; }
.container { width: 90%; max-width: 1200px; margin: auto; }
.muted { color: #9eb4c9; }

/* BANNER */
.banner { width: 100%; background: linear-gradient(135deg, #FCFD00, #ecec05); padding: 14px 20px; text-align: center; font-weight: 700; color: #062826; }

/* HEADER */
.header { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; }
.logo img {
    height: 100px;       /* po potrebi promeni */
    width: auto;
    display: block;
}
nav a { margin-left: 18px; color: #9eb4c9; text-decoration: none; font-weight: 600; }
nav a.cta { background: #FCFD00; color: #042021; padding: 8px 12px; border-radius: 10px; }

/* HERO */
.hero { padding: 10px 0; align-items: center; }
.lead { color: #9eb4c9; margin: 12px 0 18px; }
.btn { background: #FCFD00; color: #042021; padding: 12px 16px; border-radius: 12px; text-decoration: none; font-weight: 700; }
.hero-video video { width: 100%; border-radius: 14px; box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6); }

.fullwidthimg{
  width: 100vw;
  height: auto;
  display: block;
}

/* PRODUCTS */
.products h2 { margin-bottom: 18px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 12px; }
.card { background: rgba(255, 255, 255, 0.03); padding: 18px; border-radius: 14px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); }

/* CONTACT */
.contact { padding: 40px 0; }
.slide { display: none; }
.slide img { width: 100%; height: auto; object-fit: cover; }
.fade { animation: fadeEffect 1.2s ease-in-out; }

@keyframes fadeEffect { from { opacity:0.2; } to { opacity:1; } }
.fullwidth-image {
    text-align: center;        /* centriranje slike */
    margin: 50px 0;            /* razmak od prethodne i sledeće sekcije */
}

.fullwidth-image img {
    width: 80%;                /* maksimalna širina 80% ekrana */
    max-width: 800px;          /* opcionalno: ne prevelika slika na desktopu */
    height: auto;              /* proporcionalna visina */
    display: inline-block;
    border-radius: 10px;       /* za lepši izgled, opcionalno */
    box-shadow: 0 8px 30px rgba(0,0,0,0.3); /* opcionalno senka */

/* FOOTER */
.footer { text-align: center; padding: 20px; color: #9eb4c9; }

/* RESPONSIVE */
@media (max-width: 850px) {
  .hero { grid-template-columns: 1fr; }
  nav { display: none; }
  .header { flex-direction: column; text-align: center; }
}
