html {
    scroll-behavior: smooth;
}

body {
    background-color: #fff;
    color: #333;
    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 1.6;
}

/* Sekcije */
section:not(.page-header) {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    border-bottom: 1px solid #eee;
}

section h2 {
    color: #ff6600;
    margin-bottom: 1rem;
}

.tab-nav {
  display: flex;
  justify-content: center;
  gap: 2.2rem;
  margin: 3rem 0 4rem;
  flex-wrap: wrap;
}

.tab-nav a {
  color: #ff6600;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
}

.tab-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #ff6600;
  transition: width 0.25s ease;
}

.tab-nav a:hover::after {
  width: 100%;
}

.highlight-box {
    background: #f9f9f9;
    border-left: 4px solid #ff6600;
    padding: 1rem 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
}

/* YouTube video */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Ovdje dodajte samo BTL-specific override-e (npr. drugačiji padding/section max-width) */