/* --- OSNOVNE NASTAVITVE IN SPREMENLJIVKE --- */
:root {
  --bg-dark: #09090b;
  --card-dark: #18181b;
  --accent: #ef4444;
  --zinc-50: #fafafa;
  --zinc-100: #f4f4f5;
  --zinc-200: #e4e4e7;
  --zinc-300: #d4d4d8;
  --zinc-400: #a1a1aa;
  --zinc-500: #71717a;
  --zinc-800: #27272a;
  --green-500: #22c55e;
  --border-light: rgba(255, 255, 255, 0.05);
  --border-hover: rgba(255, 255, 255, 0.2);
}

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

body {
  background-color: var(--bg-dark);
  color: var(--zinc-50);
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.5;
}

::selection {
  background-color: var(--zinc-800);
  color: white;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease-in-out;
}

.container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- NAVIGACIJA --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(9, 9, 11, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.nav-logo {
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: -0.025em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.nav-link {
  color: var(--zinc-400);
}

.nav-link:hover {
  color: white;
}

.btn-nav {
  background-color: white;
  color: black;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
}

.btn-nav:hover {
  background-color: var(--zinc-200);
}

/* --- HERO SEKCIJA --- */
.hero {
  padding-top: 8rem;
  padding-bottom: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-badge {
  border: 1px solid var(--border-light);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--zinc-300);
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--green-500);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  max-width: 56rem;
}

.hero-title span {
  color: var(--zinc-500);
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--zinc-400);
  margin-bottom: 2.5rem;
  max-width: 42rem;
  line-height: 1.625;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 4rem;
  width: 100%;
  max-width: 220px;
}

.btn-primary {
  background-color: white;
  color: black;
  font-weight: 600;
  font-size: 1.125rem;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

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

/* Slika telefona */
.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 24rem;
  margin: 0 auto;
}

.hero-image-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.05);
  filter: blur(48px);
  border-radius: 50%;
}

.hero-image {
  position: relative;
  z-index: 10;
  width: 100%;
  border-radius: 2.5rem;
  border: 6px solid var(--zinc-800);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  display: block;
}

/* --- FUNKCIONALNOSTI --- */
.features-section {
  border-top: 1px solid var(--border-light);
  background-color: rgba(24, 24, 27, 0.3);
  padding-top: 6rem;
  padding-bottom: 8rem;
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.features-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.features-header p {
  color: var(--zinc-400);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.feature-card {
  background-color: var(--card-dark);
  border: 1px solid var(--border-light);
  padding: 2rem;
  border-radius: 1rem;
}

.feature-card:hover {
  border-color: var(--border-hover);
}

.feature-icon {
  font-size: 1.875rem;
  color: var(--zinc-100);
  margin-bottom: 1.5rem;
  display: block;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--zinc-400);
  font-size: 0.875rem;
  line-height: 1.625;
}

/* --- NOGA (FOOTER) --- */
.footer {
  border-top: 1px solid var(--border-light);
  background-color: var(--bg-dark);
  padding: 2.5rem 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--zinc-500);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a:hover {
  color: var(--zinc-300);
}

/* --- RESPONSIVE PRAVILA --- */
@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    justify-content: center;
    width: auto;
  }
}

@media (min-width: 880px) {
  .hero {
    padding-top: 12rem;
    padding-bottom: 8rem;
    flex-direction: row;
    gap: 3rem;
    max-height: 100vh;
    justify-content: space-between;
  }
  .hero-content {
    text-align: start;
    align-items: flex-start;
  }
  .hero-title {
    font-size: 4.5rem;
  }
  .hero-image {
    height: 70vh;
    width: auto;
  }
  .br-mobile-hidden {
    display: block;
  }
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}
img.header-logo {
  height: 40px;
  border-radius: 10px;
}
.store-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-store {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--card-dark); /* Ali pa črno: #000 */
  border: 1px solid var(--border-light);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 0.75rem;
  transition: all 0.2s ease;
  justify-content: center;
  width: 100%;
}

.btn-store:hover {
  background-color: var(--zinc-800);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.store-icon {
  height: 2rem;
}

.store-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.store-small {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--zinc-400);
  letter-spacing: 0.05em;
  margin-bottom: -2px;
}

.store-large {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
