/*
 Theme Name: Neve Child
 Theme URI: https://themeisle.com/themes/neve/
 Description: Child theme for Neve.
 Author: Katarina
 Template: neve
 Version: 1.0
*/

.site-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #333333;
}
.hover-zoom {
  transition: transform 0.3s ease;
}

.hover-zoom:hover {
  transform: scale(1.05);
}
.footer-bottom .component-wrap::before,
.footer-bottom .component-wrap::after,
.footer-bottom .component-wrap a,
.footer-bottom .component-wrap p {
    display: none !important;
}
.social-footer p {
    margin: 5px 0; 
    display: flex;
    align-items: center;
    gap: 8px; 
}

.social-footer i {
    font-size: 18px;
}
.social-footer {
    text-align: right;
    align-items: flex-end;
    display: flex;
    flex-direction: column;
}
.social-footer h4 {
    margin-bottom: 0.3em;
}
.social-footer p {
    margin: 0.2em 0;
}

.social-footer a {
    display: flex;
    align-items: center;
    gap: 6px;
}
.social-footer a:hover {
    color: #f4d03a; 
}


//Naši ciljevi
do 2030. 
.goals-section {
  background-color: #f4d03a;
  padding: 100px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 12px;

}

.goals-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

.goals-left {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; 
  gap: 20px;
}


.goals-left h2 {
  font-size: 36px;
  color: #103d2d;
  margin-bottom: 20px;
}

.goals-left p {
  font-size: 16px;
  color: #444;
  margin-bottom: 30px;
  line-height: 1.6;
}


.goals-button {
  padding: 14px 28px;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: inline-block;
  background-color: #00703c;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background 0.3s ease;
	align-self: flex-start;

}

.goals-button:hover {
 background-color: #866afb;
	color: white;
}

.goals-right {
  flex: 2 1 600px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  text-align: center;
}

.goal-item h3 {
  font-size: 32px;
  color: #00703c;
  margin-bottom: 10px;
  font-weight: 700;
  transition: transform 0.2s ease;

}

.goal-item:hover h3 {
  transform: scale(1.1);
}

.goal-item p {
  font-size: 15px;
  color: #333;
  line-height: 1.4;
	margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .goals-wrapper {
    flex-direction: column;
  }

  .goals-right {
    grid-template-columns: 1fr;
  }
}

//PROLJECE JE STIGLO SEKCIJA

.featured-section {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 20px;
  font-family: 'Inter', sans-serif;
}

.featured-section h2 {
  font-size: 28px;
  margin-bottom: 40px;
  color: #103d2d;
}

.hero-card {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;

}
.hero-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.hero-card img {
  width: 100%;
  max-width: 600px;
  object-fit: cover;
  height: auto;
  flex: 1 1 60%;
}

.hero-text {
  flex: 1 1 40%;
  padding: 30px;
}

.hero-text h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #222;
}

.hero-text p {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
	  transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
	
}


.card h4 {
  padding: 20px 20px 10px;
  font-size: 18px;
  color: #103d2d;
}

.card p {
  padding: 0 20px 20px;
  color: #444;
  font-size: 15px;
  line-height: 1.5;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .featured-section {
    margin-bottom: 60px;
    padding: 0 10px;
  }
}
.wp-block-button__link {
  text-transform: none !important;
}
.dokument-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
	margin-bottom: 2rem;
}

.dokument-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
    min-height: 280px;
}


.dokument-item:hover {
    transform: translateY(-4px);
}

.dokument-icon {
    font-size: 40px;
    color: #866afb;
    margin-bottom: 1rem;
}

.dokument-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #222;
}

.dokument-preview {
    display: inline-block;
 	background-color: #866afb;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dokument-preview:hover,
.dokument-preview:focus {
    background-color: #866afb;
    color: #ffffff;
}


.no-dokumenti {
    text-align: center;
    font-style: italic;
    color: #555;
}

