/* RESET + PODSTAWY */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  caret-color: transparent;
  user-select: none;
  outline: none;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: #ffffff;
}

/* === MENU GÓRNE === */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  z-index: 1000;
}

.nav {
  width: 100%;
  max-width: 1100px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

.nav a {
  text-decoration: none;
  font-weight: 600;
  color: #111111;
  letter-spacing: 0.2px;
  transition: opacity 0.2s ease, transform 0.15s ease;
}

.nav a:hover {
  opacity: 0.65;
  transform: translateY(-1px);
}

.nav-links {
  display: flex;
  gap: 32px;
}

/* === LOGO W MENU === */
.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mini {
  height: 26px;
  width: auto;
  display: block;
}

/* === UKŁAD STRONY === */
body {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 20px;
  padding-top: 100px;
}

.logo-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
}

/* === RWD === */
@media (max-width: 600px) {
  .nav {
    padding: 0 16px;
  }

  .nav-links {
    gap: 20px;
  }
}
/* === SEKCJA POD LOGO === */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.contact-box {
  text-align: center;
}

.contact-text {
  margin: 0;
  font-size: 15px;
  letter-spacing: 0.3px;
  color: #666;
}

.contact-mail {
  display: inline-block;
  margin-top: 6px;
  font-size: 18px;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.15s ease;
}

.contact-mail:hover {
  opacity: 0.6;
  transform: translateY(-1px);
}
