body {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 20px;
    color: #222;
    background: #f9f9f9;
    line-height: 1.6; 
}/* Reset i osnovno */
* { box-sizing: border-box; margin:0; padding:0; }

/* Flex i grid pomoćnici */
.flex { display: flex; }
.between { justify-content: space-between; }
.items-center { align-items: center; }

/* Logo */
.logo { font-family: 'Inter', sans-serif; }
.logo-bold { font-weight: 800; font-size: 1.5rem; }
.logo-light { font-weight: 300; font-size: 1.5rem; }

/* Header, footer, sekcije */
header, footer { background: #fdfcfc; }
section { padding: 4rem 1.5rem; }

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Poravnaj sadržaj na dno */
}

.hero-bg {
    background-image: url('/static/images/GasiFB.jpg');
    background-size: cover;         /* Popuni celu sekciju, može odseći deo slike */
    background-repeat: no-repeat;
    background-position: top center;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
    opacity: 0.8;
}





/* Hero 
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-bg {
  position: absolute; inset:0;
  background: linear-gradient(to br, #dc9b48, #f06, #00f);
  opacity: .8;
  /* ili background-image: url(...); background-size: cover; 
}
.hero-content { position: relative; z-index:10; color:#fff; max-width:600px; }
.hero-content h1 { font-size:2.5rem; margin-bottom:1rem; line-height:1.2; }
.hero-content p  { font-size:1.25rem; margin-bottom:2rem; }*/

/* Gumb */
.btn-primary {
  background: rgba(0,0,0,.8);
  color: #fff;
  padding: .75rem 2rem;
  border-radius: .375rem;
  text-decoration: none;
  transition: background .2s;
}
.btn-primary:hover { background: rgba(0,0,0,.95); }

/* Logos grid */
.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px,1fr));
  gap:2rem;
  opacity:.6;
}
.logos-grid img { width: auto; height: 3rem; object-fit: contain; }

/* Footer */
.footer { padding: 2rem 1.5rem; border-top:1px solid #e5e5e5; }
.footer-nav a { margin-left:1rem; color:#555; text-decoration:none; }
.footer-nav a:hover { color:#000; }
/* General Styles */
.values {
    padding: 4rem 0; /* Vertical padding for the section */
    background-color: #f9f9f9; /* Light background color */
}

.values h2 {
    font-size: 2.5rem; /* Font size for the heading */
    color: #333; /* Dark text color */
    margin-bottom: 1.5rem; /* Spacing below the heading */
}

.values ul {
    list-style-type: none; /* Remove default list style */
    padding: 0; /* Remove default padding */
}

.values li {
    background-color: #fff; /* White background for list items */
    border: 1px solid #ddd; /* Light border around list items */
    border-radius: 5px; /* Rounded corners */
    padding: 1rem; /* Padding inside list items */
    margin-bottom: 1rem; /* Spacing between list items */
    transition: transform 0.2s; /* Smooth transition for hover effect */
}

.values li:hover {
    transform: scale(1.02); /* Slightly enlarge on hover */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Shadow effect on hover */
}

.values p {
    font-size: 1.2rem; /* Font size for the paragraph */
    color: #666; /* Gray text color */
    margin-top: 2rem; /* Spacing above the paragraph */
}



@keyframes fadeInText {
    from { opacity: 0; transform: translateY(20px);}
    to   { opacity: 1; transform: translateY(0);}
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.65); /* crni overlay, 50% providan */
    z-index: 1;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1.2rem;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}

.hero-content p {
    font-size: 1.3rem;
    font-weight: 400;
    color: #f3f3f3;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.hero-content ul {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}
.hero-content ul li {
    font-size: 1.15rem;
    color: #e0e0e0;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 2rem 1rem 3rem 1rem; /* Dodaj više dole ako želiš više prostora od dna */
    text-align: center;
    animation: fadeInText 2s ease-in;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.hero-content ul li::before {
    content: "•";
    color: hsl(200, 25%, 95%);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}
/*body { background: red !important; }*/
/* ... dodaj slične klase za ostale sekcije (dna, services, cards itd.) */
.menu-btn {
    background-color: transparent; /* Prozirna pozadina */
      border: none ;
    color: #333; /* Boja teksta */
    padding: 10px 20px; /* Unutrašnji razmak */
    font-size: 16px; /* Veličina fonta */
    cursor: pointer; /* Kursor pri pregledu */
    transition: background-color 0.3s, color 0.3s; /* Efekti prelaza */
}

.menu-btn:hover {
    background-color: #333; /* Pozadina pri prelazu */
    color: #fff; /* Boja teksta pri prelazu */
}
.values {
    background-color: #f9f9f9; /* Svetla pozadina */
    border-radius: 10px; /* Zaobljeni uglovi */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Senka */
}
/* Dodavanje skalabilnosti za manje uređaje */
/* Dodavanje skalabilnosti za manje uređaje */
@media (max-width: 768px) {
    .menu-btn {
        font-size: 14px; /* Smanjena veličina fonta */
        padding: 8px 15px; /* Manji unutrašnji razmak */
        width: 100%; /* Dugme zauzima celu širinu */
        max-width: 300px; /* Maksimalna širina dugmeta */
        text-align: center; /* Centriran tekst */
        margin: 10px auto; /* Centrirano na stranici */
    }
}


h2 {
    color: #2c3e50; /* Tamna boja za naslov */
}

ul {
    list-style-type: none; /* Uklanjanje oznaka sa liste */
    padding: 0; /* Uklanjanje padding-a */
}

li {
    position: relative; /* Pozicioniranje za pseudo-element */
    padding-left: 20px; /* Razmak sa leve strane */
}

li::before {
    content: "✔️"; /* Dodavanje simbola */
    position: absolute; /* Pozicioniranje simbola */
    left: 0; /* Pozicioniranje levo */
    color: #3498db; /* Plava boja za simbol */
}

.text-lg {
    line-height: 1.6; /* Povećanje razmaka između redova */
}

.cta-btn {
    background-color: #3498db; /* Plava pozadina */
    color: white; /* Boja teksta */
    padding: 10px 20px; /* Unutrašnji razmak */
    font-size: 16px; /* Veličina fonta */
    border: none; /* Bez ivice */
    border-radius: 5px; /* Zaobljeni uglovi */
    cursor: pointer; /* Kursor kao ruka */
    transition: background-color 0.3s; /* Efekat prelaza */
}

.cta-btn:hover {
    background-color:  #333; /* Tamnija nijansa pri prelazu */
}

/* static/styles.css */

.pop-up-form {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
     z-index: 9999; /* OVO JE KLJUČNO */
}

.form-content {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;      /* Dodaj ovo */
    overflow-y: auto;      /* Dodaj ovo */
}

.close {
    cursor: pointer;
    float: right;
    font-size: 20px;
}

.form-input, .form-select, textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    margin-bottom: 1rem;
    background: #f9f9f9;
    transition: border-color 0.2s;
}

.form-input:focus, .form-select:focus, textarea:focus {
    border-color: #007bff;
    outline: none;
    background: #fff;
}

button[type="submit"] {
    background: #222;
    color: #fff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

button[type="submit"]:hover {
    background: #007bff;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-grid > .full-width {
    grid-column: 1 / -1; /* Polje koje treba da zauzima obe kolone (npr. textarea) */
}

@media (max-width: 700px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}
.hidden {
    display: none !important;
}
.ml-auto { margin-left: auto; }
/* Dropdown za desktop */


#mainNav ul {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0.5rem 0;
}
#mainNav li {
  position: relative;
  list-style: none;
}
#mainNav a, #mainNav button {
  display: block;
  width: 100%;
  padding: 0.5rem 1.5rem;
  color: #fff;
  background: none;
  border: none;
  text-align: left;
  /* Ensure no underline on links or buttons inside the dropdown */
  text-decoration: none !important;
}
#mainNav a:hover, #mainNav button:hover {
  background: #333;
  /* also prevent underline on hover (override other rules) */
  text-decoration: none !important;
}
.group > ul {
  display: none; /* hidden by default */
  position: absolute; /* position relative to the .group (which is positioned) */
  /* open to the left of the parent so it stays inside a right-aligned menu */
  left: auto;
  right: 100%;
  top: 0;
  background: #333;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  min-width: 180px;
  z-index: 9999;
  transform: translateX(-8px);
}
.group:focus-within > ul,
.group:hover > ul {
  display: block;
}
#mainNav ul {
    list-style: none !important;
    padding: 0 !important;
}
#mainNav li {
    padding-left: 0 !important;
}
#mainNav li::before {
    content: none !important;
}


/* Header mora biti pozicioniran kao reference za absolute nav */
header {
  position: relative; /* ovo je ključno */
}

/* Nav koji je skriven dok se ne klikne dugme */
#mainNav {
  position: absolute; /* sada je u okviru <header> */
  right: 0;
  top: 100%; /* odmah ispod header visine */
  margin-top: 0.5rem;
  background: #222;
  border-radius: 0.5rem;
  min-width: 180px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  z-index: 111;
}

/* Sakriveno stanje */
.hidden {
  display: none !important;
}

/* --------------------------------------------
   Our Values Section
---------------------------------------------*/
.values {
  background-color: #f9fafb;
  padding: 4rem 1rem;
}

.values__inner {
  max-width: 72rem;   /* ~6xl */
  margin: 0 auto;
  text-align: center;
}

.values__title {
  font-size: 2.25rem; /* text-4xl */
  font-weight: 700;
  margin-bottom: 2rem;
  color: #111827;     /* gray-900 */
}

.values__list {
  list-style: none;
  margin: 0 0 3rem;
  padding: 0;
}

.values__item {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
  text-align: left;
  font-size: 1.125rem; /* text-lg */
  color: #374151;      /* gray-700 */
}

.values__item::before {
  content: "";
  position: absolute;
  left: 0; top: 0.5rem;
  width: 0.5rem; height: 0.5rem;
  background-color: #2563eb; /* blue-600 */
  border-radius: 50%;
}

.values__item strong {
  color: #111827;
}

.values__text {
  font-size: 1.125rem;
  color: #4b5563; /* gray-600 */
  margin-bottom: 2rem;
}

.values__cta {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #2563eb; /* blue-600 */
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background-color 0.2s ease-in-out, transform 0.1s;
}

.values__cta:hover {
  background-color: #1e40af; /* blue-800 */
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .values__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 3rem;
  }
  .values__item {
    margin-bottom: 1.5rem;
  }
}
/* --------------------------------------------
   Highlighted CTA block
---------------------------------------------*/
.values__highlight {
  background-color: #111;        /* skoro crna pozadina */
  color: #fff;                   /* bela slova */
  padding: 2rem 1.5rem;          /* unutrašnji razmak */
  border-radius: 0.5rem;         /* zaobljeni uglovi */
  max-width: 48rem;              /* ograniči širinu bloka */
  margin: 0 auto 2rem;           /* centriraj i dodaj donji margin */
  text-align: center;
}

.values__highlight p {
  margin: 0 0 1.5rem;
  font-size: 1.125rem;           /* text-lg */
  line-height: 1.6;
}

.values__highlight .cta-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #2563eb;     /* plavo dugme */
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: 0.5rem;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
}

.values__highlight .cta-btn:hover {
  background-color: #1e40af;
  transform: translateY(-2px);
}

/* ===== Our Values Section ===== */
.values {
  background-color: #f9fafb;
  padding: 4rem 1rem;
}

.values__inner {
  max-width: 72rem;
  margin: 0 auto;
  text-align: center;
}

.values__title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #111827;
}

.values__list {
  list-style: none;
  margin: 0 0 3rem;
  padding: 0;
}

.values__item {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
  color: #374151;
}

.values__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1rem;
  height: 1rem;
  background: url('/static/images/check.svg') no-repeat center center;
  background-size: contain;
}

.values__item strong {
  color: #111827;
}

/* ===== Highlighted CTA Block ===== */
.values__highlight {
  background-color: #111;
  padding: 2rem 1.5rem;
  border-radius: 0.5rem;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.values__highlight-text {
  margin: 0 0 1.5rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #f9fafb;
}

.values__highlight-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #2563eb;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
}

.values__highlight-btn:hover {
  background-color: #af851085;
  transform: translateY(-2px);
}

/* ===== Responsive Grid for List ===== */
@media (min-width: 768px) {
  .values__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 3rem;
  }
}
