.page {
  max-width: 90ch;
  margin: 0 auto;
  padding: 1rem;
}

.site-header {
  background-color: #fff;
  border-bottom: 1px solid #ddd; /* full-width line */
  width: 100%;
}

.nav {
  display: flex;
  gap: 1.25rem;
  padding: 1rem;
  /* REMOVED: max-width: 65ch; */
  /* REMOVED: margin: 0 auto; */
  width: 100%;
  justify-content: flex-start; /* Forces items to the left */
  align-items: center;
}

.nav a {
  font-family: system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  color: #000000;
  transition: transform 0.15s ease;
}

@media (hover: hover) {
  .nav a:hover {
    transform: scale(1.08);
  }
}

.site-footer {
  border-top: 1px solid #ddd;
  margin-top: 4rem;
  width: 100%;
  background-color: #fff4c3;
}

.footer-inner {
  max-width: 65ch;
  margin: 0 auto;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.875rem;
  color: #666;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
}

.footer-nav a {
  text-decoration: none;
  color: inherit;
  font-weight: 500;
}

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

.kontaktno-okno {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 12px;
  background-color: #d2d2d2;
  border: 1px solid #000000;
  max-width: 40ch;
  margin: 2rem auto 0;
}

.kontakt-text {
  text-align: center
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  align-items: center;
}

* {
  box-sizing: border-box;
}
/* --- Browse Promo Card --- */
.browse-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #2c3e50; /* Dark slate blue */
    color: white;
    padding: 3rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.browse-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.browse-card h2 {
    font-size: 2rem;
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.browse-card p {
    font-size: 1.1rem;
    margin: 0 0 1.5rem 0;
    opacity: 0.9;
    max-width: 600px;
}

.browse-btn {
    display: inline-block;
    background-color: #ffffff;
    color: #2c3e50;
    padding: 12px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.browse-btn:hover {
    background-color: #f0f0f0;
    color: #1a252f;
}

/* Mobile adjustment for the card */
@media (max-width: 600px) {
    .browse-card {
        padding: 2rem 1rem;
    }
    .browse-card h2 {
        font-size: 1.6rem;
    }
    .browse-card p {
        font-size: 1rem;
    }
}
/* --- Install Button Styling --- */
.install-btn {
    background-color: #FFD700; /* Vibrant Gold (Complementary to dark blue) */
    color: #2c3e50;            /* Dark text for contrast */
    border: 2px solid #e6c200; /* Slightly darker border for depth */
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
    display: inline-block;
    margin: 10px auto; /* Center it */
    text-align: center;
    height: 100px;
    width: 80%
}

/* Hover Effect */
.install-btn:hover {
    background-color: #ffea00; /* Brighter yellow on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    border-color: #ffd700;
}

/* Active/Click Effect */
.install-btn:active {
    transform: translateY(0);
    background-color: #e6c200;
}

/* Ensure it's hidden by default (JS will show it) */
.install-btn[style*="display: none"] {
    display: none;
}