:root {
  --bg: #0b0e12;
  --text: #e9edf3;
  --muted: #a8b2bf;
  --primary: #e252a3; /* rožinis akcentas iš logotipo */
  --accent: #4da3ff;  /* mėlynas akcentas iš logotipo */
  --surface: #141922;
  --card: #1b2130;
  --border: #283043;
}

/* Bazė */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
h1, h2, h3 { font-family: "Playfair Display", Georgia, serif; margin: 0 0 12px; }
h1 { font-size: 56px; letter-spacing: -0.5px; }
h2 { font-size: 32px; }
h3 { font-size: 22px; }
p { margin: 0 0 18px; color: var(--muted); }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11,14,18,0.7);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text); }
.logo { width: 72px; height: 72px; object-fit: contain; filter: drop-shadow(0 0 10px rgba(226,82,163,0.65)); }
.logo.small { width: 36px; height: 36px; filter: drop-shadow(0 0 6px rgba(226,82,163,0.6)); }
.brand-name { font-weight: 700; letter-spacing: 0.3px; }

/* Navigacija */
.site-nav { position: relative; }
.nav-toggle {
  display: none;
  width: 42px; height: 42px; border: 1px solid var(--border);
  background: transparent; border-radius: 8px; cursor: pointer;
}
.nav-line { display: block; height: 2px; background: var(--text); margin: 7px 8px; }
.nav-list { display: flex; gap: 24px; list-style: none; margin: 0; padding: 0; }
.nav-list a { color: var(--text); text-decoration: none; padding: 8px 12px; border-radius: 8px; }
.nav-list a:hover { background: rgba(77,163,255,0.12); color: #d7e9ff; }

/* Hero */
.hero {
  position: relative;
  min-height: 68vh;
  display: grid; place-items: center;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  transition: background-image 0s linear;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(1200px 500px at 30% 30%, rgba(77,163,255,0.18), transparent),
              radial-gradient(800px 400px at 70% 60%, rgba(226,82,163,0.18), transparent);
}
.hero-content { position: relative; text-align: center; z-index: 2; padding: 60px 0; }
.hero p { font-size: 18px; color: #c8d0da; }

/* Fade perėjimas */
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1s ease-in-out;
  z-index: 1;
}
.hero.fade::after { opacity: 1; }

/* Mygtukai */
.btn { display: inline-block; padding: 12px 18px; border-radius: 10px; text-decoration: none; font-weight: 600; }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--accent)); color: white; }
.btn-primary:hover { filter: brightness(1.06); }
.btn-outline { border: 1px solid var(--border); color: var(--text); margin-left: 10px; }
.btn-outline:hover { border-color: var(--accent); color: #d7e9ff; }

/* Sekcijos */
.section { padding: 70px 0; border-top: 1px solid var(--border); }
.section-intro { max-width: 720px; }

/* Galerija */
.section-gallery .gallery-grid {
  margin-top: 24px;
  display: grid; gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}
.gallery-item {
  width: 100%; height: 220px; object-fit: cover; border-radius: 12px;
  border: 1px solid var(--border); cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative; overflow: hidden;
}
.gallery-item:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(226,82,163,0.25), rgba(77,163,255,0.25));
  opacity: 0; transition: opacity 0.3s ease;
}
.gallery-item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.8);
  display: none; align-items: center; justify-content: center; z-index: 1000;
}
.lightbox[aria-hidden="false"] { display: flex; }
.lightbox-image {
  max-width: 90vw; max-height: 85vh; border-radius: 12px;
  border: 1px solid var(--border); box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px; border-radius: 8px;
  border: 1px solid var(--border); background: var(--card);
  color: var(--text); font-size: 26px; cursor: pointer;
}
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 42px; color: white; background: rgba(0,0,0,0.35);
  border: 1px solid var(--border); cursor: pointer;
  padding: 10px 14px; border-radius: 10px; user-select: none;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(0,0,0,0.6); }

/* Kainos */
.section-pricing .pricing-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
}
.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
}
.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 12px 28px rgba(77,163,255,0.18);
}
.price { font-size: 28px; font-weight: 700; color: #d7e9ff; }
.features { list-style: none; padding: 0; margin: 12px 0 0; }
.features li { margin: 6px 0; }

/* Apie mus */
.about-grid {
  display: grid; gap: 24px;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
}
.about-highlights { list-style: none; padding: 0; }
.about-highlights li { margin-bottom: 10px; }
.about-image-wrap { display: flex; }
.about-image {
  width: 100%; border-radius: 12px; border: 1px solid var(--border);
  object-fit: cover; height: 100%;
}

/* Kontaktai */
.contact-grid { margin-top: 24px; }
.contact-details .contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 16px; margin-bottom: 16px;
}
.social-links { display: flex; gap: 14px; margin-top: 12px; }
.social-links img {
  width: 28px; height: 28px; filter: brightness(0) invert(1);
  transition: transform 0.3s ease; display: inline-block;
}
.social-links img:hover { transform: scale(1.15); filter: drop-shadow(0 0 6px var(--primary)); }

/* Footer */
.site-footer { border-top: 1px solid var(--border); padding: 26px 0; }
.footer-inner {
  display: grid; gap: 16px;
  grid-template-columns: 1fr auto 1fr; align-items: center;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-nav { display: flex; gap: 16px; justify-content: center; }
.footer-copy { text-align: right; color: var(--muted); }

/* Responsyvumas */
@media (max-width: 980px) {
  .section-gallery .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .section-pricing .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  h1 { font-size: 36px; }
  .hero { min-height: 60vh; }
  .nav-toggle { display: inline-block; }
  .nav-list {
    position: absolute; top: 60px; right: 0; width: 220px;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 12px; padding: 10px; display: none; flex-direction: column;
  }
  .nav-list.show { display: flex; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-copy { text-align: center; }
}