:root {
  --green-dark: #0f3d3e;
  --green: #1f7a63;
  --yellow: #f4c430;
  --bg: #f5f7f6;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
  background: var(--bg);
  color: #222;
  line-height: 1.6;
}

.hero {
  background: linear-gradient(
    180deg,
    #a7d7d3 0%,
    #bfe3e6 35%,
    #d9eef2 65%,
    #f7fbfc 100%
  );
  text-align: center;
  padding: 64px 16px 56px;
}

.logo {
  width: 96px;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 2.5rem;
  color: var(--green-dark);
}

.hero p {
  font-size: 1.1rem;
  color: #444;
}

.intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 48px 16px;
  max-width: 1000px;
  margin: auto;
}

.intro img {
  width: 100%;
  border-radius: 16px;
}

.intro h2 {
  color: var(--green);
  margin-bottom: 12px;
}

.posts {
  max-width: 800px;
  margin: auto;
  padding: 32px 16px;
}

.posts h2 {
  margin-bottom: 24px;
  color: var(--green-dark);
}

.post {
  background: white;
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.post h3 {
  color: var(--green);
  margin-bottom: 4px;
}

.meta {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 8px;
}

footer {
  text-align: center;
  padding: 24px;
  font-size: 0.9rem;
  color: #666;
}
.content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 16px;
}

.content h2 {
  color: var(--green-dark);
  margin-bottom: 16px;
}

.content p {
  margin-bottom: 16px;
}

.content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.content li {
  margin-bottom: 8px;
}

.content.alt {
  background: #eef2f1;
  border-radius: 24px;
}
/* ===== Desktop intro layout ===== */

.intro-layout {
  max-width: 1400px;
  margin: 0 auto;
  padding: 64px 24px;
}

/* default = mobile */
.intro-left,
.intro-right {
  display: block;
}

.intro-center img {
  width: 100%;
  max-width: 420px;
  margin: 32px auto;
  display: block;
  border-radius: 24px;
}

/* desktop */
@media (min-width: 900px) {
  .intro-layout {
    display: grid;
    grid-template-columns: 1fr 420px 1fr;
    gap: 48px;
    align-items: start;
  }

  .intro-center img {
    margin: 0 auto;
    position: sticky;
    top: 120px;
  }
}
.intro-left,
.intro-right {
  margin-top: -32px;
}
.content {
  padding: 24px 16px;   /* bolo príliš veľké */
}

.content.alt {
  padding: 24px 20px;
}
@media (min-width: 900px) {
  .intro-layout {
    display: grid;
    grid-template-columns: 1fr 420px 1fr;
    gap: 48px;
    align-items: start;   /* dôležité */
  }

  .intro-left,
  .intro-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
}
.intro-center img {
  margin-top: 8px;
}
/* ===== FOOTER ===== */

.footer {
  background: linear-gradient(180deg, #ffffff, #eaf2ef);
  margin-top: 80px;
  padding: 48px 16px 32px;
}

.footer-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  width: 64px;
  margin-bottom: 16px;
}

.footer h2 {
  color: var(--green-dark);
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.footer-tagline {
  color: #555;
  font-size: 1rem;
  margin-bottom: 24px;
}

.footer-copy {
  font-size: 0.85rem;
  color: #888;
}
.footer {
  background: linear-gradient(
    180deg,
    #f7fbfc 0%,
    #d9eef2 35%,
    #bfe3e6 65%,
    #a7d7d3 100%
  );
  margin-top: 96px;
  padding: 64px 16px 40px;
}

.footer h2 {
  color: var(--green-dark);
  font-weight: 600;
}

.footer-tagline {
  color: #466;
}

.footer h2 {
  color: #0f3d3e;
}

.footer-tagline {
  color: #245f63;
}

.footer-copy {
  color: #3a6f73;
}

/* ===== STORE BUTTONS – BLACK STYLE ===== */

.store-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 32px 0 24px;
  flex-wrap: wrap;
}

.store-button {
  min-width: 120px;
  padding: 5px 20px;
  border-radius: 14px;
  text-align: center;
  cursor: default;
  user-select: none;

  background: linear-gradient(
    180deg,
    #1a1a1a,
    #000000
  );
  border: 1px solid rgba(255,255,255,0.15);

  box-shadow:
    0 8px 24px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.06);

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-button strong {
  display: block;
  font-size: 1.05rem;
  color: #ffffff;
  letter-spacing: 0.2px;
}

.store-button .small {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 4px;
  letter-spacing: 0.4px;
}

/* jemný hover – premium, nie CTA */
.store-button:hover {
  transform: translateY(-1px);
  box-shadow:
    0 12px 32px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.08);
}
