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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-image: url('ULOTKA2.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: #f9f6f6;
  line-height: 1.6;
  padding-top: 100px; /* wysokość nagłówka + margines */
}

header {
  background-color: #000000;
  color: white;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: fixed;     /* <<< PRZYKLEJONY */
  top: 0;              /* <<< DO GÓRY */
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2); /* cień pod spodem */
}

header .logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 80px;
  margin-right: 5px;
}

header .logo span {
  font-weight: normal;
  font-size: 16px;
  color: #f77a06;
}

nav a {
  color: rgb(244, 85, 6);
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #1581d4;
}

.hero {
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(16, 144, 125, 0.65), rgba(250, 109, 1, 0.65));
  color: rgb(240, 242, 242);
  text-align: center;
}

.hero .highlight {
  color: #f86306;
}

section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

.services, .contact, .about, .cennik {
  background-color: rgba(56, 143, 134, 0.55);
  margin: 20px auto;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.08);
}

h3 {
  color: #f05208;
  margin-bottom: 20px;
  font-size: 24px;
}

.services ul {
  list-style: disc;
  padding-left: 20px;
}

.contact a {
  color: #ef5a04;
  text-decoration: none;
}

.cennik a {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 15px;
  background: #0d1b3e;
  color: white;
  text-decoration: none;
  border-radius: 6px;
}

.map-container {
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

footer {
  background-color: #010101;
  color: rgb(249, 90, 4);
  text-align: center;
  padding: 20px;
  font-size: 12px;
}

/* Hamburger menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background: orange;
}

/* Responsywność menu */
@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    background: #000;
    position: absolute;
    top: 80px;
    right: 20px;
    padding: 20px;
    border-radius: 8px;
  }

  nav.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  nav a {
    display: block;
    width: 100%;
    margin: 5px 0;
  }

  .logo {
    margin-bottom: 10px;
  }
}

html {
  scroll-behavior: smooth;
}