/* ============================================
   JAGR - Lovski beta spletna stran
   Barve: gozdna zelena, rjava, kremna, oranzna
   ============================================ */

:root {
  --green-dark:   #1a3a0a;
  --green:        #2d5a1b;
  --green-mid:    #3d7a25;
  --green-light:  #5a9e3a;
  --brown-dark:   #3d2408;
  --brown:        #6b3d14;
  --brown-light:  #9c6030;
  --orange:       #c8520a;
  --orange-light: #e8720c;
  --cream:        #f5f0e4;
  --cream-dark:   #e8e0cc;
  --tan:          #c4a96a;
  --text-dark:    #1a1a0e;
  --text-mid:     #3d3d28;
  --text-light:   #f5f0e4;
  --white:        #ffffff;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.18);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.28);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- NAV ---- */
.nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon { font-size: 2rem; }

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--cream);
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.beta-badge {
  background: var(--orange);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 5px 12px;
  border-radius: 999px;
  text-transform: uppercase;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    url('https://images.unsplash.com/photo-1542065898-2e0d8b296d53?w=1600&q=80&fit=crop')
    center center / cover no-repeat;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10, 25, 5, 0.82) 0%,
    rgba(30, 60, 15, 0.70) 50%,
    rgba(50, 25, 5, 0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 48px 120px;
  max-width: 720px;
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--cream);
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(245, 240, 228, 0.88);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.7;
}

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

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  cursor: pointer;
  border: none;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(200, 82, 10, 0.45);
}
.btn-primary:hover {
  background: var(--orange-light);
  box-shadow: 0 6px 24px rgba(200, 82, 10, 0.6);
}

.btn-secondary {
  background: rgba(245, 240, 228, 0.12);
  color: var(--cream);
  border: 1.5px solid rgba(245, 240, 228, 0.45);
  backdrop-filter: blur(6px);
}
.btn-secondary:hover {
  background: rgba(245, 240, 228, 0.2);
}

.hero-scroll-hint {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-bottom: 32px;
  color: rgba(245, 240, 228, 0.5);
  font-size: 1.4rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ---- FEATURES ---- */
.features {
  padding: 100px 0;
  background: var(--cream);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--green-dark);
  text-align: center;
  margin-bottom: 16px;
}

.section-title.light {
  color: var(--cream);
}

.section-subtitle {
  text-align: center;
  color: var(--text-mid);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 56px;
  line-height: 1.7;
}
.section-subtitle.light {
  color: rgba(245,240,228,0.8);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--green-mid);
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ---- INSTRUCTIONS ---- */
.instructions {
  padding: 100px 0;
  background: linear-gradient(180deg, #f0ebe0 0%, #e8e0cc 100%);
  position: relative;
}

.instructions::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--green), var(--brown), var(--orange));
}

.instructions-header {
  text-align: center;
  margin-bottom: 64px;
}

.tag {
  display: inline-block;
  background: var(--green);
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}

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

@media (max-width: 768px) {
  .instructions-grid { grid-template-columns: 1fr; }
  .nav { padding: 20px 24px; }
  .hero-content { padding: 60px 24px 80px; }
}

.instruction-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ios-card { border-top: 5px solid #1d1d1f; }
.android-card { border-top: 5px solid #3ddc84; }

.platform-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.platform-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ios-card .platform-icon {
  background: #1d1d1f;
  color: var(--white);
}

.android-card .platform-icon {
  background: #3ddc84;
  color: #1a1a1a;
}

.platform-header h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--text-dark);
}

.steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.steps-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.steps-list strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.steps-list p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.inline-link {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.btn-ios {
  background: #1d1d1f;
  color: var(--white);
  text-align: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.btn-ios:hover {
  background: #333;
  transform: translateY(-2px);
}

.btn-android {
  background: #3ddc84;
  color: #1a1a1a;
  text-align: center;
  box-shadow: 0 4px 14px rgba(61,220,132,0.3);
}
.btn-android:hover {
  background: #5aee9a;
  transform: translateY(-2px);
}

.feedback-box {
  margin-top: 48px;
  background: var(--green-dark);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 32px 40px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  box-shadow: var(--shadow);
}

.feedback-icon {
  font-size: 2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.feedback-box h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--tan);
}

.feedback-box p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(245,240,228,0.85);
}

/* ---- DOWNLOAD ---- */
.download {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--brown-dark) 60%, var(--brown) 100%);
  position: relative;
  overflow: hidden;
}

.download::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.download .container { position: relative; z-index: 1; }

.download-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 48px 0 24px;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.18s, box-shadow 0.18s;
  min-width: 240px;
}

.download-btn:hover { transform: translateY(-3px); }

.ios-dl {
  background: var(--white);
  color: var(--text-dark);
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}

.android-dl {
  background: #3ddc84;
  color: #1a1a1a;
  box-shadow: 0 6px 24px rgba(61,220,132,0.3);
}

.dl-sub {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.7;
  letter-spacing: 0.05em;
}

.dl-main {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
}

.download-note {
  text-align: center;
  font-size: 0.88rem;
  color: rgba(245,240,228,0.55);
  margin-top: 8px;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--green-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 48px 24px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer .logo-text { color: var(--tan); font-size: 1.4rem; }
.footer .logo-icon { font-size: 1.5rem; }

.footer-tagline {
  color: rgba(245,240,228,0.6);
  font-style: italic;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(245,240,228,0.35);
}
