/* ===========================
   SKUPNI STILI – Kmetija Jenko
   =========================== */

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

:root {
  --red:        #c0392b;
  --red-dark:   #96281b;
  --red-light:  #e74c3c;
  --red-pale:   #fdf0ee;
  --green:      #27ae60;
  --green-dark: #1e8449;
  --green-pale: #edfaf3;
  --cream:      #fdf6ec;
  --text:       #1e1e1e;
  --text-mid:   #4a4a4a;
  --text-light: #777;
  --border:     #ebebeb;
  --nav-h:      70px;
  --radius:     14px;
  --shadow-sm:  0 2px 12px rgba(0,0,0,.07);
  --shadow-md:  0 8px 32px rgba(0,0,0,.11);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.14);
}

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

body {
  font-family: 'Georgia', serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a  { color: inherit; }

/* ── NAVIGATION ── */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 999;
  height: var(--nav-h);
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
  padding: 0 6%;
  gap: 0;
  transition: box-shadow .25s;
}
.nav.scrolled { box-shadow: var(--shadow-md); }

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--red);
  font-size: 1.25rem; font-weight: bold;
  white-space: nowrap; flex-shrink: 0;
}
.nav-logo .logo-icon { font-size: 1.5rem; }
.nav-logo .logo-sub  { font-size: .7rem; font-weight: normal; color: var(--text-light); display: block; font-family: Arial, sans-serif; }

.nav-links {
  display: flex; list-style: none;
  gap: 6px; margin-left: auto;
  align-items: center;
}
.nav-links a {
  text-decoration: none; color: var(--text-mid);
  font-size: .9rem; font-family: Arial, sans-serif;
  padding: 7px 14px; border-radius: 8px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--red); background: var(--red-pale);
}
.nav-links .nav-cta {
  background: var(--red); color: #fff !important;
  padding: 9px 20px; border-radius: 25px; margin-left: 6px;
}
.nav-links .nav-cta:hover { background: var(--red-dark) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; margin-left: auto; }
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }

/* ── PAGE HEADER ── */
.page-header {
  padding-top: var(--nav-h);
  position: relative;
  min-height: 320px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.page-header-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-header-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(150,40,27,.88) 0%, rgba(150,40,27,.55) 60%, transparent 100%);
}
.page-header-content {
  position: relative; z-index: 2;
  padding: 48px 6% 52px;
  color: #fff;
}
.page-header-content .breadcrumb {
  font-family: Arial, sans-serif; font-size: .78rem;
  opacity: .75; margin-bottom: 10px; letter-spacing: .05em;
}
.page-header-content .breadcrumb a { text-decoration: none; color: inherit; }
.page-header-content .breadcrumb a:hover { text-decoration: underline; }
.page-header-content h1 { font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.2; }
.page-header-content p  { font-size: 1.05rem; margin-top: 10px; opacity: .88; max-width: 500px; }

/* ── LAYOUT ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 6%; }
.section   { padding: 80px 6%; }
.section-sm{ padding: 56px 6%; }
.section-bg-cream  { background: var(--cream); }
.section-bg-dark   { background: #1a1a1a; color: #fff; }
.section-bg-red    { background: linear-gradient(135deg, var(--red-dark), var(--red-light)); color: #fff; }

.section-label {
  display: block; font-family: Arial, sans-serif;
  font-size: .75rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 8px;
}
.section-bg-red    .section-label,
.section-bg-dark   .section-label { color: rgba(255,255,255,.65); }

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  line-height: 1.22; margin-bottom: 16px;
}
.section-sub {
  font-family: Arial, sans-serif; font-size: 1.02rem;
  color: var(--text-mid); line-height: 1.75;
  max-width: 620px; margin-bottom: 44px;
}
.section-bg-dark .section-sub { color: rgba(255,255,255,.65); }
.section-bg-red  .section-sub { color: rgba(255,255,255,.8); }
.section-bg-red  .section-title { color: #fff; }

.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: Arial, sans-serif; font-weight: bold;
  font-size: .95rem; text-decoration: none;
  border-radius: 30px; padding: 13px 30px;
  border: none; cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-red    { background: var(--red); color: #fff; box-shadow: 0 4px 18px rgba(192,57,43,.3); }
.btn-red:hover { background: var(--red-dark); box-shadow: 0 8px 28px rgba(192,57,43,.4); }
.btn-white  { background: #fff; color: var(--red); box-shadow: 0 4px 18px rgba(0,0,0,.12); }
.btn-white:hover { box-shadow: 0 8px 28px rgba(0,0,0,.18); }
.btn-outline{ background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.65); }
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-green  { background: var(--green); color: #fff; box-shadow: 0 4px 18px rgba(39,174,96,.3); }
.btn-green:hover { background: var(--green-dark); }

/* ── CARDS ── */
.card {
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.card-img img { width: 100%; height: 220px; object-fit: cover; }

.card-body { padding: 24px; }
.card-body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.card-body p  { font-size: .9rem; font-family: Arial, sans-serif; color: var(--text-mid); line-height: 1.65; }

.tag {
  display: inline-block; font-family: Arial, sans-serif;
  font-size: .75rem; padding: 4px 12px; border-radius: 12px;
  margin-top: 14px;
}
.tag-red   { background: var(--red-pale);   color: var(--red); }
.tag-green { background: var(--green-pale); color: var(--green-dark); }

/* ── GRID HELPERS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── ICON FEATURE ── */
.feature-list { display: flex; flex-direction: column; gap: 22px; }
.feature-item { display: flex; align-items: flex-start; gap: 16px; }
.feature-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 1px; }
.feature-item h4 { font-size: 1rem; margin-bottom: 4px; }
.feature-item p  { font-size: .88rem; font-family: Arial, sans-serif; color: var(--text-mid); line-height: 1.6; }

/* ── COMPARISON TABLE ── */
.compare-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-md);
}
.compare-col { padding: 0; }
.compare-col.our  { background: var(--green-pale); }
.compare-col.shop { background: #fff5f5; }
.compare-head {
  padding: 22px 28px; text-align: center;
  font-size: 1.1rem; font-weight: bold;
}
.compare-col.our  .compare-head { background: var(--green); color: #fff; }
.compare-col.shop .compare-head { background: #c0392b; color: #fff; }
.compare-row {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 24px; border-bottom: 1px solid rgba(0,0,0,.06);
  font-family: Arial, sans-serif; font-size: .9rem;
}
.compare-row:last-child { border-bottom: none; }
.compare-row .ci { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.compare-row strong { display: block; font-size: .82rem; color: var(--text-light); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 2px; }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--red); color: #fff;
  padding: 28px 6%;
  display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px;
}
.stat-item { text-align: center; }
.stat-num   { font-size: 2rem; font-weight: bold; display: block; }
.stat-label { font-size: .82rem; opacity: .85; font-family: Arial, sans-serif; letter-spacing: .05em; }

/* ── LOCATION CARDS ── */
.location-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #fff;
}
.location-map {
  width: 100%; height: 240px;
  background: #e8e8e8;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--text-light);
  position: relative; overflow: hidden;
}
.location-map img { width: 100%; height: 100%; object-fit: cover; }
.location-info { padding: 28px; }
.location-info h3 { font-size: 1.3rem; margin-bottom: 6px; }
.location-meta { font-family: Arial, sans-serif; font-size: .88rem; color: var(--text-mid); margin-bottom: 18px; }
.location-details { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.location-detail { display: flex; gap: 10px; align-items: flex-start; font-family: Arial, sans-serif; font-size: .88rem; }
.location-detail .ld-icon { font-size: 1rem; flex-shrink: 0; }

/* ── CONTACT ── */
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.contact-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 3px; }
.contact-item h4 { font-family: Arial, sans-serif; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; opacity: .7; margin-bottom: 4px; }
.contact-item a, .contact-item p { font-family: Arial, sans-serif; font-size: 1.05rem; text-decoration: none; }
.contact-item a:hover { text-decoration: underline; }

/* ── FORM ── */
.form-box {
  background: rgba(255,255,255,.1); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px; padding: 36px;
}
.form-box h3 { font-size: 1.3rem; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-family: Arial, sans-serif;
  font-size: .78rem; letter-spacing: .08em; text-transform: uppercase;
  opacity: .8; margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25); border-radius: 10px;
  padding: 12px 16px; color: #fff;
  font-size: .95rem; font-family: Arial, sans-serif;
  outline: none; transition: border-color .2s, background .2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.4); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.18);
}
.form-group select option { color: var(--text); background: #fff; }
.form-group textarea { resize: vertical; min-height: 110px; }
.btn-submit {
  width: 100%; background: #fff; color: var(--red);
  border: none; padding: 15px; border-radius: 30px;
  font-size: 1rem; font-weight: bold; font-family: Arial, sans-serif;
  cursor: pointer; margin-top: 8px;
  transition: transform .2s, box-shadow .2s;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }

/* ── TESTIMONIALS ── */
.testimonial-card {
  background: var(--cream); border-radius: var(--radius);
  padding: 28px; position: relative;
}
.quote-mark {
  font-size: 5rem; color: var(--red); opacity: .15;
  line-height: 1; position: absolute; top: 10px; left: 18px;
  font-family: Georgia, serif;
}
.stars { color: #f39c12; font-size: .9rem; margin-bottom: 4px; }
.testimonial-text {
  font-size: .98rem; line-height: 1.7;
  margin-bottom: 18px; position: relative; z-index: 1;
}
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: bold; font-family: Arial, sans-serif; flex-shrink: 0;
}
.t-name { font-weight: bold; font-size: .93rem; }
.t-loc  { font-size: .8rem; color: var(--text-light); font-family: Arial, sans-serif; }

/* ── SEASON GRID ── */
.season-grid {
  display: grid; grid-template-columns: repeat(12,1fr); gap: 8px;
  margin: 28px 0 20px;
}
.month-card {
  border-radius: 10px; padding: 14px 8px; text-align: center;
  border: 2px solid #ebebeb; background: #fff;
  transition: transform .2s;
}
.month-card:hover { transform: translateY(-2px); }
.month-card.active { border-color: var(--red); background: #fff5f3; }
.month-card.peak   { border-color: var(--green); background: var(--green-pale); }
.month-name { font-family: Arial, sans-serif; font-size: .72rem; font-weight: bold; letter-spacing: .06em; text-transform: uppercase; color: var(--text-light); display: block; margin-bottom: 7px; }
.month-emoji { font-size: 1.25rem; }
.month-desc { font-size: .7rem; color: var(--text-light); font-family: Arial, sans-serif; margin-top: 5px; }

/* ── INFO BOX ── */
.info-box {
  border-left: 4px solid var(--green);
  background: var(--green-pale);
  padding: 20px 24px; border-radius: 0 var(--radius) var(--radius) 0;
  margin: 28px 0;
}
.info-box p { font-family: Arial, sans-serif; font-size: .95rem; line-height: 1.7; color: var(--text-mid); }
.info-box strong { color: var(--green-dark); }

.warn-box {
  border-left: 4px solid var(--red);
  background: var(--red-pale);
  padding: 20px 24px; border-radius: 0 var(--radius) var(--radius) 0;
  margin: 28px 0;
}
.warn-box p { font-family: Arial, sans-serif; font-size: .95rem; line-height: 1.7; color: var(--text-mid); }

/* ── FOOTER ── */
.footer {
  background: #111; color: rgba(255,255,255,.55);
  padding: 48px 6% 28px;
  font-family: Arial, sans-serif; font-size: .85rem;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 48px; padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .footer-logo { color: #fff; font-family: Georgia, serif; font-size: 1.15rem; margin-bottom: 12px; }
.footer-brand p { line-height: 1.7; }
.footer-col h4 { color: #fff; font-family: Georgia, serif; font-size: 1rem; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { text-decoration: none; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: #fff; }

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 30px; right: 30px;
  background: var(--green); color: #fff;
  padding: 15px 26px; border-radius: 12px;
  font-family: Arial, sans-serif; font-size: .92rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
  transform: translateY(80px); opacity: 0;
  transition: all .35s cubic-bezier(.34,1.56,.64,1);
  z-index: 9999;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 780px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .compare-wrap { grid-template-columns: 1fr; }
  .season-grid  { grid-template-columns: repeat(6,1fr); }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: var(--nav-h); left: 0;
    width: 100%; background: #fff;
    padding: 16px 6%; gap: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
    border-top: 1px solid var(--border);
  }
  .nav-links.open a { padding: 10px 14px; }
  .nav-links .nav-cta { margin-left: 0; margin-top: 6px; text-align: center; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .stats-bar  { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 24px 40px; }
  .grid-4 { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .section  { padding: 56px 5%; }
  .section-sm { padding: 40px 5%; }
  .page-header-content { padding: 36px 5% 44px; }
  .season-grid { grid-template-columns: repeat(4,1fr); }
  .btn { padding: 12px 24px; font-size: .88rem; }
}
