/* Page-specific styles only. Shared styles are in ../style.css. */

.hero {
  background: var(--t950);
  padding: 80px 48px 96px;
  position: relative;
  overflow: hidden;
  background-image: url("../../images/turizam-i-ugostiteljstvo.webp");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.when-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.when-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: var(--white);
  border: 0.5px solid var(--t100);
  border-radius: var(--rmd);
}

.when-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--t400);
  flex-shrink: 0;
  margin-top: 7px;
}

.when-item p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7;
}

.when-item strong {
  color: var(--dark);
  font-weight: 600;
}


/* RESPONSIVE */

@media (max-width: 900px) {
    .hero {
        padding: 40px 20px 20px;
        background-position: 60% center;
        background-size: cover;
    }
    .hero::before {
        background: linear-gradient(
            90deg,
            rgba(6, 21, 20, 0.95) 0%,
            rgba(6, 21, 20, 0.85) 60%,
            rgba(6, 21, 20, 0.6) 100%
        );
    }
    .hero h1 {
        font-size: 26px;
    }
    .mob-br {
        display: block;
    }
    .s-title {
        font-size: 22px;
    }
    .s-body {
        font-size: 14px;
    }
    .h3-card p {
        padding-left: 0;
    }
    .cap-grid {
        grid-template-columns: 1fr 1fr;
    }
    
}

@media (max-width: 768px) {
    .price-grid{ grid-template-columns: 1fr; }
    .cap-grid {
        grid-template-columns: 1fr;
    }
    .price-row {
        flex-direction: column;
        gap: 8px;
    }
    .h3-card-icon svg{
        align-items: center;
    }
}
