:root {
    --bg-color: #FAFAF7;
    --text-color: #2F3E33;
    --primary-color: #55755E;
    --primary-hover: #435E4B;
    --accent-color: #D3E0D1;
    --white: #FFFFFF;
    --footer-bg: #1A261E;
    --footer-text: #E0E5D8;
    --font-body: 'Inter', sans-serif;
    --font-heading: 'Lora', serif;
    --space-xl: 6rem;
    --space-lg: 4rem;
    --space-md: 2rem;
    --space-sm: 1rem;
    --radius-md: 12px;
    --shadow-sm: 0 2px 10px rgba(47, 62, 51, 0.05);
    --shadow-md: 0 10px 30px rgba(47, 62, 51, 0.1);
    --shadow-lg: 0 20px 40px rgba(47, 62, 51, 0.12);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.8;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

h1, h2, h3 { font-family: var(--font-heading); font-weight: 500; color: var(--primary-color); }
h2 { font-size: 1.8rem; margin-top: 3rem; border-bottom: 2px solid var(--accent-color); padding-bottom: 0.5rem; }
p { margin-bottom: 1.25rem; }

.container { width: 100%; max-width: 1000px; margin: 0 auto; padding: 0 2rem; }
.container-wide { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* Navigation */
header { 
    background-color: var(--white); 
    box-shadow: var(--shadow-sm); 
    position: sticky; 
    top: 0; 
    z-index: 2000; 
    height: 110px;
    display: flex;
    align-items: center;
}

.nav-container { 
    width: 100%; 
    max-width: 1400px; 
    margin: 0 auto; 
    padding: 0 2rem; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.logo img { height: 85px; width: auto; transition: transform 0.3s ease; }
.logo:hover img { transform: scale(1.02); }

.nav-links { display: flex; list-style: none; gap: 3rem; align-items: center; }
.nav-link { 
    text-decoration: none; 
    color: var(--text-color); 
    font-weight: 500; 
    font-size: 1.1rem; 
    transition: color 0.3s; 
    display: flex; 
    align-items: center; 
    gap: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    padding: 10px 0;
}
.nav-link:hover, .nav-link.active { color: var(--primary-color); }

.nav-item { position: relative; }
.dropdown-menu { 
    position: absolute; 
    top: 100%; 
    left: 0; 
    background: var(--white); 
    box-shadow: var(--shadow-md); 
    border-radius: var(--radius-md); 
    min-width: 280px; 
    padding: 1rem 0; 
    display: none; 
    z-index: 3000;
    margin-top: 1rem;
}
.dropdown-menu.show { display: block; animation: fadeIn 0.3s ease-out; }

.dropdown-item a { 
    display: block; 
    padding: 0.75rem 1.5rem; 
    text-decoration: none; 
    color: var(--text-color); 
    transition: all 0.2s;
}
.dropdown-item a:hover { background: var(--bg-color); color: var(--primary-color); padding-left: 1.75rem; }

.menu-toggle { display: none; font-size: 2rem; background: none; border: none; color: var(--primary-color); cursor: pointer; }

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

/* Hero Sections for Subpages */
.hero-band {
    position: relative;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    overflow: hidden;
}
.hero-band::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%; 
    background: rgba(26, 35, 29, 0.6); 
    z-index: 1;
}
.hero-band .container { position: relative; z-index: 2; }
.hero-band h1 { font-size: clamp(2.5rem, 6vw, 3.5rem); color: white; margin-bottom: 0; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }

.hero-apie { background-image: url('../i/hero-forest.jpg'); }
.hero-12zingsniu { background-image: url('../i/hero-hills.jpg'); }
.hero-12tradiciju { background-image: url('../i/hero-forest.jpg'); }
.hero-12pazadu { background-image: url('../i/hero-lake.jpg'); }
.hero-pavyzdziai { background-image: url('../i/hero-lake.jpg'); }
.hero-teiginiai { background-image: url('../i/hero-hills.jpg'); }

/* Home Hero Setup */
.hero { 
    display: grid; 
    grid-template-columns: 1fr 1.1fr; 
    min-height: calc(100vh - 110px); 
    align-items: stretch; 
    background: #fdfdfc;
    overflow: hidden;
}
.hero-content { padding: 4rem 10% 4rem 4rem; display: flex; flex-direction: column; justify-content: center; }
.hero-content h1 { font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.1; margin-bottom: 2.5rem; color: var(--primary-color); }
.hero-content p { font-size: 1.35rem; opacity: 0.85; max-width: 650px; margin-bottom: 3.5rem; }

.hero-visual { 
    flex-grow: 1;
    position: relative;
    background: url('../i/hero-home.jpg') center/cover no-repeat;
    background-position: 30% center;
}
.hero-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #fdfdfc 0%, transparent 20%);
}

.hero-actions { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.btn-primary { 
    background-color: var(--primary-color); 
    color: white; 
    padding: 1rem 2.5rem; 
    border-radius: 50px; 
    text-decoration: none; 
    font-weight: 600; 
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(85, 117, 94, 0.3);
}
.btn-primary:hover { background-color: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(85, 117, 94, 0.4); }

.btn-secondary { 
    background-color: var(--accent-color); 
    color: var(--primary-color); 
    padding: 1rem 2.5rem; 
    border-radius: 50px; 
    text-decoration: none; 
    font-weight: 600; 
    transition: all 0.3s;
}
.btn-secondary:hover { background-color: #C3D5C0; transform: translateY(-2px); }

/* Home Page Content */
.home-main { padding: var(--space-xl) 0; flex-grow: 1; }
.home-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: start; }

@media (max-width: 992px) {
    header { height: 70px; }
    .nav-container { padding: 0 1.5rem; }
    .logo img { height: 45px; }
    
    .menu-toggle { display: block; }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        z-index: 1500;
        overflow-y: auto;
    }
    .nav-links.show { display: flex; }
    
    .nav-item { width: 100%; }
    .dropdown-menu { position: static; box-shadow: none; border: none; padding-left: 1.5rem; margin-top: 0.5rem; min-width: auto; width: 100%; }
    
    .hero { grid-template-columns: 1fr; text-align: center; min-height: auto; }
    .hero-content { padding: 4rem 1.5rem; align-items: center; }
    .hero-visual { height: 400px; width: 100%; }
    .hero-visual::after { background: linear-gradient(to bottom, #fdfdfc 0%, transparent 15%); }
    .home-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.feature-cards { display: grid; gap: var(--space-md); }
.card { 
    background: white; 
    padding: 3rem; 
    border-radius: var(--radius-md); 
    text-decoration: none; 
    color: inherit; 
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(85, 117, 94, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--primary-color); }
.card h3 { margin-bottom: 1rem; font-size: 1.6rem; }
.card iconify-icon { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 1.25rem; }

.signal-block { 
    background: var(--accent-color); 
    padding: 3rem; 
    border-radius: var(--radius-md); 
    text-align: center;
    position: sticky;
    top: 120px;
}
.signal-block h3 { margin-bottom: 1.5rem; }
.qr-wrapper { background: white; padding: 1.5rem; border-radius: var(--radius-md); display: inline-block; margin-bottom: 2rem; box-shadow: var(--shadow-sm); }
.qr-wrapper img { width: 180px; height: auto; display: block; }
.btn-signal { display: inline-flex; align-items: center; gap: 0.75rem; background: #3273DC; color: white; padding: 0.75rem 2rem; border-radius: 50px; text-decoration: none; font-weight: 600; transition: transform 0.2s; }
.btn-signal:hover { transform: scale(1.05); background: #2366d1; }

/* Footnotes / Lists in content */
.steps-list { list-style: none; padding: 0; margin: 2rem 0; counter-reset: step-counter; }
.steps-list li { 
    background: white; margin-bottom: 1rem; padding: 1.25rem 1.5rem; border-radius: var(--radius-md); 
    box-shadow: var(--shadow-sm); border-left: 4px solid var(--primary-color);
    display: flex; gap: 1.25rem; align-items: center;
}
.steps-list li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    background: var(--accent-color);
    color: var(--primary-color);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

/* Affirmations List */
ol.affirmations-list { list-style: none; counter-reset: aff-counter; display: grid; grid-template-columns: 1fr; gap: 0.75rem; padding-left: 0; }
ol.affirmations-list li {
    background-color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
ol.affirmations-list li::before {
    counter-increment: aff-counter;
    content: counter(aff-counter);
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--accent-color);
    font-size: 1.25rem;
    min-width: 2rem;
    text-align: right;
}

/* Tables (pavyzdziai) */
.table-responsive { overflow-x: auto; margin: 2rem 0 4rem; border-radius: 8px; box-shadow: var(--shadow-sm); border: 1px solid rgba(85, 117, 94, 0.1); }
table { width: 100%; border-collapse: collapse; background: white; font-size: 0.95rem; }
th, td { padding: 1.1rem; text-align: left; border-bottom: 1px solid rgba(85, 117, 94, 0.1); }
th { background-color: var(--primary-color); color: white; font-weight: 500; }
tr:nth-child(even) { background-color: rgba(211, 224, 209, 0.15); }

/* Footer */
footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 60px 0 40px;
    margin-top: auto;
}

.container-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-left {
    flex: 1;
    min-width: 250px;
}

.footer-right {
    flex: 1;
    min-width: 300px;
    text-align: right;
    color: rgba(255, 255, 255, 0.7);
}

.footer-right small {
    display: inline-block;
    max-width: 500px;
    line-height: 1.6;
    font-size: 0.85rem;
}

.footer-logo {
    height: 80px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

footer p {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
}

footer a {
    color: var(--white);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

@media (max-width: 992px) {
    .container-footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-right {
        text-align: center;
        margin-top: 30px;
    }
}

/* Utility Padding */
.py-xl { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }

/* Content Card */
.content-card {
    background: white;
    padding: 4rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(85, 117, 94, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

/* Subpage Layouts */
.content-section { margin-bottom: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-lg { margin-top: var(--space-lg); }
.mt-md { margin-top: var(--space-md); }
.mb-xl { margin-bottom: var(--space-xl); }

.lead-text { font-size: 1.2rem; opacity: 0.9; margin-bottom: 2rem; border-left: 3px solid var(--accent-color); padding-left: 1.5rem; }

/* Quote Styling */
.intro-quote { margin: 0 auto 4rem; max-width: 800px; text-align: center; }
.blockquote { font-size: 1.3rem; font-style: italic; line-height: 1.6; color: var(--primary-color); margin-bottom: 1.5rem; }
.blockquote p::before { content: '„'; }
.blockquote p::after { content: '“'; }
.blockquote-footer { font-size: 1rem; color: var(--text-color); opacity: 0.7; }

/* Traits & Lists */
.styled-list { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1rem; margin: 2rem 0; }
.styled-list li { display: flex; align-items: flex-start; gap: 1rem; background: var(--white); padding: 1.25rem; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1px solid rgba(85, 117, 94, 0.05); }
.styled-list iconify-icon { font-size: 1.4rem; color: var(--primary-color); flex-shrink: 0; }

.simple-list { list-style: none; padding-left: 0; }
.simple-list li { position: relative; padding-left: 1.75rem; margin-bottom: 0.75rem; }
.simple-list li::before { content: '•'; position: absolute; left: 0; color: var(--primary-color); font-weight: bold; }

/* FAQ */
.faq-list { display: grid; gap: 2rem; margin-top: 2rem; }
.faq-item { background: transparent; border-bottom: 1px solid var(--accent-color); padding-bottom: 1.5rem; }
.faq-item h4 { color: var(--primary-color); font-size: 1.15rem; margin-bottom: 0.75rem; font-family: var(--font-body); font-weight: 600; }

/* Meeting Details */
.meeting-details { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; margin-top: 3rem; }
.meeting-part h3 { font-size: 1.25rem; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem; border-bottom: none; }
.meeting-part h3 iconify-icon { color: var(--primary-color); }

/* Safety Box */
.safety-box { border-left: 5px solid var(--primary-color); }
.text-muted { opacity: 0.6; }
.small-italic { font-size: 0.9rem; font-style: italic; }


.bg-white { background-color: var(--white); }
.p-lg { padding: 3rem; }
.radius-md { border-radius: var(--radius-md); }
.shadow-sm { box-shadow: var(--shadow-sm); }
.border-left-primary { border-left: 5px solid var(--primary-color); }

@media (max-width: 768px) {
    .p-lg { padding: 1.5rem; }
    .hero-band { padding: 80px 0; }
    .lead-text { font-size: 1.1rem; }
}

/* Meeting Banner */
.meeting-banner {
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
}

.meeting-banner .container {
    max-width: 1000px;
}

.meeting-banner .banner-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--primary-color);
}

.meeting-banner iconify-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.meeting-banner p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--text-main);
}

.meeting-banner strong {
    font-weight: 600;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .meeting-banner .banner-inner {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
}
