/* TT MONT RJEŠENJA – Custom styles */

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Navbar */
.navbar-brand {
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}

/* Hero */
.hero-section h1 {
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

/* Cards hover */
.card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1) !important;
}

/* CTA section */
.bg-warning {
  background-color: #ffc107 !important;
}

/* Page headers */
.page-header {
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('../img/header-bg.jpg') center/cover no-repeat;
  min-height: 300px;
}

/* Blog cards */
.blog-card .card-img-top {
  height: 200px;
  object-fit: cover;
}

/* Contact form */
.form-control:focus {
  border-color: #ffc107;
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

/* Footer links hover */
footer a:hover {
  color: #ffc107 !important;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}
