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

body {
  font-family: 'Montserrat', sans-serif;
}

/* Logo */
.logo-container {
  text-align: center;
  padding: 20px 0;
  background: white;
}

.logo img {
  height: 90px;
  width: auto;
}

/* Desktop: Menu + FB */
.menu-desktop-container {
  display: flex;
  justify-content: center;
  width: 100%;
  background: white;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.desktop-nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
  padding: 15px 0;
  margin: 0 auto;
  align-items: center;
  max-width: 1200px;
}

.desktop-nav a {
  color: #333;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.desktop-nav a:hover {
  color: #CB5A5C;
}

.fb-icon img {
  height: 24px;
  vertical-align: middle;
}

/* Mobile: Top bar z hamburgerem */
.top-bar {
  display: none;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  height: 90px;
  background: white;
  border-bottom: 1px solid #eee;
  position: relative;
}

.hamburger {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #333;
  position: absolute;
  right: 20px;
}

/* Mobile: Menu rozwijane */
.mobile-nav {
  background: white;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  font-family: 'Montserrat', sans-serif;
}

.mobile-nav.active {
  max-height: 500px;
}

.mobile-nav ul {
  list-style: none;
  text-align: center;
  padding: 0;
}

.mobile-nav li {
  padding: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-nav a {
  color: #333;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  display: block;
}

.mobile-nav .fb-icon {
  padding: 10px;
}

.mobile-nav .fb-icon img {
  height: 24px;
  vertical-align: middle;
}

/* Responsywność */
@media (max-width: 768px) {
  .menu-desktop-container {
    display: none;
  }
  
  .top-bar {
    display: flex;
  }
  
  .logo-container {
    display: block;
    padding: 0;
    text-align: center;
    margin: 0 auto;
  }
  
  .logo img {
    height: 70px;
  }
  
  /* Ukrywamy górne logo w mobile */
  header > .logo-container:first-child {
    display: none;
  }
}

@media (min-width: 769px) {
  .top-bar,
  .mobile-nav {
    display: none !important;
  }
  
  /* Pokazujemy górne logo w desktop */
  header > .logo-container:first-child {
    display: block;
  }
}