/* ========================================
   ZDRAVA ISHRANA - Style
   Boje: Morsko plava
   ======================================== */

:root {
    --primary: #0369a1;
    --primary-light: #0284c7;
    --primary-dark: #075985;
    --secondary: #0891b2;
    --secondary-light: #06b6d4;
    --accent: #0ea5e9;
    --accent-light: #38bdf8;

    --bg-light: #e0f4ff;
    --bg-white: #ffffff;
    --bg-soft: #e0f7fa;
    --bg-gradient: linear-gradient(135deg, #0369a1, #0891b2);
    --bg-gradient-soft: linear-gradient(135deg, #e0f4ff, #e0f7fa, #f0f9ff);

    --text-dark: #0c3547;
    --text-medium: #1a5b7a;
    --text-light: #2980a8;
    --text-white: #ffffff;

    --shadow-sm: 0 2px 8px rgba(3, 105, 161, 0.12);
    --shadow-md: 0 4px 20px rgba(3, 105, 161, 0.18);
    --shadow-lg: 0 8px 40px rgba(3, 105, 161, 0.22);
    --shadow-glow: 0 0 30px rgba(3, 105, 161, 0.3);

    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== Reset & Base ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

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

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

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

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--bg-gradient);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(13, 148, 136, 0.4);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ========== Navigacija ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(13, 148, 136, 0.1);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

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

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

.logo-text {
    font-family: 'Quicksand', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-links a {
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-medium);
    transition: var(--transition);
}

.nav-links a:hover {
    background: rgba(13, 148, 136, 0.1);
    color: var(--primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ========== Hero ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #075985 0%, #0369a1 30%, #0891b2 70%, #06b6d4 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
    animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

.hero-overlay {
    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");
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 800px;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: white;
    margin-bottom: 20px;
    font-weight: 800;
}

.highlight {
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 12px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 4px;
    z-index: -1;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero .btn-primary {
    background: white;
    color: var(--primary);
    font-size: 1.1rem;
    padding: 16px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    color: var(--bg-light);
    z-index: 3;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ========== Intro kartice ========== */
.intro {
    padding: 80px 0 60px;
    background: var(--bg-light);
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.intro-card {
    background: white;
    padding: 36px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(13, 148, 136, 0.08);
}

.intro-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(13, 148, 136, 0.2);
}

.intro-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.intro-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.intro-card p {
    font-size: 0.95rem;
    color: var(--text-medium);
}

/* ========== Section Headers ========== */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header.light h2,
.section-header.light p {
    color: white;
}

.section-header.light .section-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.section-tag {
    display: inline-block;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(13, 148, 136, 0.1);
    color: var(--primary);
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--text-dark);
    margin-bottom: 12px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* ========== Savjeti ========== */
.savjeti {
    padding: 100px 0;
    background: var(--bg-white);
}

.savjeti-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.savjet-card {
    position: relative;
    background: var(--bg-light);
    padding: 32px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: 1px solid transparent;
    overflow: hidden;
}

.savjet-card::before {
    content: attr(data-number);
    position: absolute;
    top: -10px;
    right: 16px;
    font-size: 5rem;
    font-weight: 800;
    font-family: 'Quicksand', sans-serif;
    color: rgba(13, 148, 136, 0.06);
    line-height: 1;
}

.savjet-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(13, 148, 136, 0.15);
    background: white;
}

.savjet-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.savjet-card h3 {
    font-size: 1.15rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.savjet-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========== Recepti ========== */
.recepti {
    padding: 100px 0;
    background: var(--bg-gradient-soft);
}

.recepti-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.recept-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(13, 148, 136, 0.08);
}

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

.recept-image {
    height: 200px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.recept-img-1 {
    background: linear-gradient(135deg, #0891b2, #0ea5e9, #38bdf8);
}

.recept-img-2 {
    background: linear-gradient(135deg, #0369a1, #0284c7, #06b6d4);
}

.recept-img-3 {
    background: linear-gradient(135deg, #075985, #0369a1, #0891b2);
}

.recept-badge {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.recept-content {
    padding: 24px;
}

.recept-content h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.recept-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.recept-content p {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.recept-sastojci {
    list-style: none;
    padding: 16px 0 0;
    border-top: 1px solid rgba(13, 148, 136, 0.1);
}

.recept-sastojci li {
    padding: 4px 0;
    font-size: 0.9rem;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 8px;
}

.recept-sastojci li::before {
    content: '✦';
    color: var(--accent);
    font-size: 0.7rem;
}

/* ========== Koristi ========== */
.koristi {
    padding: 100px 0;
    background: linear-gradient(135deg, #075985 0%, #0369a1 40%, #0891b2 100%);
    position: relative;
}

.koristi::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

.koristi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 1;
}

.korist-item {
    text-align: center;
    padding: 32px 20px;
}

.korist-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.2rem;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.korist-item:hover .korist-circle {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.25);
}

.korist-item h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.korist-item p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

/* ========== Dnevni Plan ========== */
.dnevni-plan {
    padding: 100px 0;
    background: var(--bg-white);
}

.plan-timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.plan-timeline::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    border-radius: 3px;
}

.plan-item {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.plan-time {
    flex-shrink: 0;
    width: 60px;
    text-align: center;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary);
    padding-top: 18px;
    position: relative;
}

.plan-time::after {
    content: '';
    position: absolute;
    right: -14px;
    top: 22px;
    width: 12px;
    height: 12px;
    background: white;
    border: 3px solid var(--primary);
    border-radius: 50%;
    z-index: 1;
}

.plan-card {
    flex: 1;
    background: var(--bg-light);
    padding: 24px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: 1px solid transparent;
    margin-left: 16px;
}

.plan-card:hover {
    background: white;
    box-shadow: var(--shadow-md);
    border-color: rgba(13, 148, 136, 0.15);
    transform: translateX(4px);
}

.plan-emoji {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.plan-card h3 {
    font-size: 1.05rem;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.plan-card p {
    color: var(--text-medium);
    font-size: 0.93rem;
}

/* ========== Motivacija ========== */
.motivacija {
    padding: 80px 0;
    background: var(--bg-gradient-soft);
    text-align: center;
}

.quote-card {
    max-width: 700px;
    margin: 0 auto 40px;
    padding: 48px 40px;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    position: relative;
}

.quote-icon {
    font-size: 5rem;
    color: var(--primary-light);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 0.5;
    position: absolute;
    top: 24px;
    left: 32px;
}

blockquote {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 12px;
}

cite {
    font-size: 1rem;
    color: var(--text-light);
    font-style: normal;
}

.motivacija-text h2 {
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.motivacija-text p {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ========== Kontakt ========== */
.kontakt {
    padding: 100px 0;
    background: var(--bg-white);
}

.kontakt-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: start;
}

.kontakt-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(13, 148, 136, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-family: 'Quicksand', sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(13, 148, 136, 0.15);
    border-radius: var(--radius-sm);
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    background: white;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

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

.kontakt-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: var(--bg-light);
    padding: 28px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid rgba(13, 148, 136, 0.08);
    transition: var(--transition);
}

.info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.info-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.info-card h3 {
    font-size: 1rem;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.info-card p {
    font-size: 0.95rem;
    color: var(--text-medium);
}

/* ========== Footer ========== */
.footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo-text {
    font-size: 1.2rem;
}

.footer-brand p {
    margin-top: 12px;
    font-size: 0.95rem;
}

.footer-links h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    padding: 4px 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-light);
    transform: translateX(4px);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
}

/* ========== Plutajuce recenice (Hero) ========== */
.floating-text {
    position: absolute;
    color: rgba(255, 255, 255, 0.15);
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
    animation: floatAround 12s ease-in-out infinite;
}

.ft-1 { top: 15%; left: 5%; animation-delay: 0s; font-size: 1rem; }
.ft-2 { top: 25%; right: 5%; animation-delay: 3s; font-size: 1.3rem; }
.ft-3 { bottom: 25%; left: 8%; animation-delay: 6s; font-size: 1.1rem; }
.ft-4 { bottom: 35%; right: 8%; animation-delay: 9s; font-size: 0.95rem; }

@keyframes floatAround {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.15; }
    25% { transform: translateY(-15px) translateX(10px); opacity: 0.25; }
    50% { transform: translateY(-5px) translateX(-10px); opacity: 0.2; }
    75% { transform: translateY(-20px) translateX(5px); opacity: 0.15; }
}

/* ========== Hero Stats ========== */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    color: white;
}

.stat-number {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    line-height: 1.1;
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.85;
    display: block;
    max-width: 140px;
    margin: 4px auto 0;
}

.hero-stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
}

/* ========== Pokretne trake (Marquee) ========== */
.marquee-strip {
    overflow: hidden;
    white-space: nowrap;
    padding: 14px 0;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
}

.marquee-strip-1 {
    background: var(--primary);
    color: white;
}

.marquee-strip-2 {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
    color: white;
}

.marquee-strip-3 {
    background: var(--secondary);
    color: white;
}

.marquee-content {
    display: inline-flex;
    animation: marquee 30s linear infinite;
}

.marquee-reverse {
    animation: marquee-reverse 35s linear infinite;
}

.marquee-content span {
    padding: 0 40px;
    flex-shrink: 0;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marquee-reverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* ========== Fun Fact Banner ========== */
.fun-fact-banner {
    padding: 20px 0;
    background: var(--bg-soft);
    border-top: 2px solid rgba(3, 105, 161, 0.1);
    border-bottom: 2px solid rgba(3, 105, 161, 0.1);
}

.fun-fact-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    text-align: center;
}

.fun-fact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.fun-fact-text {
    font-size: 1.05rem;
    color: var(--primary-dark);
    font-weight: 600;
    transition: opacity 0.5s ease;
}

/* ========== Fun Facts sekcija ========== */
.fun-facts {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--secondary));
    position: relative;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.fact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 32px 20px;
    text-align: center;
    transition: var(--transition);
}

.fact-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-6px);
}

.fact-number {
    font-family: 'Quicksand', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 12px;
}

.fact-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

/* ========== Recept tip ========== */
.recept-tip {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-dark);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.recept-image {
    position: relative;
}

/* ========== Izazov sekcija ========== */
.challenge {
    padding: 80px 0;
    background: var(--bg-soft);
}

.challenge-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius-xl);
    padding: 48px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(3, 105, 161, 0.1);
}

.challenge-badge {
    display: inline-block;
    background: var(--bg-gradient);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.challenge-card h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.challenge-card > p {
    color: var(--text-medium);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.challenge-days {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.challenge-day {
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    padding: 16px 12px;
    min-width: 110px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: default;
}

.challenge-day:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.day-num {
    display: block;
    font-family: 'Quicksand', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.day-task {
    font-size: 0.8rem;
    color: var(--text-medium);
    font-weight: 600;
}

/* ========== Mitovi sekcija ========== */
.mitovi {
    padding: 100px 0;
    background: var(--bg-white);
}

.mitovi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.mit-card {
    perspective: 800px;
    height: 220px;
    cursor: pointer;
}

.mit-front, .mit-back {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    backface-visibility: hidden;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mit-card {
    position: relative;
}

.mit-front {
    background: var(--bg-light);
    border: 2px solid rgba(3, 105, 161, 0.12);
    z-index: 2;
}

.mit-back {
    background: white;
    border: 2px solid var(--primary);
    transform: rotateY(180deg);
    box-shadow: var(--shadow-md);
}

.mit-card.flipped .mit-front {
    transform: rotateY(180deg);
}

.mit-card.flipped .mit-back {
    transform: rotateY(0deg);
}

.mit-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.mit-front p {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.mit-hint {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 12px;
    opacity: 0.7;
}

.mit-verdict {
    display: inline-block;
    padding: 4px 16px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 12px;
    font-family: 'Quicksand', sans-serif;
}

.mit-false {
    background: #fee2e2;
    color: #dc2626;
}

.mit-true {
    background: #d1fae5;
    color: #059669;
}

.mit-back p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* ========== Quotes Slider ========== */
.quotes-slider {
    position: relative;
    max-width: 700px;
    margin: 0 auto 20px;
    min-height: 200px;
}

.quotes-slider .quote-card {
    display: none;
    margin: 0 auto 0;
}

.quotes-slider .quote-card.active {
    display: block;
    animation: fadeInQuote 0.6s ease;
}

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

.quote-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
}

.quote-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(3, 105, 161, 0.2);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.quote-dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

/* ========== Bocni fiksni natpisi ========== */
.side-text {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 40px;
    z-index: 50;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    pointer-events: none;
}

.side-left {
    left: 6px;
}

.side-right {
    right: 6px;
}

.side-text span {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--primary);
    opacity: 0.25;
    letter-spacing: 2px;
    white-space: nowrap;
    animation: sidePulse 4s ease-in-out infinite;
}

.side-left span:nth-child(even) { animation-delay: 2s; }
.side-right span:nth-child(odd) { animation-delay: 1s; }
.side-right span:nth-child(even) { animation-delay: 3s; }

@keyframes sidePulse {
    0%, 100% { opacity: 0.15; }
    50% { opacity: 0.35; }
}

/* ========== Plutajuci bubble citati ========== */
.scatter-quotes {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 40;
    overflow: hidden;
}

.scatter-bubble {
    position: absolute;
    background: rgba(3, 105, 161, 0.07);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(3, 105, 161, 0.1);
    color: var(--primary);
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 0.78rem;
    padding: 8px 16px;
    border-radius: 50px;
    white-space: nowrap;
    opacity: 0;
    animation: bubbleFloat 20s ease-in-out infinite;
}

.sb-1  { top: 12%; left: 2%;  animation-delay: 0s; }
.sb-2  { top: 22%; right: 1%; animation-delay: 1.5s; }
.sb-3  { top: 8%;  right: 3%; animation-delay: 3s; }
.sb-4  { top: 35%; left: 1%;  animation-delay: 4.5s; }
.sb-5  { top: 45%; right: 2%; animation-delay: 6s; }
.sb-6  { top: 55%; left: 3%;  animation-delay: 7.5s; }
.sb-7  { top: 60%; right: 1%; animation-delay: 9s; }
.sb-8  { top: 70%; left: 1%;  animation-delay: 10.5s; }
.sb-9  { top: 78%; right: 3%; animation-delay: 12s; }
.sb-10 { top: 85%; left: 2%;  animation-delay: 13.5s; }
.sb-11 { top: 18%; left: 4%;  animation-delay: 15s; }
.sb-12 { top: 40%; right: 4%; animation-delay: 16.5s; }
.sb-13 { top: 52%; left: 0%;  animation-delay: 18s; }
.sb-14 { top: 68%; right: 0%; animation-delay: 19s; }
.sb-15 { top: 92%; left: 3%;  animation-delay: 20s; }

@keyframes bubbleFloat {
    0%   { opacity: 0; transform: translateY(20px) scale(0.9); }
    8%   { opacity: 0.7; transform: translateY(0) scale(1); }
    15%  { opacity: 0.7; transform: translateY(-5px) scale(1); }
    22%  { opacity: 0; transform: translateY(-15px) scale(0.95); }
    100% { opacity: 0; }
}

/* ========== Bocne biljeske u sekcijama ========== */
.section-side-note {
    position: absolute;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 18px;
    border-radius: 50px;
    white-space: nowrap;
    z-index: 5;
    animation: noteGlow 5s ease-in-out infinite;
}

.left-note {
    left: 12px;
    background: rgba(3, 105, 161, 0.08);
    color: var(--primary);
    border: 1px solid rgba(3, 105, 161, 0.15);
    transform: rotate(-2deg);
}

.right-note {
    right: 12px;
    background: rgba(8, 145, 178, 0.08);
    color: var(--secondary);
    border: 1px solid rgba(8, 145, 178, 0.15);
    transform: rotate(2deg);
}

@keyframes noteGlow {
    0%, 100% { opacity: 0.5; transform: rotate(-2deg) scale(1); }
    50% { opacity: 0.85; transform: rotate(-1deg) scale(1.03); }
}

.right-note {
    animation-name: noteGlowRight;
}

@keyframes noteGlowRight {
    0%, 100% { opacity: 0.5; transform: rotate(2deg) scale(1); }
    50% { opacity: 0.85; transform: rotate(1deg) scale(1.03); }
}

/* ========== Animacije pri scrollu ========== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
    .intro-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .recepti-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .koristi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mitovi-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 16px 24px;
        box-shadow: var(--shadow-md);
        border-bottom-left-radius: var(--radius-md);
        border-bottom-right-radius: var(--radius-md);
    }

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

    .nav-links a {
        padding: 12px 16px;
        font-size: 1rem;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .savjeti-grid {
        grid-template-columns: 1fr;
    }

    .recepti-grid {
        grid-template-columns: 1fr;
    }

    .koristi-grid {
        grid-template-columns: 1fr;
    }

    .facts-grid {
        grid-template-columns: 1fr 1fr;
    }

    .mitovi-grid {
        grid-template-columns: 1fr;
    }

    .mit-card {
        height: 180px;
    }

    .hero-stats {
        gap: 16px;
    }

    .hero-stat-divider {
        display: none;
    }

    .floating-text {
        display: none;
    }

    .side-text {
        display: none;
    }

    .scatter-quotes {
        display: none;
    }

    .section-side-note {
        display: none;
    }

    .challenge-card {
        padding: 28px;
    }

    .challenge-days {
        gap: 8px;
    }

    .challenge-day {
        min-width: 90px;
        padding: 12px 8px;
    }

    .kontakt-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .plan-timeline::before {
        left: 50px;
    }

    .plan-time {
        width: 50px;
        font-size: 0.8rem;
    }

    .plan-time::after {
        right: -14px;
    }

    .plan-card {
        margin-left: 12px;
        padding: 20px;
    }

    .kontakt-form {
        padding: 28px;
    }

    .quote-card {
        padding: 36px 28px;
    }

    blockquote {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .facts-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 1.8rem;
    }
}
