﻿/* Template 1 CSS – svetla wellness različica */
:root {
  --primary: #4caf93;
  --primary-dark: #3a8a76;
  --bg: #f7faf9;
  --text: #222;
  --muted: #666;
  --white: #ffffff;
  --accent: #f1f8f6;
  --shadow-soft: 0 10px 25px rgba(0,0,0,0.06);
  --radius-lg: 18px;
  --max-width: 1100px;
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* Layout helpers */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* NAVBAR */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247,250,249,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e2e8f0;
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary-dark);
}

.logo-sub {
  font-weight: 400;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--primary-dark);
}

.btn-nav {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--primary);
  color: var(--white);
  background: var(--primary);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(76,175,147,0.25);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
}

.btn-nav:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(76,175,147,0.3);
}

.nav-links a.btn-nav {
  color: var(--white);
}

.hero-card .btn-nav {
  display: inline-flex;
  justify-self: flex-start;
  align-self: flex-start;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  border: none;
  background: transparent;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    inset: 60px 1.5rem auto 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    display: none;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }
}

/* HERO / HOME */
#home {
  padding: 3.5rem 0 3rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  background: #e0f2f1;
  font-size: 0.75rem;
  color: var(--primary-dark);
  margin-bottom: 0.8rem;
}

.hero-title {
  font-size: clamp(1.9rem, 4vw, 2.4rem);
  margin-bottom: 0.8rem;
}

.hero-title span {
  color: var(--primary-dark);
}

.hero-text {
  font-size: 0.98rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
  max-width: 540px;
}

.hero-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem 1.5rem;
  font-size: 0.9rem;
  margin-bottom: 1.6rem;
}

.hero-list li::before {
  content: "✓";
  margin-right: 0.4rem;
  color: var(--primary-dark);
  font-weight: 700;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.btn-primary {
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  border: none;
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(76,175,147,0.3);
  transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(76,175,147,0.35);
}

.btn-ghost {
  border: none;
  background: transparent;
  font-size: 0.9rem;
  color: var(--primary-dark);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-secondary {
  font-size: 0.75rem;
  color: var(--muted);
}

.hero-card {
  background: linear-gradient(145deg, var(--white), var(--accent));
  border-radius: 24px;
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1.2rem;
  font-size: 0.9rem;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.hero-card-title {
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.hero-tag {
  font-size: 0.75rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: rgba(76,175,147,0.08);
  color: var(--primary-dark);
}

.hero-highlight {
  border-radius: 18px;
  padding: 0.7rem 0.8rem;
  background: #e8f5e9;
  font-size: 0.82rem;
}

.hero-mini-list {
  list-style: none;
  display: grid;
  gap: 0.4rem;
  font-size: 0.82rem;
}

.hero-mini-list li::before {
  content: "•";
  color: var(--primary-dark);
  margin-right: 0.4rem;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero-list {
    grid-template-columns: 1fr;
  }
}

/* Section generic */
section {
  padding: 3rem 0;
  scroll-margin-top: 80px;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-dark);
  margin-bottom: 0.4rem;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 0.3rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

/* STORITVE */
#storitve {
  background: var(--accent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.3rem 1.1rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.03);
  display: grid;
  gap: 0.6rem;
}

.service-title {
  font-size: 1.05rem;
  font-weight: 600;
}

.service-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-dark);
}

.service-desc {
  font-size: 0.9rem;
  color: var(--muted);
}

.service-benefits {
  list-style: none;
  font-size: 0.85rem;
  color: var(--muted);
}

.service-benefits li::before {
  content: "▸";
  margin-right: 0.35rem;
  color: var(--primary-dark);
}

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.price-chip {
  background: #e0f2f1;
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  font-weight: 600;
  color: var(--primary-dark);
}

/* BLOG */
#blog {
  background: var(--bg);
}

.blog-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(0, 1.2fr);
  gap: 1.8rem;
  align-items: flex-start;
}

.blog-main-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-soft);
}

.blog-main-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.blog-main-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.blog-list {
  list-style: none;
  font-size: 0.9rem;
  color: var(--muted);
}

.blog-list li {
  margin-bottom: 0.35rem;
}

.blog-hero-image {
  margin-bottom: 1rem;
}

.blog-hero-image img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

.blog-hero-image figcaption {
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 0.35rem;
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* KONTAKT */
#kontakt {
  background: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  padding: 1.6rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--accent);
  box-shadow: var(--shadow-soft);
}

.contact-card h3 {
  margin-bottom: 0.6rem;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.contact-form {
  display: grid;
  gap: 0.8rem;
  font-size: 0.9rem;
}

.form-row {
  display: flex;
  gap: 0.8rem;
}

.form-control {
  flex: 1;
  display: grid;
  gap: 0.25rem;
}

label {
  font-size: 0.8rem;
  color: var(--muted);
}

input, textarea {
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  padding: 0.6rem 0.7rem;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
  background: var(--white);
}

input:focus, textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(76,175,147,0.25);
}

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

.contact-info {
  font-size: 0.9rem;
}

.contact-info p {
  margin-bottom: 0.4rem;
}

.map-placeholder {
  margin-top: 0.8rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #e2e8f0;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
  padding: 0.5rem;
}

/* LANGUAGE SWITCH (unused currently) */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-left: 0.5rem;
}

.lang-switch a {
  color: var(--muted);
}

.lang-switch a.active {
  color: var(--primary-dark);
  font-weight: 600;
}

.lang-switch span {
  color: #cbd5e1;
}

@media (max-width: 768px) {
  .lang-switch {
    margin-top: 0.4rem;
  }
}


/* FOOTER */
footer {
  padding: 1.5rem 0 2rem;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}

footer a {
  color: var(--primary-dark);
}


#calendar {
  max-width: 100%;
  margin-top: 1rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 1rem;
}

#calendar .fc {
  font-size: 0.9rem;
}

#calendar .fc-toolbar {
  margin-bottom: 0.5rem;
}

#calendar .fc-toolbar-title {
  font-size: 1rem;
  color: var(--text);
}

#calendar .fc-button {
  background: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 10px;
  padding: 0.25rem 0.75rem;
  font-weight: 600;
}

#calendar .fc-button:hover,
#calendar .fc-button:focus {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

#calendar .fc-scrollgrid {
  border-radius: 12px;
  overflow: hidden;
}

#calendar .fc-col-header-cell-cushion,
#calendar .fc-timegrid-axis-cushion {
  padding: 0.35rem 0.3rem;
  color: var(--muted);
}

#calendar .fc-timegrid-slot {
  height: 32px;
}

#calendar .fc-timegrid-slot-lane {
  background: #fbfdfc;
}

#calendar .fc-timegrid-slot-lane:nth-child(odd) {
  background: #f6fbf9;
}

#calendar .fc-day-today {
  background: #eef7f3;
}

#calendar .fc-highlight {
  background: rgba(76,175,147,0.2);
  border: 2px solid var(--primary-dark);
  box-shadow: 0 0 0 1px rgba(58,138,118,0.2) inset;
}

#calendar .busy-slot {
  background: #ffe3e0;
  border: 1px solid #f7b5ad;
  color: #b23b2e;
}

#calendar .fc-day-sat .fc-timegrid-col-frame,
#calendar .fc-day-sun .fc-timegrid-col-frame {
  background: #f8f2ff;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.slot-preview {
  font-size: 0.85rem;
  background: #e8f5e9;
  color: var(--primary-dark);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(76,175,147,0.3);
  white-space: nowrap;
}

#calendar .selected-slot {
  background: #d8f7ec;
  border: 1px solid var(--primary-dark);
  color: #1f6c59;
}
/* End of Template 1 CSS */
