@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@400;500;600&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-primary: #34495E;
  --color-accent-green: #2ECC71;
  --color-accent-yellow: #F39C12;
  --color-accent-red: #E74C3C;
  --color-white: #FFFFFF;
  --color-light: #F4F6F8;
  --color-light-mid: #EAF0F1;
  --color-text: #2C3E50;
  --color-text-muted: #5D6D7E;
  --color-border: #D5DBDB;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --max-width: 1280px;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow: 0 4px 18px rgba(52,73,94,0.10);
  --shadow-lg: 0 8px 32px rgba(52,73,94,0.14);
  --transition: 0.22s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-accent-green);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  padding-left: 1.4em;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.22;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.4rem, 3.5vw, 2rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); font-weight: 600; }

p {
  font-family: var(--font-body);
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1em;
}

p:last-child { margin-bottom: 0; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--light {
  background: var(--color-light);
}

.section--mid {
  background: var(--color-light-mid);
}

.section--primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.section--primary h2,
.section--primary h3,
.section--primary p {
  color: var(--color-white);
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent-green);
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 16px;
}

.section-intro {
  font-size: 1.08rem;
  color: var(--color-text-muted);
  max-width: 640px;
  margin-bottom: 0;
  line-height: 1.7;
}

.section-intro--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.text-center { text-align: center; }
.text-muted { color: var(--color-text-muted); }

.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 13px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.03em;
  text-align: center;
  line-height: 1.4;
}

.btn-primary {
  background: var(--color-accent-green);
  color: var(--color-white);
  border-color: var(--color-accent-green);
}

.btn-primary:hover {
  background: #27ae60;
  border-color: #27ae60;
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(46,204,113,0.28);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn-outline-white:hover {
  background: var(--color-white);
  color: var(--color-primary);
  transform: translateY(-1px);
}

/* ─── HEADER ─────────────────────────────────────────────── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--color-white);
  box-shadow: 0 2px 12px rgba(52,73,94,0.09);
  transition: box-shadow var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.header-logo-mark {
  width: 38px;
  height: 38px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.header-logo-mark svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--color-accent-green);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-logo-text {
  font-family: var(--font-heading);
  font-size: 1.32rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: 0.02em;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.header-nav a {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text);
  padding: 6px 11px;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.header-nav a:hover,
.header-nav a.active {
  background: var(--color-light);
  color: var(--color-primary);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  height: 2.5px;
  border-radius: 2px;
  background: var(--color-primary);
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 12px 24px 20px;
  gap: 4px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-text);
  padding: 10px 12px;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.mobile-nav a:hover {
  background: var(--color-light);
  color: var(--color-primary);
}

/* ─── HERO ────────────────────────────────────────────────── */

.hero {
  padding: 148px 0 90px;
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 60%, #2C3E50 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/hero.jpg') center/cover no-repeat;
  opacity: 0.22;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  color: var(--color-white);
  margin-bottom: 22px;
  text-wrap: balance;
}

.hero-content h1 span {
  color: var(--color-accent-green);
}

.hero-content p {
  color: rgba(255,255,255,0.88);
  font-size: 1.08rem;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-badge {
  display: inline-block;
  background: rgba(46,204,113,0.18);
  color: var(--color-accent-green);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(46,204,113,0.35);
  margin-bottom: 18px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--color-primary);
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-disclaimer {
  position: relative;
  z-index: 2;
  margin-top: 40px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  text-align: center;
  letter-spacing: 0.02em;
}

.hero-disclaimer strong {
  color: var(--color-accent-green);
}

/* ─── RAZUMEVANJE SKLEPOV ─────────────────────────────────── */

.razumevanje-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.razumevanje-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 5/4;
  background: var(--color-light);
}

.razumevanje-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.razumevanje-content .section-intro {
  margin-bottom: 24px;
}

.anatomy-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.anatomy-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: var(--color-light);
  border-radius: var(--radius);
  border-left: 4px solid var(--color-accent-green);
  font-size: 0.95rem;
}

.anatomy-list li strong {
  color: var(--color-primary);
  font-weight: 600;
  min-width: 90px;
  flex-shrink: 0;
}

/* ─── PREHRANA ────────────────────────────────────────────── */

.prehrana-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.prehrana-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.prehrana-main-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--color-white);
}

.prehrana-main-card-img {
  background: var(--color-light);
  min-height: 300px;
  overflow: hidden;
}

.prehrana-main-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prehrana-main-card-body {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.prehrana-main-card-body h3 {
  margin-bottom: 14px;
}

.prehrana-main-card-body p {
  color: var(--color-text-muted);
  font-size: 0.96rem;
}

.nutrient-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.nutrient-card-img {
  aspect-ratio: 16/9;
  background: var(--color-light);
  overflow: hidden;
}

.nutrient-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nutrient-card-body {
  padding: 26px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.nutrient-card-body h3 {
  margin-bottom: 10px;
}

.nutrient-card-body p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  flex: 1;
}

.nutrient-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
  background: rgba(46,204,113,0.13);
  color: var(--color-accent-green);
}

.nutrient-tag--yellow {
  background: rgba(243,156,18,0.13);
  color: var(--color-accent-yellow);
}

/* ─── GIBANJE ────────────────────────────────────────────── */

.gibanje-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.gibanje-content .section-intro {
  margin-bottom: 28px;
}

.activity-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.activity-card {
  padding: 20px 18px;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 3px solid var(--color-accent-green);
}

.activity-card h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 7px;
}

.activity-card p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin: 0;
}

.gibanje-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: var(--color-light);
}

.gibanje-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── PRISTOPI ────────────────────────────────────────────── */

.pristopi-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}

.pristopi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pristop-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.pristop-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pristop-card-img {
  aspect-ratio: 4/3;
  background: var(--color-light);
  overflow: hidden;
}

.pristop-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.pristop-card:hover .pristop-card-img img {
  transform: scale(1.04);
}

.pristop-card-body {
  padding: 28px 26px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pristop-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: rgba(52,73,94,0.09);
  line-height: 1;
  margin-bottom: 10px;
}

.pristop-card-body h3 {
  margin-bottom: 12px;
}

.pristop-card-body p {
  color: var(--color-text-muted);
  font-size: 0.93rem;
  flex: 1;
}

.pristop-card-body ul {
  list-style: none;
  padding: 0;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.pristop-card-body ul li {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  padding-left: 18px;
  position: relative;
}

.pristop-card-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent-green);
}

/* ─── MITI ────────────────────────────────────────────────── */

.miti-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}

.miti-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.mit-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow);
  border-top: 4px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mit-card--myth {
  border-top-color: var(--color-accent-red);
}

.mit-card--fact {
  border-top-color: var(--color-accent-green);
}

.mit-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  width: fit-content;
}

.mit-label--myth {
  background: rgba(231,76,60,0.12);
  color: var(--color-accent-red);
}

.mit-label--fact {
  background: rgba(46,204,113,0.12);
  color: var(--color-accent-green);
}

.mit-card h3 {
  margin: 0;
  font-size: 1rem;
}

.mit-card p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  margin: 0;
}

/* ─── ZIVLJENJSKI SLOG ─────────────────────────────────────── */

.slog-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.slog-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--color-light);
  order: -1;
}

.slog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slog-content .section-intro {
  margin-bottom: 24px;
}

.slog-pillars {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.slog-pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(52,73,94,0.07);
}

.slog-pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-light-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.slog-pillar-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-primary);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.slog-pillar-text h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.slog-pillar-text p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* ─── HIDRACIJA ──────────────────────────────────────────── */

.hidracija-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.hidracija-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}

.hidracija-stat {
  padding: 26px 22px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
}

.hidracija-stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-accent-green);
  line-height: 1;
  margin-bottom: 8px;
}

.hidracija-stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  line-height: 1.45;
}

.hidracija-tips {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hidracija-tip {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(46,204,113,0.07);
  border-radius: var(--radius);
  border-left: 3px solid var(--color-accent-green);
}

.hidracija-tip-num {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-accent-green);
  min-width: 28px;
  flex-shrink: 0;
  padding-top: 1px;
}

.hidracija-tip p {
  font-size: 0.92rem;
  color: var(--color-text);
  margin: 0;
}

/* ─── ZASCITA ─────────────────────────────────────────────── */

.zascita-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.zascita-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.zascita-tip-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.zascita-tip-icon {
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.zascita-tip-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-accent-green);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.zascita-tip-text h4 {
  font-family: var(--font-heading);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.zascita-tip-text p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin: 0;
}

.zascita-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--color-light);
}

.zascita-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── FAQ ─────────────────────────────────────────────────── */

.faq-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 48px;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: background var(--transition);
}

.faq-question:hover {
  background: var(--color-light);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--color-primary);
  stroke-width: 2.5;
  fill: none;
  transition: transform var(--transition);
}

.faq-item.open .faq-icon {
  background: var(--color-primary);
}

.faq-item.open .faq-icon svg {
  stroke: var(--color-white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.36s ease, padding 0.22s ease;
}

.faq-answer.open {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 26px 22px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.72;
}

/* ─── SOFT CTA ──────────────────────────────────────────── */

.soft-cta {
  background: var(--color-primary);
  padding: 80px 0;
  text-align: center;
}

.soft-cta h2 {
  color: var(--color-white);
  margin-bottom: 16px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.soft-cta p {
  color: rgba(255,255,255,0.78);
  font-size: 1.06rem;
  max-width: 560px;
  margin: 0 auto 36px;
}

.cta-nav-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.cta-pill {
  display: inline-block;
  padding: 11px 24px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.88);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition);
}

.cta-pill:hover {
  border-color: var(--color-accent-green);
  color: var(--color-accent-green);
  background: rgba(46,204,113,0.08);
}

/* ─── CONTACT ─────────────────────────────────────────────── */

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 16px;
}

.contact-info .section-intro {
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}

.contact-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-detail-icon {
  width: 42px;
  height: 42px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-accent-green);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-detail-text {
  padding-top: 2px;
}

.contact-detail-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.contact-detail-text span, .contact-detail-text a {
  font-size: 0.96rem;
  color: var(--color-text);
}

.contact-detail-text a:hover {
  color: var(--color-accent-green);
}

.work-hours {
  background: var(--color-light);
  border-radius: var(--radius);
  padding: 20px 22px;
}

.work-hours h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.work-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 5px 0;
  border-bottom: 1px solid var(--color-border);
}

.work-hours-row:last-child {
  border-bottom: none;
}

.work-hours-row .day {
  color: var(--color-text-muted);
}

.work-hours-row .time {
  font-weight: 600;
  color: var(--color-primary);
}

.contact-form-wrap {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
}

.contact-form-wrap h3 {
  margin-bottom: 8px;
}

.form-disclaimer {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-bottom: 26px;
  padding: 10px 14px;
  background: var(--color-light);
  border-radius: var(--radius);
  border-left: 3px solid var(--color-accent-yellow);
  line-height: 1.55;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 7px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-accent-green);
  box-shadow: 0 0 0 3px rgba(46,204,113,0.14);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

/* ─── INFO CONTEXT BLOCK ──────────────────────────────────── */

.info-context {
  background: var(--color-light-mid);
  border-radius: var(--radius-lg);
  padding: 36px 38px;
  border: 1px solid var(--color-border);
  max-width: 860px;
  margin: 0 auto;
}

.info-context h3 {
  margin-bottom: 16px;
}

.info-context ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-context ul li {
  font-size: 0.93rem;
  color: var(--color-text-muted);
  padding-left: 22px;
  position: relative;
  line-height: 1.6;
}

.info-context ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent-yellow);
}

/* ─── FOOTER ─────────────────────────────────────────────── */

.site-footer {
  background: #1a2636;
  color: rgba(255,255,255,0.72);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .header-logo-text {
  color: var(--color-white);
  font-size: 1.5rem;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.65;
  margin: 14px 0 22px;
  max-width: 280px;
}

.footer-edu-notice {
  font-size: 0.8rem;
  color: var(--color-accent-green);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 8px 14px;
  border: 1px solid rgba(46,204,113,0.3);
  border-radius: 100px;
  display: inline-block;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.62);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--color-accent-green);
}

.footer-col .contact-item {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.55;
  margin-bottom: 8px;
}

.footer-col .contact-item a {
  color: rgba(255,255,255,0.62);
}

.footer-col .contact-item a:hover {
  color: var(--color-accent-green);
}

.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

.footer-policies {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-policies a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
  cursor: pointer;
}

.footer-policies a:hover {
  color: var(--color-accent-green);
}

/* ─── POLICY MODALS ──────────────────────────────────────── */

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,38,54,0.72);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  max-width: 760px;
  width: 100%;
  max-height: 82vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,0.28);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
}

.modal-header h2 {
  font-size: 1.2rem;
  margin: 0;
}

.modal-close {
  width: 36px;
  height: 36px;
  border: none;
  background: var(--color-light);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  flex-shrink: 0;
}

.modal-close:hover {
  background: var(--color-border);
}

.modal-close svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-text);
  stroke-width: 2.5;
  fill: none;
}

.modal-body {
  padding: 28px 32px 32px;
  overflow-y: auto;
  flex: 1;
}

.modal-body h3 {
  font-size: 1rem;
  margin: 22px 0 8px;
  color: var(--color-primary);
}

.modal-body h3:first-child {
  margin-top: 0;
}

.modal-body p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.72;
}

.modal-body ul {
  padding-left: 1.4em;
}

.modal-body ul li {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 5px;
}

/* ─── COOKIE BANNER ──────────────────────────────────────── */

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3000;
  max-width: 700px;
  width: calc(100% - 32px);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  border: 1px solid var(--color-border);
  padding: 22px 26px;
}

.cookie-banner.visible {
  display: block;
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  min-width: 220px;
}

.cookie-banner-text p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.58;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.cookie-btn-accept {
  background: var(--color-accent-green);
  color: var(--color-white);
  border-color: var(--color-accent-green);
}

.cookie-btn-accept:hover {
  background: #27ae60;
  border-color: #27ae60;
}

.cookie-btn-decline {
  background: transparent;
  color: var(--color-text-muted);
  border-color: var(--color-border);
}

.cookie-btn-decline:hover {
  background: var(--color-light);
  color: var(--color-text);
}

.cookie-btn-more {
  background: transparent;
  color: var(--color-primary);
  border-color: transparent;
  text-decoration: underline;
  font-weight: 600;
}

.cookie-btn-more:hover {
  color: var(--color-accent-green);
}

/* ─── SCROLL ANIMATION ─────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.56s ease, transform 0.56s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── THANK YOU MESSAGE (Inline) ───────────────────────────── */

.thank-you-message {
  animation: slideIn 0.4s ease forwards;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.thank-you-content {
  background: linear-gradient(135deg, rgba(46,204,113,0.08) 0%, rgba(46,204,113,0.04) 100%);
  border: 2px solid rgba(46,204,113,0.2);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}

.thank-you-icon {
  width: 64px;
  height: 64px;
  background: rgba(46,204,113,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.thank-you-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--color-accent-green);
  stroke-width: 2.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thank-you-content h3 {
  font-size: 1.4rem;
  color: var(--color-primary);
  margin: 0 0 12px;
}

.thank-you-content p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* ─── THANK YOU PAGE ─────────────────────────────────────── */

.thankyou-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-light);
  padding: 40px 24px;
}

.thankyou-card {
  max-width: 560px;
  width: 100%;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.thankyou-icon {
  width: 72px;
  height: 72px;
  background: rgba(46,204,113,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.thankyou-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--color-accent-green);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thankyou-card h1 {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.thankyou-card p {
  color: var(--color-text-muted);
  font-size: 1rem;
  margin-bottom: 32px;
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */

@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .pristopi-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }

  .header-nav { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 110px 0 64px; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-img-wrap { order: -1; }

  .razumevanje-inner,
  .gibanje-inner,
  .slog-inner,
  .hidracija-inner,
  .zascita-inner,
  .contact-inner { grid-template-columns: 1fr; gap: 36px; }

  .slog-img-wrap { order: 0; }

  .prehrana-grid { grid-template-columns: 1fr; }
  .prehrana-main-card { grid-template-columns: 1fr; }
  .prehrana-main-card-img { min-height: 220px; }

  .pristopi-grid { grid-template-columns: 1fr; }

  .miti-grid { grid-template-columns: 1fr; }

  .activity-cards { grid-template-columns: 1fr; }

  .hidracija-stat-grid { grid-template-columns: 1fr 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .contact-form-wrap { padding: 28px 22px; }

  .modal-header, .modal-body { padding-left: 22px; padding-right: 22px; }

  .cookie-banner-inner { flex-direction: column; align-items: flex-start; }

  .thankyou-card { padding: 40px 28px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .cta-nav-pills { flex-direction: column; align-items: center; }
  .hidracija-stat-grid { grid-template-columns: 1fr; }
  .cookie-banner-actions { width: 100%; flex-direction: column; }
  .cookie-btn { width: 100%; text-align: center; }
}
