:root {
    --brand: #2f6d3a;          /* forest green */
    --brand-dark: #1f4a26;
    --accent: #e8a93c;         /* warm amber */
    --sand: #f4ecd8;
    --ink: #1d2a23;
}
body {
    font-family: "Cabin", system-ui, sans-serif;
    color: var(--ink);
    background-color: #fbf9f3;
}
h1, h2, h3, h4, h5 {
    font-family: "Bebas Neue", "Cabin", sans-serif;
    letter-spacing: 0.04em;
}
.navbar {
    background-color: #fff !important;
    border-bottom: 3px solid var(--accent);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.navbar-brand img { height: 64px; }
.nav-phone {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.6rem;
    color: var(--brand-dark) !important;
    letter-spacing: 0.06em;
}
.nav-phone:hover { color: var(--accent) !important; }

.hero {
    background: linear-gradient(rgba(20, 35, 25, 0.55), rgba(20, 35, 25, 0.7)),
                url("https://images.unsplash.com/photo-1526188717906-2dac7d56eaef?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
    color: #fff;
    padding: 9rem 0;
    text-align: center;
    position: relative;
}
.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.hero .tagline {
    font-family: "Permanent Marker", cursive;
    color: var(--accent);
    font-size: clamp(1.3rem, 3vw, 2rem);
    transform: rotate(-2deg);
    display: inline-block;
    margin-bottom: 1rem;
}
.hero .lead {
    font-size: 1.25rem;
    max-width: 640px;
    margin: 0 auto 2rem;
}

.page-header {
    background: linear-gradient(rgba(20, 35, 25, 0.7), rgba(31, 74, 38, 0.85));
    color: #fff;
    padding: 5rem 0 4rem;
    text-align: center;
}
.page-header h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    margin-bottom: 0.5rem;
}
.page-header .breadcrumb-nav {
    font-family: "Permanent Marker", cursive;
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.page-header .breadcrumb-nav a {
    color: var(--accent);
    text-decoration: none;
}
.page-header .breadcrumb-nav a:hover { color: #fff; }

.btn-brand {
    background-color: var(--accent);
    border: none;
    color: var(--ink);
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.1em;
    padding: 0.8rem 2rem;
    font-size: 1.2rem;
    border-radius: 0;
    box-shadow: 0 4px 0 var(--brand-dark);
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}
.btn-brand:hover {
    background-color: #f1b94a;
    color: var(--ink);
    transform: translateY(2px);
    box-shadow: 0 2px 0 var(--brand-dark);
}
.btn-outline-light {
    border-radius: 0;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.1em;
    padding: 0.8rem 2rem;
    font-size: 1.2rem;
    border-width: 2px;
}

.section { padding: 6rem 0; }
.section h2 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    color: var(--brand-dark);
    margin-bottom: 0.5rem;
}
.section h3 {
    font-size: 1.6rem;
    color: var(--brand-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.section-eyebrow {
    font-family: "Permanent Marker", cursive;
    color: var(--accent);
    display: inline-block;
    margin-bottom: 0.5rem;
    transform: rotate(-1deg);
}

.prose p { line-height: 1.75; margin-bottom: 1.2rem; }
.prose ul { line-height: 1.8; }
.prose a { color: var(--brand); font-weight: 600; }
.prose a:hover { color: var(--brand-dark); }

.related-card {
    display: block;
    padding: 2rem;
    background-color: #fff;
    border: 1px solid rgba(31, 74, 38, 0.12);
    border-left: 4px solid var(--accent);
    text-decoration: none;
    color: var(--ink);
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(31, 74, 38, 0.12);
    color: var(--ink);
}
.related-card h3 {
    font-family: "Bebas Neue", sans-serif;
    color: var(--brand-dark);
    font-size: 1.4rem;
    margin: 0 0 0.5rem;
}
.related-card p { margin: 0; color: var(--ink); opacity: 0.8; font-size: 0.95rem; }

#apie { background-color: var(--sand); }

#galerija { padding: 0; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}
.gallery-grid a {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}
.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
}
.gallery-grid a:hover img {
    transform: scale(1.06);
    filter: brightness(1.05);
}
@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: 1fr; }
}

.price-card {
    background-color: #fff;
    border: 1px solid rgba(31, 74, 38, 0.12);
    border-radius: 2px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(31, 74, 38, 0.12);
}
.price-card .plan-eyebrow {
    font-family: "Permanent Marker", cursive;
    color: var(--accent);
    font-size: 1rem;
    display: inline-block;
    transform: rotate(-2deg);
    margin-bottom: 0.4rem;
}
.price-card .plan-name {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.06em;
    color: var(--brand-dark);
    margin-bottom: 1.2rem;
}
.price-card .price {
    font-family: "Bebas Neue", sans-serif;
    font-size: 4rem;
    color: var(--brand);
    line-height: 1;
    margin-bottom: 0.2rem;
    display: block;
}
.price-card .price-unit {
    font-family: "Cabin", sans-serif;
    color: var(--ink);
    opacity: 0.55;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 1.8rem;
}
.price-card .divider {
    width: 40px;
    height: 2px;
    background-color: var(--accent);
    margin: 0 auto 1.5rem;
}
.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.8rem;
    text-align: left;
}
.price-features li {
    padding: 0.6rem 0;
    border-bottom: 1px dashed rgba(31, 74, 38, 0.18);
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}
.price-features li:last-child { border-bottom: none; }
.price-features li i {
    color: var(--brand);
    margin-right: 0.7rem;
    font-size: 1rem;
}
.price-card .btn-brand { width: 100%; }

.price-card.featured {
    border-color: var(--accent);
    border-width: 2px;
    box-shadow: 0 22px 50px rgba(31, 74, 38, 0.18);
}

.badge-featured {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent);
    color: var(--ink);
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.12em;
    padding: 0.35rem 1rem;
    font-size: 0.85rem;
    border-radius: 0;
}

#kontaktai { background-color: var(--sand); }
#kontaktai ul i { color: var(--brand); }

footer {
    background-color: var(--ink);
    color: #cfd6cf;
    padding: 2.5rem 0;
    border-top: 3px solid var(--accent);
    text-align: center;
}
footer a { color: var(--accent); text-decoration: none; }
footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}
footer .footer-links li { display: inline-block; margin: 0 0.8rem; }
