:root {
    /* Design Tokens */
    --primary: #506357;
    --primary-dim: #45574b;
    --on-primary: #e9feee;
    --primary-fixed: #d2e8d8;
    --on-primary-fixed: #314338;
    --primary-fixed-dim: #c5daca;
    --primary-fixed-glow: rgba(210, 232, 216, 0.4);

    --surface: #faf9f7;
    --on-surface: #303331;
    --on-surface-variant: #5d605e;
    --surface-container: #edeeec;
    --surface-container-lowest: #ffffff;
    --surface-container-low: #f4f4f1;
    --surface-container-high: #e7e8e6;

    --secondary: #4f6171;
    --secondary-container: #d2e5f7;
    --on-secondary-container: #425463;
    --secondary-fixed-glow: rgba(210, 229, 247, 0.4);
    --secondary-container-glow: rgba(210, 229, 247, 0.3);

    --tertiary: #635e58;
    --tertiary-container: #f7f0e7;
    --on-tertiary-container: #5e5953;
    --on-tertiary-variant: #68645d;
    
    
    --outline-variant: #b0b2b0;
    --bg-stone-100: #f5f5f4;

    /* Typography */
    --font-headline: 'Newsreader', serif;
    --font-body: 'Manrope', sans-serif;

    /* Globals */
    --container-max: 80rem; /* 1280px */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
/* ==========================================
   RESET & BASE
   ========================================== */
/* *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
} */
body {
    font-family: var(--font-body);
    color: var(--on-surface);
    background-color: var(--surface);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
/* Selection styling */
::selection {
    background-color: var(--primary-fixed);
    color: var(--on-primary-fixed);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headline);
    font-weight: 400;
    line-height: 1.2;
    color: var(--on-surface);
    margin-bottom: 1rem;
}
a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
/* Material Icons Setup */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
}
.icon-filled {
    font-variation-settings: 'FILL' 1, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

/* hide animated elements on load */
 .w-mod-ix [data-fx] {
    visibility: hidden;
}
/* ==========================================
   GLOBAL UTILITY CLASSES
   ========================================== */
.page { 
    /* overflow: hidden;  */
    position: relative; 
}

 .w-container {
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    /*padding-left: 2rem;
    padding-right: 2rem;  */
} 

 .w-container-small {
     max-width: 56rem; /* 896px */
     margin-inline: auto;
 }

.padding-vertical-xlarge { padding-top: 8rem; padding-bottom: 8rem; }
.padding-vertical-large { padding-top: 6rem; padding-bottom: 6rem; }
.padding-vertical-medium { padding-top: 4rem; padding-bottom: 4rem; }
.padding-vertical { padding-top: 2rem; padding-bottom: 2rem; }

.margin-bottom-small { margin-bottom: 1rem; }
.margin-bottom-medium { margin-bottom: 1.5rem; }
.margin-bottom-large { margin-bottom: 2.5rem; }
.margin-bottom-xlarge { margin-bottom: 6rem; }

@media (min-width: 1024px) {
    .margin-bottom-xlarge { margin-bottom: 8rem; }
}

.text-align-center { text-align: center; }
.text-italic { font-style: italic; }

 /* Typography Utils */
 .label-text {
     font-size: 0.75rem;
     text-transform: uppercase;
     letter-spacing: 0.1em;
     font-weight: 600;
 }

.flex,
.flex-horizontal { 
    display: flex; 
    flex-direction: row; 
}
.flex.column,
.flex-vertical { 
    display: flex; 
    flex-direction: column; 
}
.flex-center { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
}

/* ==========================================
   COMPONENTS
   ========================================== */

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(250, 249, 247, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Navigation */
.w-nav {
    /* position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50; */
    background: transparent;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.w-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 10px;
}
.w-nav-brand {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    font-style: italic;
    color: #064e3b; /* emerald-900 equivalent */
}

.w-nav-brand img {
    max-height: 40px;
}

.w-nav-menu {
    display: flex;
    /* display: none; */
    align-items: center;
    /* gap: 3rem; */
    gap: 2vw;
}
@media (max-width: 767px) {
    .w-nav-menu { display: none; }
}
.w-nav-link {
    color: rgba(6, 78, 59, 0.7); /* emerald-800/70 */
    font-weight: 500;
}
.w-nav-link:hover { color: #064e3b; }
.w-nav-link.current {
    color: #064e3b;
    border-bottom: 2px solid rgba(6, 78, 59, 0.3);
}
/* Buttons */
.w-button {
    display: inline-block;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.75rem 2rem;
    /* padding: 1rem 2.5rem;  */
    border-radius: 9999px;
    /* font-size: 1.125rem; */
    font-family: var(--font-body);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    min-width: max-content;
}

@media (max-width: 479px) {
    .w-button {
        padding: 10px 20px;
    }
}
@media (max-width: 449px) {
    .nav-cta-button {
        display: none;
    }
}

.button.primary,
.button-primary {
    background-color: var(--primary);
    color: var(--on-primary);
    box-shadow: 0 4px 6px rgba(80, 99, 87, 0.2);
}
.button.primary:hover,
.button-primary:hover {
    background-color: var(--primary-dim);
    transform: scale(1.02);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    box-shadow: 0 10px 15px -3px rgba(80, 99, 87, 0.3);
}
.button.primary:active,
.button-primary:active {
    transform: scale(0.95);
}
.button.secondary,
.button-secondary {
    background-color: transparent;
    color: var(--on-surface);
    padding: 0.75rem 0;
    gap: 0.75rem;
    box-shadow: none;
}
.button.secondary:hover,
.button-secondary:hover {
    color: var(--primary);
}
.button.secondary .material-symbols-outlined,
.button-secondary .material-symbols-outlined {
    transition: transform 0.3s ease;
}
.button.secondary:hover .material-symbols-outlined,
.button-secondary:hover .material-symbols-outlined {
    transform: translateX(4px);
}


/* ==========================================
   SECTIONS
   ========================================== */
/* Hero Section  HOME */

.section-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    overflow: hidden;
}
@media (min-width: 1024px) {
    .section-hero { min-height: 75vh; }
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(250, 249, 247, 0.8) 0%, rgba(250, 249, 247, 0.4) 50%, transparent 100%);
}

@media (max-width: 1400px) {
    .hero-gradient {
        background: linear-gradient(to right, rgba(250, 249, 247, 0.8) 0%, rgba(250, 249, 247, 0.4) 700px, transparent 100%);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 42rem;
    padding: 3rem 0;
}
@media (min-width: 768px) {
    .hero-content { padding: 5rem 0; }
}
.hero-label {
    font-family: var(--font-body);
    color: #68645d; /* on-tertiary-fixed-variant */
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    display: block;
}
.hero-title {
    font-size: clamp(3.75rem, 8vw, 6rem);
    font-style: italic;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 2rem;
}
.hero-desc {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: var(--on-surface-variant);
    margin-bottom: 2.5rem;
    max-width: 36rem;
}
.hero-actions {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 1.5rem;
}
/* @media (min-width: 640px) { */
    .hero-actions { 
        flex-direction: row; 
        align-items: center; 
    }
    /* .hero-actions .w-button.button-primary { padding: 1rem 2.5rem; font-size: 1.125rem; } */
/* } */

/* About Section HOME */
.section-about {
    background-color: var(--surface);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .about-grid { grid-template-columns: 5fr 7fr; }
}

.about-visual {
    position: relative;
    padding: 0 50px 0 30px;
}
.about-image-mask {
    position: relative;
    z-index: 10;
    border-radius: 0.75rem;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    transform: rotate(-2deg);
}
@media (max-width: 1023px) {
    .about-image-mask {
        aspect-ratio: 3/2;
    }
}
.about-image-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-decor {
    position: absolute;
    bottom: -2rem;
    /* right: -2rem; */
    right: 1rem;
    width: 16rem;
    height: 16rem;
    background-color: var(--tertiary-container);
    border-radius: 0.75rem;
    z-index: 0;
    transform: rotate(6deg);
}
.about-title {
    font-size: clamp(2.25rem, 4vw, 3rem);
    line-height: 1.15;
    margin-bottom: 2rem;
}
.about-title span {
    color: var(--primary-dim);
}
.about-text {
    font-size: 1.125rem;
    color: var(--on-surface-variant);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 640px) {
    .about-features { grid-template-columns: 1fr 1fr; }
}
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.feature-icon {
    font-size: 1.875rem;
    color: var(--primary);
}
.feature-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}
.feature-desc {
    font-size: 0.875rem;
    color: var(--on-surface-variant);
}
/* Services Section (Bento Grid) */
.section-services {
    background-color: var(--surface-container-low);
}
.services-header {
    text-align: center;
    margin-bottom: 4rem;
}
.services-header h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}
.services-header p {
    color: var(--on-surface-variant);
    max-width: 36rem;
    margin: 0 auto;
}
.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 10px;
}
@media (min-width: 768px) {
    .bento-grid { grid-template-columns: repeat(3, 1fr); }
}
.bento-card {
    border-radius: 0.75rem;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    color: var(--primary);
    background-color: var(--surface-container-lowest);
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
}
.bento-card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.bento-card-desc {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}
.bento-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    margin-top: auto;
}
.bento-link .material-symbols-outlined {
    font-size: 1rem;
    transition: transform 0.3s ease;
}
.bento-card:hover .bento-link .material-symbols-outlined {
    transform: translateX(4px);
}
/* Bento Variations */
/* .card-individual {
    background-color: var(--surface-container-lowest);
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
} */
.bento-card:hover { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.bento-card .bento-icon { color: var(--primary); font-size: 2.5rem; margin-bottom: 1.5rem; }
.bento-card .bento-card-desc { color: var(--on-surface-variant); }
/* .bento-card .bento-link { color: var(--primary); } */

/* .card-partnerska, */
.bento-card.bg-primary {
    background-color: var(--primary);
    color: var(--on-primary);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    justify-content: center;
}
.card-partnerska-home {
    justify-content: center;
}
@media (min-width: 768px) { .card-partnerska-home { grid-column: span 2; } }
.card-partnerska-home .bento-card-title,
.bento-card.bg-primary .bento-card-title { font-size: 1.875rem; font-style: italic; color: var(--on-primary); }
.card-partnerska-home .bento-card-desc,
.bento-card.bg-primary .bento-card-desc { color: rgba(233, 254, 238, 0.8); max-width: 28rem; margin-bottom: 2rem; }
.card-partnerska-home .bento-icon,
.bento-card.bg-primary .bento-icon { color: var(--on-primary); font-size: 2.5rem; margin-bottom: 1.5rem; }
.card-partnerska-btn {
    background-color: var(--surface-container-lowest);
    color: var(--primary);
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 500;
    width: fit-content;
    transition: transform 0.3s ease;
    border: none;
    cursor: pointer;
}
.bento-card.bg-primary:hover .card-partnerska-btn { transform: scale(1.05); }
.card-partnerska-img {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 33%;
    /* opacity: 0.2; */
    opacity: 0.7;
    display: none;
    pointer-events: none;
}
@media (min-width: 768px) { .card-partnerska-img { display: block; } }
.card-partnerska-img img { width: 100%; height: 100%; object-fit: cover; }
/* .card-druzinska-home, */
.bento-card.bg-tertiary {
    background-color: var(--tertiary-container);
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
@media (min-width: 768px) { .card-druzinska-home { grid-column: span 2; } }
.card-druzinska-layout {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
    height: 100%;
}
@media (min-width: 768px) {
    .card-druzinska-layout { flex-direction: row; }
}
.bento-card.bg-tertiary .bento-icon { color: var(--on-tertiary-container); font-size: 2.5rem; margin-bottom: 1.5rem; }
.bento-card.bg-tertiary .bento-card-desc { color: var(--on-surface-variant); }
.bento-card.bg-tertiary .bento-link { color: var(--tertiary); }
.card-druzinska-img-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 0.5rem;
    overflow: hidden;
    /* filter: grayscale(100%); */
    /* transition: filter 0.5s ease; */
}
@media (min-width: 768px) {
    .card-druzinska-img-wrapper { width: 16rem; flex-shrink: 0; }
}
/* .card-druzinska:hover .card-druzinska-img-wrapper { filter: grayscale(0%); } */
.card-druzinska-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.card-mladostniki-home {
    /* background-color: var(--surface-container-lowest); */
    /* box-shadow: 0 1px 2px rgba(0,0,0,0.05); */
    justify-content: space-between;
}
.card-mladostniki-home .bento-icon,
.bento-card.bg-secondary .bento-icon { color: var(--secondary); font-size: 2.5rem; margin-bottom: 1.5rem; }
.card-mladostniki-home .bento-card-desc,
.bento-card.bg-secondary .bento-card-desc { color: var(--on-surface-variant); }
.card-mladostniki-home .bento-link,
.bento-card.bg-secondary .bento-link { color: var(--secondary); }

/* ==========================================
   HELP / SYMPTOMS SECTION
   ========================================== */
.section-help {
    /* bg-surface-container-low/50 */
    background-color: rgba(244, 244, 241, 0.5); 
}
.help-header {
    max-width: 48rem; /* max-w-3xl */
    margin-bottom: 4rem; /* mb-16 */
}
.help-header h2 {
    font-size: clamp(2.25rem, 4vw, 3rem); /* text-4xl md:text-5xl */
    margin-bottom: 1.5rem;
}
.help-subtitle {
    font-size: 1.125rem; /* text-lg */
    color: var(--on-surface-variant);
}
.help-grid {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 3rem; /* gap-x-12 */
    row-gap: 1.5rem;  /* gap-y-6 */
}
@media (min-width: 768px) {
    .help-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .help-grid { grid-template-columns: repeat(3, 1fr); }
}
.help-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.help-icon {
    color: var(--primary);
    margin-top: 0.25rem; /* mt-1 */
    flex-shrink: 0;
}
.help-text {
    color: var(--on-surface-variant);
    line-height: 1.6;
}

/* Quote Section */
.section-quote {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}
.quote-wrapper {
    position: relative;
}
.quote-glow {
    width: 400px;
    height: 400px;
    background-color: var(--secondary-container-glow);
    border-radius: 50%;
    filter: blur(60px);
    position: absolute;
    top: -5rem;
    left: -5rem;
    animation: pulseGlow 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    z-index: 0;
    pointer-events: none;
}
@keyframes pulseGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
.quote-content {
    position: relative;
    z-index: 10;
    max-width: 48rem;
    margin: auto;
}
.quote-icon {
    font-size: 3.75rem;
    color: rgba(80, 99, 87, 0.2); /* primary/20 */
    margin-bottom: 2rem;
}
.quote-text {
    font-size: clamp(1.875rem, 4vw, 3rem);
    line-height: 1.6;
    margin-bottom: 3rem;
}
.quote-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.quote-dot {
    width: 0.75rem;
    height: 0.75rem;
    background-color: var(--primary);
    border-radius: 50%;
    margin-bottom: 1rem;
}
.quote-line {
    height: 4rem;
    width: 1px;
    background: linear-gradient(to bottom, var(--primary), transparent);
}
/* CTA Section */
.cta-card {
    background-color: var(--bg-stone-100);
    border-radius: 2.5rem;
    padding: 3rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 64rem;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .cta-card { padding: 5rem; }
}
.cta-content {
    position: relative;
    z-index: 10;
}
.cta-title {
    /* font-size: clamp(2.25rem, 5vw, 3.75rem); */
    margin-bottom: 2rem;
}
.cta-desc {
    font-size: 1.25rem;
    color: var(--on-surface-variant);
    margin-bottom: 3rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}
.cta-button {
    display: inline-block;
    background-color: var(--primary);
    color: var(--on-primary);
    padding: 1.25rem 3rem;
    border-radius: 9999px;
    font-size: 1.25rem;
    font-weight: 500;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    transition: var(--transition-smooth);
}
.cta-button:hover {
    background-color: var(--primary-dim);
    transform: translateY(-4px);
}
.cta-glow-1 {
    position: absolute;
    bottom: -6rem;
    right: -6rem;
    width: 24rem;
    height: 24rem;
    background-color: var(--primary-fixed-glow);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}
.cta-glow-2 {
    position: absolute;
    top: -6rem;
    left: -6rem;
    width: 24rem;
    height: 24rem;
    background-color: var(--secondary-fixed-glow);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}


/* ==========================================
   SECTIONS  / O MENI  - POGLEJ KAJ JE DUPLICIRANO IZ HOME
   ========================================== */

/* Hero / O meni  */

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: flex-end;
}
@media (min-width: 1024px) {
    .hero-grid { 
        grid-template-columns: 7fr 5fr; 
        gap: 4rem; 
    }
}
.hero-badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    background-color: var(--tertiary-container);
    color: var(--on-tertiary-variant);
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

h2.hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    /* line-height: 1.1; */
    letter-spacing: 0;
    /* margin-bottom: 2rem; */
}
.hero-text {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--on-surface-variant);
    font-weight: 300;
    max-width: 42rem;
    line-height: 1.6;
}
.hero-visual {
    position: relative;
}
.hero-img-wrapper {
    position: relative;
    z-index: 10;
    aspect-ratio: 4/5;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
@media (max-width: 1024px) {
    .hero-img-wrapper {
        aspect-ratio: 3/2;
    }
}
.hero-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-glow {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    width: 8rem;
    height: 8rem;
    background-color: var(--primary-fixed-dim);
    border-radius: 50%;
    z-index: 0;
    opacity: 0.5;
    filter: blur(40px);
}


/* Asymmetric Narrative */
.section-narrative {
    background-color: var(--surface-container-low);
    padding: 6rem 0;
}
@media (min-width: 1024px) {
    .section-narrative { padding: 8rem 0; }
}
.narrative-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .narrative-grid { grid-template-columns: 1fr 1fr; }
}
.narrative-visual {
    position: relative;
    order: 2;
}
@media (min-width: 1024px) {
    .narrative-visual { order: 1; }
    .narrative-content { order: 2; }
}
.narrative-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.narrative-img-box {
    aspect-ratio: 1/1;
    border-radius: 0.75rem;
    overflow: hidden;
}

.narrative-img-box::after {
    content: attr(data-caption);
    font-size: 12px;
    color: #333;
    position: absolute;
    text-align: right;
}

.narrative-img-box:first-child {
    margin-top: 3rem;
}
.narrative-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.narrative-spin-badge {
    display: none;
    position: absolute;
    top: -2.5rem;
    right: -2.5rem;
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    border: 1px solid rgba(80, 99, 87, 0.1);
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: spinSlow 20s linear infinite;
}
@media (min-width: 1024px) {
    .narrative-spin-badge { display: flex; }
}
@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.narrative-spin-text {
    font-size: 0.625rem;
    color: rgba(80, 99, 87, 0.4); /* primary/40 */
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-style: italic;
}
.narrative-title {
    font-size: 2.25rem;
    margin-bottom: 2rem;
}
.narrative-text {
    font-size: 1.125rem;
    color: var(--on-surface-variant);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
/* Video Section */
.video-header {
    text-align: center;
    margin-bottom: 3rem;
}
.video-title {
    font-size: clamp(2.25rem, 4vw, 3rem);
    margin-bottom: 1rem;
}
.video-subtitle {
    font-size: 1.125rem;
    color: var(--on-surface-variant);
    max-width: 42rem;
    margin: 0 auto;
}
.video-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    background-color: var(--surface-container-high);
    cursor: pointer;
}
.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(229, 231, 235, 0.5); /* stone-200/50 approx */
    z-index: 10;
}
.video-overlay img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
    filter: grayscale(30%);
    z-index: -1;
}
.video-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
    z-index: -1;
}
.video-play-btn {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--on-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    transition: transform 0.3s ease;
    border: none;
    cursor: pointer;
}
.video-wrapper:hover .video-play-btn {
    transform: scale(1.1);
}
.video-play-btn .material-symbols-outlined {
    font-size: 2.5rem;
}
.video-placeholder-text {
    position: absolute;
    inset: 0;
    background-color: #d6d3d1; /* stone-300 */
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(48, 51, 49, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    font-weight: 600;
}

.link {
 font-weight: 500;
 text-decoration: underline;
}

.link:hover {
  text-decoration: none;
  opacity: 0.9;
}


/* Bento Grid (Values)  - POGLEJ KAJ JE DUPLICIRANO IZ HOME */
.values-title {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
}
.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .bento-grid { grid-template-columns: repeat(3, 1fr); }
}
.bento-card {
    border-radius: 0.75rem;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.bento-card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Card 1: Transition  - POGLEJ KAJ JE DUPLICIRANO IZ HOME */ 
.card-transition {
    /* background-color: var(--surface-container-lowest); */
    border: 1px solid rgba(176, 178, 176, 0.1);
    /* box-shadow: 0 1px 2px rgba(0,0,0,0.05); */
    justify-content: space-between;
}
@media (min-width: 768px) { .card-transition { grid-column: span 2; } }
.card-transition .bento-icon { 
    color: var(--primary); 
    font-size: 2.5rem; 
    margin-bottom: 1rem; }
.card-transition p { 
    color: var(--on-surface-variant); 
}
.card-transition-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(176, 178, 176, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
}
.transition-footer-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: var(--primary-fixed);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--on-primary-fixed);
}
.transition-footer-text {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(48, 51, 49, 0.6);
    font-weight: 600;
}
/* Card 2: Motherhood */
.card-motherhood {
    /* background-color: var(--primary); */
    /* color: var(--on-primary); */
    justify-content: space-between;
}
/* .card-motherhood .bento-card-title { font-style: italic; color: var(--on-primary); } */
.card-motherhood p { opacity: 0.9; font-weight: 300; }
.card-motherhood-decor {
    margin-top: 3rem;
    margin-bottom: 10px;
}
.card-motherhood-decor .material-symbols-outlined {
    font-size: 3.75rem;
    opacity: 0.2;
}
/* Card 3: Groundedness */
/* .card-grounded, */
.bento-card.bg-secondary {
    background-color: var(--secondary-container);
    color: var(--on-secondary-container);
}
/* .card-grounded .bento-icon, */
.bento-card.bg-secondary .bento-icon { color: var(--secondary); font-size: 2.5rem; margin-bottom: 1rem; }
/* .card-grounded p, */
.bento-card.bg-secondary p { color: rgba(66, 84, 99, 0.8); }
/* Card 4: Professional Quote */
.card-pro-quote {
    background-color: var(--tertiary-container);
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (min-width: 768px) { .card-pro-quote { grid-column: span 2; } }
.pro-quote-content {
    position: relative;
}
.pro-quote-mark {
    font-family: var(--font-headline);
    font-size: 6rem;
    position: absolute;
    top: -3rem;
    left: -1rem;
    opacity: 0.1;
    color: var(--tertiary);
    line-height: 1;
}
.pro-quote-text {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--on-tertiary-container);
    position: relative;
    z-index: 10;
}



/* ==========================================
   SECTIONS - TERAPIJA
   ========================================== */

/* Hero Section */
.terapija .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    padding-inline: 10px;
}
@media (min-width: 1024px) {
   .terapija .hero-grid { grid-template-columns: 1fr 1fr; }
}
.terapija .hero-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--on-tertiary-variant);
    margin-bottom: 1.5rem;
    display: block;
}
.terapija.terapija .hero-title {
    font-size: clamp(3rem, 5vw, 3.75rem);
    line-height: 1.1;
    margin-bottom: 2rem;
}
.terapija .hero-text {
    font-size: 1.125rem;
    color: var(--on-surface-variant);
    margin-bottom: 2.5rem;
    max-width: 36rem;
}
.terapija .hero-text p {
    margin-bottom: 1rem;
}
.terapija .hero-text p:last-child {
    margin-bottom: 0;
}
.terapija .hero-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--primary);
    font-weight: 500;
}
.terapija .hero-feature .material-symbols-outlined {
    font-size: 1.875rem;
}

.terapija .hero-visual {
    position: relative;
    border-radius: 0.75rem;
}
.terapija .hero-img-bg {
    position: absolute;
    top: -1rem;
    left: -1rem;
    right: -1rem;
    bottom: -1rem;
    background-color: rgba(247, 240, 231, 0.3); /* tertiary-container/30 */
    border-radius: 0.75rem;
    transform: rotate(-2deg);
    transition: var(--transition-slow);
    z-index: 0;
}
.terapija .hero-visual:hover .hero-img-bg {
    transform: rotate(0deg);
}
.terapija .hero-visual img {
    position: relative;
    z-index: 10;
    border-radius: 0.75rem;
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    filter: grayscale(20%);
    transition: var(--transition-slow);
}
.terapija .hero-visual:hover img {
    filter: grayscale(0%);
}
/* Therapy Types (Bento Grid) */
/* .bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .bento-grid { grid-template-columns: repeat(12, 1fr); }
} */
.bento-card {
    border-radius: 0.75rem;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    min-height: 24rem;
}
.bento-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: block;
}
.bento-title {
    font-size: 1.875rem;
    margin-bottom: 1rem;
}
.bento-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-top: 2rem;
    position: relative;
    z-index: 10;
}
.bento-price {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    color: var(--primary);
}
.bento-duration {
    font-size: 0.875rem;
    font-style: italic;
    color: var(--on-surface-variant);
}
/* Specific Bento Cards */
.card-individual {
    background-color: var(--surface-container-low);
}
/* @media (min-width: 768px) {
    .card-individual { grid-column: span 2; }
} */
.card-individual p {
    color: var(--on-surface-variant);
    max-width: 32rem;
    position: relative;
    z-index: 10;
}
.card-individual-bg-icon {
    position: absolute;
    right: -10%;
    bottom: -10%;
    font-size: 20rem;
    opacity: 0.05;
    transition: var(--transition-slow);
    pointer-events: none;
    z-index: 0;
    line-height: 1;
}
.card-individual:hover .card-individual-bg-icon {
    transform: scale(1.1);
}
.card-partnerska {
    background-color: var(--tertiary-container);
    transition: var(--transition-smooth);
}
@media (min-width: 768px) {
    /* .card-partnerska { grid-column: span 2; } */
}
.card-partnerska:hover {
    background-color: var(--tertiary-container); /* Slightly lighter/different tint conceptually based on Tailwind code */
}
.card-partnerska p {
    color: var(--on-tertiary-container);
}
.card-druzinska {
    background-color: var(--surface-container);
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    min-height: auto;
}
@media (min-width: 768px) {
    .card-druzinska { 
        grid-column: span 3; 
        grid-template-columns: 1fr 1fr;
    }
}
.card-druzinska .bento-title {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}
.card-druzinska p {
    color: var(--on-surface-variant);
    margin-bottom: 2.5rem;
}
.card-druzinska-img {
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    aspect-ratio: 16/9;
    object-fit: cover;
    width: 100%;
}
.druzinska-content {
    order: 1;
}
.druzinska-image-wrapper {
    order: 2;
}
@media (min-width: 768px) {
    .druzinska-content { order: 2; }
    .druzinska-image-wrapper { order: 1; }
}
/* Pricing Section */
.section-pricing {
    background-color: var(--surface-container-low);
    padding: 6rem 0;
}
.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}
.pricing-header h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}
.pricing-divider {
    height: 4px;
    width: 6rem;
    background-color: rgba(80, 99, 87, 0.2); /* primary/20 */
    margin: 0 auto;
    border-radius: 9999px;
}
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}
@media (min-width: 768px) {
    .pricing-grid { grid-template-columns: 1fr 1fr; }
}
.pricing-card {
    background-color: var(--surface-container-lowest);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pricing-card.outlined {
    border: 1px solid rgba(80, 99, 87, 0.1);
}
.pricing-name {
    font-weight: 500;
}
.pricing-val {
    font-family: var(--font-headline);
    font-size: 1.25rem;
    color: var(--primary);
}
.pricing-disclaimer {
    text-align: center;
    font-size: 0.875rem;
    font-style: italic;
    color: var(--on-surface-variant);
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.8;
}
/* ==========================================
MNENJA KLIENTOV (TESTIMONIALS SECTION)
========================================== */
.section-testimonials {
    background-color: var(--surface);
}
/* Subtilna ločnica (Divider) */
.testimonial-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5rem;
}
.divider-line {
    height: 1px;
    width: 6rem;
    background-color: rgba(176, 178, 176, 0.3); /* outline-variant/30 */
}
.divider-icon {
    padding: 0 1rem;
    color: rgba(80, 99, 87, 0.4); /* primary/40 */
    font-size: 0.875rem;
}
/* Naslov sekcije */
.testimonial-header {
    text-align: center;
    margin-bottom: 4rem;
}
.testimonial-header h2 {
    font-size: clamp(2.25rem, 4vw, 3rem);
    margin-bottom: 1rem;
}
.testimonial-header p {
    color: var(--on-surface-variant);
    font-size: 1.125rem;
}
/* Mreža za mnenja */
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}
@media (min-width: 1024px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Posamezna kartica mnenja */
.testimonial-card {
    position: relative;
    padding: 2.5rem;
    border-radius: 1rem;
    overflow: hidden; /* Dodano, da ogromen narekovaj ne sega ven iz kartice */
}
.testimonial-card.card-light {
    background-color: var(--surface-container-low);
}
.testimonial-card.card-tinted {
    background-color: rgba(247, 240, 231, 0.3); /* tertiary-container/30 */
}
/* Dekorativni tipografski narekovaj v ozadju */
.quote-bg-mark {
    position: absolute;
    top: 0;
    right: 1rem;
    font-family: var(--font-headline);
    font-size: 8rem; /* Ustreza text-9xl */
    line-height: 1;
    color: rgba(80, 99, 87, 0.1); /* primary/10 */
    user-select: none;
    z-index: 0;
}
/* Besedilo in avtor */
.testimonial-card blockquote {
    position: relative;
    z-index: 10;
    margin: 0;
}
.testimonial-text {
    font-family: var(--font-headline);
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--on-surface);
    margin-bottom: 2rem;
}
.testimonial-author {
    font-family: var(--font-body);
    font-style: normal;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    font-weight: 600;
}
/* CTA Section */
.section-cta {
    padding: 8rem 0;
    text-align: center;
}
.cta-title {
    font-size: 2.25rem;
    margin-bottom: 2rem;
}
.cta-text {
    font-size: 1.125rem;
    color: var(--on-surface-variant);
    margin-bottom: 3rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}
.cta-button {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}
.cta-button:hover {
    transform: scale(1.05);
}



 /* ==========================================
    SECTIONS - KONTAKT
    ========================================== */

 /* Header Section */
 .section-header {
     max-width: 48rem;
 }
 .header-title {
     font-size: clamp(3rem, 5vw, 3.75rem);
     font-weight: 700;
     line-height: 1.1;
     margin-bottom: 1.5rem;
     letter-spacing: -0.025em;
 }
 .header-desc {
     font-size: 1.125rem;
     color: var(--on-surface-variant);
     line-height: 1.8;
 }

 /* Contact & Form Grid */
 .contact-grid {
     display: grid;
     grid-template-columns: 1fr;
     gap: 2rem;
 }
 @media (min-width: 1024px) {
     .contact-grid { grid-template-columns: 4fr 8fr; }
 }

 /* Contact Info Column */
 .contact-info-card {
     background-color: var(--surface-container-low);
     padding: 2rem;
     border-radius: 0.75rem;
 }
 .contact-info-title {
     font-size: 1.5rem;
     color: var(--primary);
     margin-bottom: 2rem;
 }
 .contact-info-list {
     display: flex;
     flex-direction: column;
     gap: 1.5rem;
 }
 .contact-info-item {
     display: flex;
     align-items: flex-start;
     gap: 1rem;
 }
 .contact-info-icon {
     color: var(--primary);
     font-size: 1.5rem;
 }
 .contact-info-label {
     font-weight: 700;
     margin-bottom: 0.25rem;
 }
 .contact-info-value {
     color: var(--on-surface-variant);
 }
 .contact-info-value.link:hover {
     color: var(--primary);
 }
 
 .contact-map-wrapper {
     margin-top: 3rem;
     aspect-ratio: 1/1;
     width: 100%;
     border-radius: 0.75rem;
     overflow: hidden;
     filter: grayscale(100%);
     transition: filter 0.7s ease;
 }
@media (max-width: 1023px) {
    .contact-map-wrapper {
        display: none;
    }
}

 .contact-map-wrapper:hover {
     filter: grayscale(0%);
 }
 .contact-map-wrapper img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 /* Form Column */
 .contact-form-card {
     background-color: var(--surface-container-lowest);
     padding: 2rem;
     border-radius: 0.75rem;
     box-shadow: 0 1px 2px rgba(0,0,0,0.05);
 }
 @media (min-width: 768px) {
     .contact-form-card { padding: 3rem; }
 }
 .form-title {
     font-size: 1.875rem;
     margin-bottom: 2rem;
 }
 .form-row {
     display: grid;
     grid-template-columns: 1fr;
     gap: 1.5rem;
     margin-bottom: 1.5rem;
 }
 @media (min-width: 768px) {
     .form-row { grid-template-columns: 1fr 1fr; }
 }
 .form-group {
     margin-bottom: 1.5rem;
 }
 .form-label {
     display: block;
     font-size: 0.875rem;
     font-family: var(--font-body);
     font-weight: 600;
     color: var(--on-surface-variant);
     text-transform: uppercase;
     letter-spacing: 0.05em;
     margin-bottom: 0.5rem;
 }
 .form-input, .form-textarea {
     width: 100%;
     background-color: var(--surface-container-low);
     border: 2px solid transparent;
     border-radius: 0.5rem;
     padding: 1rem;
     font-family: var(--font-body);
     font-size: 1rem;
     color: var(--on-surface);
     transition: var(--transition-smooth);
     outline: none;
 }
 .form-textarea {
     resize: vertical;
     min-height: 120px;
 }
 .form-input:focus, .form-textarea:focus {
     border-color: rgba(80, 99, 87, 0.4); /* primary/40 */
     background-color: var(--surface-container-lowest);
 }
 .form-input::placeholder, .form-textarea::placeholder {
     color: #9ca3af; /* generic subtle placeholder */
 }
 .form-submit {
     width: 100%;
     padding: 1rem 2.5rem;
     font-size: 1rem;
 }
 @media (min-width: 768px) {
     .form-submit { width: auto; }
 }

 /* FAQ Section */
 .faq-header {
     text-align: center;
     margin-bottom: 4rem;
 }
 .faq-label {
     font-size: 0.875rem;
     font-weight: 600;
     color: var(--primary);
     text-transform: uppercase;
     letter-spacing: 0.2em;
     margin-bottom: 1rem;
     display: block;
 }
 .faq-title {
     font-size: clamp(2.25rem, 4vw, 3rem);
     font-weight: 700;
 }
 
 .faq-list {
     display: flex;
     flex-direction: column;
     gap: 1rem;
 }
 .faq-item {
     background-color: rgba(247, 240, 231, 0.4); /* tertiary-container/40 */
     border-radius: 0.75rem;
     overflow: hidden;
     transition: var(--transition-smooth);
 }
 .faq-question {
     width: 100%;
     padding: 1.5rem 2rem;
     display: flex;
     justify-content: space-between;
     align-items: center;
     background: transparent;
     border: none;
     cursor: pointer;
     text-align: left;
     font-family: var(--font-body);
 }
 .faq-question-text {
     font-size: 1.125rem;
     font-weight: 500;
     color: var(--on-tertiary-container);
     padding-right: 1.5rem;
 }
 .faq-icon {
     color: var(--on-tertiary-fixed-variant);
     transition: transform 0.3s ease, color 0.3s ease;
     flex-shrink: 0;
 }
 .faq-question:hover .faq-icon {
     color: var(--primary);
 }
 .faq-answer {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
 }
 .faq-answer-inner {
     padding: 0 2rem 1.5rem 2rem;
     color: var(--on-tertiary-fixed-variant);
     line-height: 1.7;
 }
 
 /* FAQ Active State */
 .faq-item.active .faq-icon {
     transform: rotate(45deg);
     color: var(--primary);
 }






/***************************/

/* Footer */
.footer {
    background-color: var(--bg-stone-100);
    padding: 3rem 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 768px) {
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
}
.footer-brand {
    font-family: var(--font-headline);
    font-size: 1.25rem;
    color: #064e3b;
    margin-bottom: 1.5rem;
    display: block;
}
.footer-desc {
    font-size: 0.875rem;
    letter-spacing: 0.025em;
    color: rgba(6, 78, 59, 0.6);
    line-height: 2;
}
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.footer-heading {
    font-weight: 700;
    color: #064e3b;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.footer-link {
    color: rgba(6, 78, 59, 0.6);
    font-size: 0.875rem;
    text-underline-offset: 4px;
}
.footer-link:hover {
    color: #064e3b;
    text-decoration: underline;
}
.footer-copy {
    margin-top: 2rem;
    color: rgba(6, 78, 59, 0.6);
    font-size: 0.875rem;
}
.h1 {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
}
.h2 {
    font-size: clamp(1.875rem, 4vw, 2.25rem);
}
/* ==========================================
   ANIMATION DELAY CLASSES (0s to 1.4s)
   ========================================== */
.delay-00s { animation-delay: 0s; }
.delay-01s { animation-delay: 0.1s; }
.delay-02s { animation-delay: 0.2s; }
.delay-03s { animation-delay: 0.3s; }
.delay-04s { animation-delay: 0.4s; }
.delay-05s { animation-delay: 0.5s; }
.delay-06s { animation-delay: 0.6s; }
.delay-07s { animation-delay: 0.7s; }
.delay-08s { animation-delay: 0.8s; }
.delay-09s { animation-delay: 0.9s; }
.delay-10s { animation-delay: 1.0s; }
.delay-11s { animation-delay: 1.1s; }
.delay-12s { animation-delay: 1.2s; }
.delay-13s { animation-delay: 1.3s; }
.delay-14s { animation-delay: 1.4s; }


.ml10 {
   margin-left:10px;
}

.mr10 {
   margin-right:10px;
}

.pt8r {
    padding-top: 8rem;
}

.side-pad {
    padding-left: 10px;
    padding-right: 10px;
}