/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

/* BODY */
body {
  font-family: Arial, Helvetica, sans-serif;
  color: white;

  min-height: 100vh;

  background:
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.75)),
    url("tlo.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 40px;
}

/* KONTENER */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* KARTA */
.card {
  display: flex;
  gap: 60px;
  align-items: center;

  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);

  border-radius: 30px;
  padding: 50px;
}

/* ZDJĘCIE */
.photo img {
  width: 340px;
  display: block;

  border-radius: 24px;
  object-fit: cover;

  box-shadow:
    0 0 30px rgba(0,0,0,0.5);
}

/* TREŚĆ */
.content {
  flex: 1;
}

.content h1 {
  font-size: 54px;
  color: #d4af37;

  margin-bottom: 30px;
  letter-spacing: 3px;

  text-shadow:
    0 0 10px rgba(212,175,55,0.25);
}

.content p {
  font-size: 18px;
  line-height: 1.8;

  color: rgba(255,255,255,0.88);

  margin-bottom: 18px;
}

/* PRZYCISKI */
.buttons {
  display: flex;
  gap: 20px;

  margin-top: 35px;
}

.buttons a {
  text-decoration: none;

  color: #d4af37;

  border: 1px solid rgba(212,175,55,0.45);
  border-radius: 999px;

  padding: 14px 28px;

  background: rgba(0,0,0,0.25);

  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.buttons a:hover {
  background: rgba(212,175,55,0.08);
  border-color: #d4af37;

  transform: translateY(-2px);

  box-shadow:
    0 0 14px rgba(212,175,55,0.18);
}

/* FOOTER */
.footer {
  width: 100%;

  text-align: center;

  margin-top: 30px;
  padding: 0 16px;

  font-size: 13px;
  letter-spacing: 2px;

  color: rgba(255,255,255,0.45);
}

/* MOBILE */
@media (max-width: 900px) {
  body {
    padding: 24px;
  }

  .card {
    flex-direction: column;
    text-align: center;

    gap: 34px;
    padding: 34px 24px;
  }

  .photo img {
    width: 100%;
    max-width: 340px;
  }

  .content h1 {
    font-size: 40px;
  }

  .content p {
    font-size: 16px;
  }

  .buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
}