* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  --primary-color: #3c85c9;
  --secondary-color: rgb(178, 24, 37);
  --text-color: #333;
  --background-color: #f8f9fa;
  --font-family: "Arial", "Helvetica", sans-serif;
  --white_opacity: rgba(255, 255, 255, 0.8);
}

body {
  font-family: "Arial", "Helvetica", sans-serif;
  line-height: 1.6;
  background: #f8f9fa;
  color: #333;
}

.header {
  background-color: #3c85c9;
  color: white;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 30px;
}

.logo {
  width: 300px;
  height: 120px;
  background-image: url(images/logo.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.header-text h1 {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 5px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.header-text h2 {
  font-size: 1.1rem;
  font-weight: normal;
  opacity: 0.9;
}

.emergency-banner {
  background: #d01c45;
  color: white;
  text-align: center;
  padding: 15px;
  font-weight: bold;
  font-size: 1.1rem;
}

.emergency-number {
  font-size: 1.8rem;
  margin: 0 10px;
}

.container-wrapper {
  width: 100%;
 /*  background-image: url("images/20171210_122320_Velika.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; */
  background-attachment: fixed;
  position: relative;
}

.container-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white_opacity);
  z-index: -1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
  z-index: 1;
}

.intro-section {
  background: var(--white_opacity);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  text-align: center;
}

.intro-section h3 {
  color: var(--secondary-color);
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.intro-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
/*   margin: 40px 0; */
}

.stat-card {
  background: var(--white_opacity);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-top: 4px solid #4a90e2;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--secondary-color);
  display: block;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  color: #666;
  font-weight: 500;
}

.forms-section {
  margin: 60px 0;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 40px;
  font-weight: 600;
}

.forms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.form-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.form-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.form-card-header {
  padding: 30px;
  text-align: center;
  position: relative;
}

.form-card.activity .form-card-header {
  background: linear-gradient(135deg, #dc3545, #c82333);
  color: white;
}

.form-card.contact .form-card-header {
  background: linear-gradient(135deg, #ffc107, #e0a800);
  color: #2c3e50;
}

.form-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
}

.form-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.form-subtitle {
  opacity: 0.9;
  font-size: 1rem;
}

.form-card-body {
  padding: 30px;
}

.form-description {
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
}

.form-button {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.form-card.activity .form-button {
  background: #dc3545;
  color: white;
}

.form-card.activity .form-button:hover {
  background: #c82333;
}

.form-card.contact .form-button {
  background: #ffc107;
  color: #2c3e50;
}

.form-card.contact .form-button:hover {
  background: #e0a800;
}

.additional-info {
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin: 40px 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 30px;
}

.info-item h4 {
  color: #4a90e2;
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.info-item p {
  color: #666;
  line-height: 1.6;
}

.footer {
  background: rgba(61, 114, 176, 1);
  color: white;
  padding: 20px 20px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: left;
}

.footer-column h4 {
  font-size: 1.2rem;
/*   margin-bottom: 15px; */
  color: #ffc107;
  font-weight: 600;
}

.footer-column p {
/*   margin-bottom: 8px; */
  line-height: 1.6;
}

.footer-column strong {
  color: #ffc107;
  font-weight: 600;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
  margin-bottom: 10px;
}

.footer-address {
  font-size: 0.9rem;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .header-text h1 {
    font-size: 1.8rem;
  }

  .forms-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .intro-section,
  .form-card-body {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .form-card {
    margin: 0 10px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .emergency-banner {
    padding: 10px;
    font-size: 1rem;
  }

  .emergency-number {
    font-size: 1.5rem;
  }
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  gap: 30px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

#topNav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

#topNav a {
  color: white;
  text-decoration: none;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.1em;
  font-weight: 300;
  text-transform: uppercase;
}

#topNav a:hover {
  color: #ffc107;
}

.goMobile-btn {
  display: none;
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 20px;
  }

  #topNav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  #topNav a {
    font-size: 0.9rem;
  }
}
