/* ==========================================================================
   SPREMENLJIVKE (Minimalistična poslovna paleta)
   ========================================================================== */
:root {
  --color-bg: #ffffff;
  --color-bg-alt: #f8f9fa; /* Zelo svetlo siva za kontrastne sekcije */
  --color-text: #1a1a1a;
  --color-text-muted: #666666;
  --color-border: #e5e5e5;
  --color-accent: #f2a900;
  --color-accent-hover: #d99700;
  --color-success: #245c49;
  --color-error: #d32f2f;
  
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition: all 0.25s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ==========================================================================
   STRUKTURA IN KONTEJNERJI
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0; /* Veliko zraka zgoraj in spodaj, ni več stlačeno */
}

.section-hero {
  padding: 0;
}

.section-alt {
  background-color: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

/* ==========================================================================
   TIPOGRAFIJA
   ========================================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-text-muted);
  margin-bottom: 12px;
  display: block;
}

.lead {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 65ch;
  margin-bottom: 40px;
}

/* ==========================================================================
   HEADER (Polna širina, čista linija)
   ========================================================================== */
.header {
  border-bottom: 1px solid var(--color-border);
  padding: 16px 0;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
}

.header .container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
}

.logo img {
  display: block;
  width: auto;
  max-width: min(126px, 100%);
  height: auto;
}

.header-copy {
  display: flex;
  align-items: center;
  min-height: 100%;
  padding-left: 24px;
  border-left: 1px solid var(--color-border);
}

.header-copy p {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #28323d;
  line-height: 1.35;
  max-width: 34ch;
}

/* ==========================================================================
   HERO SEKCIJA (Odprto, močno)
   ========================================================================== */
.hero-wrapper {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  background-color: #1d1c19;
  background-image:
    linear-gradient(90deg, rgba(18, 18, 17, 0.82) 0%, rgba(18, 18, 17, 0.62) 45%, rgba(18, 18, 17, 0.66) 100%),
    image-set(
      url("../assets/img/hero-mobile.webp") 1x,
      url("../assets/img/hero-desktop.webp") 2x
    );
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 620px;
  padding: 72px 0;
}

.status-badge {
  display: inline-block;
  padding: 6px 12px;
  background-color: rgba(242, 169, 0, 0.18);
  color: #ffcf65;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 2px;
  margin-bottom: 24px;
}

.hero-content,
.hero-data {
  position: relative;
  z-index: 1;
}

.hero-content h1,
.hero-content .lead,
.hero-content strong {
  color: #ffffff;
}

.hero-content .lead {
  max-width: 52ch;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-text);
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  backdrop-filter: blur(6px);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.54);
}

/* Podatki v Hero sekciji (Brez okvirjev) */
.hero-data {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  padding-left: 40px;
}

.hero-facts {
  display: block;
}

.data-item {
  margin-bottom: 24px;
}

.data-item:last-child {
  margin-bottom: 0;
}

.data-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 4px;
}

.data-value {
  font-weight: 600;
  font-size: 1.1rem;
  color: #ffffff;
}

/* ==========================================================================
   LOKACIJE (Čiste linije)
   ========================================================================== */
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.loc-list {
  list-style: none;
  margin-top: 24px;
}

.loc-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 500;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot-live { background-color: var(--color-success); }
.dot-soon { background-color: var(--color-accent); }

/* ==========================================================================
   PONUDBA (Brez kartic, samo tabela/mreža)
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.price-item {
  padding: 40px 32px;
  border-right: 1px solid var(--color-border);
  position: relative;
  transition: var(--transition);
}

.price-item:last-child {
  border-right: none;
}

.price-item:hover {
  background-color: var(--color-bg);
}

.price-item.featured {
  background-color: #fafafa;
}

.size-tag {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-text);
}

.price-desc {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
  min-height: 48px;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.price-amount span {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-muted);
}

.tax-note {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   OBRAZEC (Minimalističen, profi vnos)
   ========================================================================== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
}

.form-grid {
  display: grid;
  gap: 24px;
}

.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text);
}

.field input,
.field textarea {
  width: 100%;
  padding: 16px;
  background-color: transparent;
  border: 1px solid var(--color-border);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  border-radius: 0; /* Brez zaobljenih robov za strožji izgled */
  transition: var(--transition);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-text); /* Črna obroba ob fokusu (zelo profi) */
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

.form-response {
  margin-top: 16px;
  font-weight: 500;
  font-size: 0.9rem;
}

.form-response.is-success { color: var(--color-success); }
.form-response.is-error { color: var(--color-error); }

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.spam-protected {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   POGOSTA VPRAŠANJA
   ========================================================================== */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.faq-item p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.footer p {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.footer strong {
  color: var(--color-text);
}

/* ==========================================================================
   RESPONSIVE (Mobilne naprave)
   ========================================================================== */
@media (max-width: 992px) {
  .header .container {
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .logo img {
    max-width: 104px;
  }

  .header-copy {
    max-width: 100%;
    align-items: center;
    padding-left: 0;
    padding-top: 12px;
    border-left: none;
    border-top: 1px solid var(--color-border);
  }

  .header-copy p {
    max-width: 28ch;
    font-size: 0.96rem;
  }

  .hero-inner,
  .locations-grid,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-wrapper {
    min-height: 0;
    background-image:
      linear-gradient(180deg, rgba(18, 18, 17, 0.72) 0%, rgba(18, 18, 17, 0.6) 100%),
      url("../assets/img/hero-mobile.webp");
    background-position: center center;
  }

  .hero-inner {
    min-height: 0;
    padding: 56px 0;
  }
  
  .hero-data {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding-left: 0;
    padding-top: 40px;
  }

  .hero-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    border: none;
  }

  .price-item {
    border-right: none;
    border: 1px solid var(--color-border);
    margin-bottom: 16px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 576px) {
  .header {
    padding: 14px 0;
  }

  .header .container {
    gap: 10px;
  }

  .logo img {
    max-width: 92px;
  }

  .header-copy {
    padding-top: 10px;
  }

  .header-copy p {
    max-width: 24ch;
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .section {
    padding: 60px 0;
  }

  .section-hero {
    padding: 0;
  }

  .hero-wrapper {
    min-height: 0;
  }

  .hero-inner {
    padding: 40px 0;
    gap: 32px;
  }
  
  .hero-data {
    padding-top: 32px;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .cta-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .form-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
