@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
  --accent: #ab191a;
}

/* Osnovne postavke / Prozračan bijelo-sivi dizajn */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fafafa;
  color: #333333;
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  color: #1a1a1a;
  color: var(--accent);
  margin-bottom: 15px;
}

p {
  color: #555555;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

/* Sekcije naizmjenično mijenjaju lagane sive i bijele tonove */
.bg-white {
  background-color: #ffffff;
}
.bg-light-gray {
  background-color: #f4f5f7;
}

.subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #888888;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.btn {
  display: inline-block;
  background-color: #222222;
  background-color: var(--accent);
  color: #ffffff;
  padding: 15px 35px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  text-transform: uppercase;
  transition: background 0.3s ease;
  margin-top: 20px;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: #444444;
}

/* Hero sekcija bez fotografije */
.hero {
  text-align: center;
  padding: 120px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f0f2f5 100%);
}
.hero h1 {
  font-size: 2.8rem;
  max-width: 800px;
  margin: 0 auto 20px auto;
  line-height: 1.2;
}
.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 30px auto;
}

/* Grid sustavi za sadržaj */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid #eaeaea;
}

ul {
  padding-left: 20px;
}
ul li {
  margin-bottom: 10px;
  color: #555555;
}

/* FAQ sekcija */
.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 15px;
}
.faq-item h4 {
  margin-bottom: 5px;
}

/* Forma */
.form-group {
  margin-bottom: 15px;
  text-align: left;
}
.form-group label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 5px;
  color: #333;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #cccccc;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
}
.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 2rem;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
