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

body {
  font-family: 'Arial', sans-serif;
  background-color: #f4f4f4;
}

/* Menu */
.menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f8f8f8;
  padding: 10px 20px;
  position: relative;
  z-index: 1000;
}

.menu img.logo {
  height: 50px;
}

.menu-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.menu a {
  text-decoration: none;
  color: black;
  font-size: 16px;
  position: relative;
  transition: 0.3s;
}

.menu a:hover,
.menu a.active {
  color: #991922;
  font-weight: bold;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #f8f8f8;
  min-width: 180px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  flex-direction: column;
  z-index: 2000;
}

.dropdown-content a {
  padding: 10px 15px;
  display: block;
  color: black;
}

.dropdown-content a:hover {
  background-color: #c22028;
  color: white;
}

.dropdown:hover .dropdown-content {
  display: flex;
}

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

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: #000;
}

@media (max-width: 768px) {
  .menu-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #f8f8f8;
    position: absolute;
    top: 60px;
    left: 0;
    padding: 10px 0;
  }

  .menu-links.show {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    display: none !important;
    background-color: #e0e0e0; /* lekkie szare tło */
  }

  .dropdown.open .dropdown-content {
    display: flex !important;
    flex-direction: column;
    background-color: #e0e0e0; /* lekkie szare tło */
  }
}
@media (max-width: 480px) {
  .header {
    height: 250px;
  }

  .header h1 {
    font-size: 20px;
  }

  .hamburger {
    margin-left: auto;
  }
}
