@font-face {
  font-family: 'Etica Mono';
  src: url('./fonts/EticaMono-Bold.woff2') format('woff2');
  font-weight: bold;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Etica Mono', monospace;	
  font-weight: bold;
  background-color: white;
  color: black;
  height: 100vh;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  border-bottom: 2px solid #000000;
}

.logo {
  font-weight: black;
  font-size: 1.4rem;
}

.nav-links a {
  margin-left: 30px;
  text-decoration: none;
  color: black;
  font-weight: bold;
  font-size: 1.1rem; /* zwiększony rozmiar */
  transition: font-weight 0.2s ease;
  transition: background 0.2s;
}

.nav-links a:hover {
  font-weight: 700; /* Bold na hover */
  background: black;
  color: white;
  cursor: pointer;
}

main {
  display: flex;
  padding: 60px 40px;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.image-section img {
  max-width: 100%; 
  height: auto;
  display: block;
}

.text-section {
  max-width: 600px;
  text-align: right;
  margin-top: 305px;
  margin-left: 200px;
}

.text-section h1 {
  font-weight: 700; 
  font-size: 2.2rem;  
  margin-bottom: 10px;
}

.text-section p {
  font-weight: 400; 
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 24px;
}


.button {
  display: inline-block;
  border: 1px solid black;
  padding: 6px 12px;
  font-weight: 600; /* SemiBold */
  font-size: 1.33rem;
  text-decoration: none;
  color: black;
  transition: background 0.2s;
  margin-top: -50px;
}

.button:hover {
  background: black;
  color: white;
}


