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

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    
}

/* Navigacija */
header {
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    color: white;
    padding: 1em 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Bendras header išdėstymas */
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

/* Logotipas kairėje */
.logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin: 0; /* Priklausomai nuo dizaino gali reikėti */
}

/* Navigation meniu */
nav ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}


nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

nav a:hover {
    text-decoration: underline;
}

/* Hero sekcija */
.hero {
    background-image: url('hero.jpg'); /* arba kita Jūsų nuotrauka */
    background-size: cover;
    background-position: center;
    height: 125vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 4em;
    position: relative;
}


.hero-overlay {
    background-color: rgba(0, 0, 0, 0);
    padding: 3em 2em;
    text-align: center;
    border-radius: 12px;
    max-width: 90%;
    color: white;
}

.hero-overlay h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
    font-weight: 700;
}

.hero-overlay p {
    font-size: 1.3em;
    font-weight: 400;
}

/* Responsyvumas (neprivaloma, bet naudinga) */
@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 2em;
    }

    .hero-overlay p {
        font-size: 1em;
    }

    nav ul {
        flex-direction: column;
        gap: 1em;
        text-align: right;
    }
}
.btn-modern {
    background: linear-gradient(to right, #5a7eca, #a657a8);
    color: white;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin-top: 1rem;
    
    /* Pašaliname šitas! */
    /* pointer-events: none; */
    /* opacity: 0.9; */
    /* cursor: not-allowed; */
}


.btn-modern:hover {
    transform: scale(1.05);
    opacity: 0.9;
}
.logo {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: rgb(250, 250, 250);
    text-decoration: none;
    gap: 0.5rem;
}

.logo-icon {
    height: 28px;
    width: auto;
}

.main-content {
    margin-top: 0px; /* Svarbu: nedėti papildomo tarpo viršuje */
}

.card {
  background-color: rgb(255, 255, 255);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  max-width: 800px;
  margin: 0 auto;
}

.card h1 {
  text-align: center;
  margin-bottom: 30px;
}

.card h2 {
  margin-top: 40px;
  color: #333;
}

.card ul {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}

.card ul li::before {
  content: "✔";
  color: #4CAF50;
  margin-right: 8px;
}

hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 10px 0 20px;
}
.about-hero-image {
    background-image: url('hero.jpg');
    background-size: cover;
    background-position: center;
    height: 250px;
    border-radius: 12px;
    margin: 0 auto 40px auto;
    max-width: 800px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.about-hero {
  background-image: url('hero.jpg');
  background-size: cover;
  background-position: center;
  height: 50vh; /* sumažintas aukštis */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}


.about-hero .hero-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 1.5em 1em;
  border-radius: 12px;
  max-width: 90%;
}

.about-hero h1 {
  font-size: 2.8em;
  margin-bottom: 0.4em;
  font-weight: 700;
}

.about-hero p {
  font-size: 1.2em;
  font-weight: 400;
}
.hero-small {
    background-image: url('images/hero-gallery.jpg'); /* arba kita foto */
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    color: white;
}

.gallery-section {
    margin-top: 120px;
    padding: 40px 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-card {
    background: white;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.gallery-card img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}

.gallery-card:hover {
    transform: scale(1.03);
}

.support-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.support-card {
    background: white;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.parama-banner {
    max-width: 100%;
    height: auto;
    margin-bottom: 30px;
    border-radius: 8px;
}

.support-card h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #222;
    text-align: center;
}

.support-card p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #444;
}
/* Mažesnis hero blokas */
.hero-small {
    background-image: url('images/hero.jpg'); /* arba kita fono nuotrauka */
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
}

.hero-small .hero-overlay {
    background-color: rgba(0, 0, 0, 0.45);
    padding: 2em;
    border-radius: 10px;
    color: #fff;
    text-align: center;
    max-width: 90%;
}

.hero-small h1 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
}

.hero-small p {
    font-size: 1.2em;
}

/* Kortelės stilius */
.support-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.support-card {
    background: white;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.support-card h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #222;
    text-align: center;
}

.support-card p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #444;
}

/* Apatinė juostelė su logotipu */
.finansuojama {
    padding: 20px 0;
    background-color: #fff;
    text-align: center;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 -1px 5px rgba(0,0,0,0.05);
}

.parama-logo {
    max-width: 90%;
    max-height: 80px;
    object-fit: contain;
    opacity: 0.9;
}
.hero-small {
    min-height: 200px; /* anksčiau galėjo būti 300px ar daugiau */
    background-image: url("esveliava.jpg");
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.info-card {
    max-width: 800px;  /* anksčiau galėjo būti 1000px */
    padding: 20px 30px;  /* mažiau padding’o */
    font-size: 0.95rem;  /* šiek tiek mažesnis tekstas */
    margin: 30px auto;
}
.footer-strip {
    padding: 10px 0;
    background: white;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-strip img {
    height: 40px;  /* vietoj pvz. 60px */
    object-fit: contain;
}
.hero-small .hero-overlay {
    background-color: rgba(0, 0, 0, 0.5); /* tamsus permatomas fonas */
    padding: 2em;
    border-radius: 10px;
    color: #fff;
    max-width: 90%;
}
/* ===== ES PARAMA ===== */

.es-support {
    padding: 80px 20px;
    background: #f4f6f8; /* švarus, profesionalus fonas */
}

.es-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    gap: 40px;
    align-items: center;
}

.es-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.es-text {
    background: #ffffff;
    padding: 40px 36px;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

.es-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1f2933;
}

.es-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 16px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .es-layout {
        grid-template-columns: 1fr;
    }

    .es-image {
        max-width: 600px;
        margin: 0 auto;
    }

    .es-text {
        text-align: center;
    }
}
.eu-section {
    background: #f5f7fa;
    padding: 80px 20px;
}

.eu-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: 40px;
    align-items: center;
}

/* NUOTRAUKOS */
.eu-image {
    aspect-ratio: 3 / 4;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    background: #ddd;
}

.eu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* TEKSTO KORTELĖ */
.eu-card {
    background: white;
    padding: 40px 36px;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.eu-card h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #1f2937;
}

.eu-card p {
    font-size: 15.5px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 16px;
}

.eu-note {
    font-size: 14px;
    color: #6b7280;
    border-left: 4px solid #2563eb;
    padding-left: 14px;
    margin-top: 24px;
}

/* MOBILUS */
@media (max-width: 900px) {
    .eu-layout {
        grid-template-columns: 1fr;
    }

    .eu-image {
        aspect-ratio: 16 / 10;
    }

    .eu-card {
        text-align: center;
    }

    .eu-note {
        border-left: none;
        border-top: 3px solid #2563eb;
        padding-left: 0;
        padding-top: 12px;
    }
}
.side-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}
.focus-stotele {
    object-position: 60% center;
}
/* ATSILIEPIMAI */
.reviews-section {
    padding: 140px 20px 180px; /* 👈 nuleidžia žemyn */
    background: #f3f4f6;
    display: flex;
    justify-content: center;
}

.reviews-card {
    background: #fff;
    max-width: 620px;
    width: 100%;
    padding: 48px 40px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.reviews-card h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.stars {
    color: #fbbf24;
    font-size: 22px;
    margin-bottom: 20px;
}

.reviews-card p {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.review-links {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.review-links span {
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    font-size: 14px;
    color: #374151;
    background: #f9fafb;
}

/* ===== MODERN NAVBAR (SAFE) ===== */
.site-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(
        to right,
        rgba(15, 23, 42, 0.96),
        rgba(30, 41, 59, 0.96)
    );
    backdrop-filter: blur(8px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}

.navbar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.navbar-menu {
    display: flex;
    gap: 28px;
}

.navbar-menu a {
    color: #cbd5f5;
    text-decoration: none;
    font-size: 15px;
    position: relative;
    transition: color 0.2s ease;
}

.navbar-menu a:hover {
    color: #fff;
}

.navbar-menu a.active {
    color: #fff;
}

.navbar-menu a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background: #3b82f6;
    border-radius: 2px;
}
/* ===== CONTACT PAGE ===== */

.contacts-page {
    max-width: 1200px;
    margin: 30px auto;
    padding-top: 100px;
}

.contacts-page h1 {
  text-align: center;
  font-size: 34px;
  font-weight: 600;
  margin-top: 40px;
}

.subtitle {
  text-align: center;
  color: #64748b;
  margin-bottom: 60px;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.contact-form button {
    background: #1e3a8a;
    color: #fff;
    padding: 12px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
}

.map-card iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

@media (max-width: 900px) {
    .contacts-grid {
        grid-template-columns: 1fr;
    }
}
.facebook-link {
    color: #1e3a8a;          /* dera su mygtuku */
    font-weight: 600;
    text-decoration: none;
}

.facebook-link:hover {
    text-decoration: underline;
}
.main-header {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  padding: 18px 0;
}

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

.logo {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

nav a {
  color: #cbd5e1;
  margin-left: 22px;
  text-decoration: none;
  font-size: 15px;
}

nav a.active,
nav a:hover {
  color: #fff;
  border-bottom: 2px solid #3b82f6;
  padding-bottom: 4px;
}
.contact-card p {
  line-height: 1.7;
  color: #334155;
}

.contact-card strong {
  color: #0f172a;
}
.contact-form input,
.contact-form textarea {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #3b82f6;
  background: #fff;
}
.contact-form button {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  font-weight: 600;
}
.map-card {
  margin-top: 60px;
  border-radius: 20px;
}
#cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #111827;
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
}

#cookie-banner p {
  margin: 0;
  font-size: 14px;
}

#cookie-banner button {
  background: #3b82f6;
  border: none;
  padding: 8px 16px;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}

#cookie-banner button:hover {
  background: #2563eb;
}
