/* Plik: styles.css */

/* Reset i podstawowe style */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
#header {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

#logo {
  width: 160px;
  height: 60px;
  background: url('../img/logo.svg') no-repeat center center / contain;
}

.menu {
  list-style: none;
  display: flex;
  gap: 20px;
}

.menu li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.menu li a:hover {
  color: #0078D4;
}

/* Teaser */
.teaser {
  padding: 80px 0;
  text-align: center;
  background: #f0f4f8;
}

.teaser .title {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.teaser .line {
  color: #0078D4;
  font-weight: bold;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  background: #0078D4;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
}

.button:hover {
  background: #005a9e;
}

/* Oferta */
.offer {
  padding: 60px 0;
}

.columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.columns .left {
  flex: 1 1 40%;
}

.columns .right {
  flex: 1 1 55%;
}

/* Partnerzy */
.clients {
  background: #f9f9f9;
  padding: 60px 0;
  text-align: center;
}

.clients .name {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.client-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
  list-style: none;
  padding: 0;
}

.client-logos li {
  flex: 0 1 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logos img {
  max-height: 60px;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.3s;
}

.client-logos img:hover {
  opacity: 1;
}

/* Kontakt */
.tv {
  background: #e5f0ff;
  padding: 60px 0;
  text-align: center;
}

.contact-wrapper {
  padding: 60px 0;
  background: #fff;
}

.contact-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.map {
  flex: 1 1 55%;
  border-radius: 12px;
  overflow: hidden;
}

.form-container {
  flex: 1 1 40%;
}

form input,
form textarea,
form button {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

form button {
  background: #0078D4;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

form button:hover {
  background: #005a9e;
}

/* Footer */
#footer {
  background: #222;
  color: #fff;
  padding: 40px 20px;
  font-size: 14px;
}

#footer .columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

#footer .name {
  font-weight: bold;
  margin-bottom: 10px;
}

#footer .social a {
  display: inline-block;
  margin-right: 10px;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.7;
  transition: opacity 0.3s;
}

#footer .social a:hover {
  opacity: 1;
}

#footer .facebook { background-image: url('../img/facebook.svg'); }
#footer .linkedin { background-image: url('../img/linkedin.svg'); }
#footer .twitter  { background-image: url('../img/twitter.svg'); }

.copy {
  text-align: center;
  margin-top: 30px;
  color: #aaa;
}
