/* --- NAGŁÓWEK --- */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  padding: 0px 30px;
  font-family: 'Georgia', serif;
  color: #fff;
  z-index: 1000;
}

#main-header.scrolled {
  background-color: #1a1a1a;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
}

.logo a {
  text-decoration: none;
  box-shadow: none;
  border-bottom: none;
}
.logo img {
  max-height: 100px;
  transition: transform 0.3s ease;
}


/* --- DESKTOP MENU --- */
.main-menu {
  display: flex;
}

.main-menu .menu {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.main-menu .menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
  position: relative;
  transition: color 0.3s ease;
}

.main-menu .menu li a:hover,
.main-menu .menu li a.active {
  color: #d4a14c;
}

.main-menu .menu li a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #d4a14c;
}

/* --- SOCIALS --- */
.header-socials {
  display: flex;
  gap: 20px;
}

.header-socials a {
  color: #fff;
  font-size: 24px;
  transition: color 0.3s ease;
}

.header-socials a:hover {
  color: #d4a14c;
}

/* --- BURGER --- */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 25px;
  cursor: pointer;
}

.burger span {
  height: 3px;
  background: #fff;
  width: 100%;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* --- MOBILE MENU (wysuwane) --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 40%;
  height: 100vh;
  background-color: #111;
  padding: 30px 20px;
  transition: left 0.4s ease;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.mobile-menu.active {
  left: 0;
}

/* Zamknięcie */
.mobile-menu-header {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.close-icon {
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-icon:hover {
  color: #d4a14c;
}

/* Linki */
.mobile-menu-links {
  list-style: none;
  margin-top: 40px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.mobile-menu-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  transition: color 0.3s ease;
}

.mobile-menu-links li a:hover {
  color: #d4a14c;
}

/* Socialki w menu */
.mobile-menu-socials {
  margin-top: auto;
  display: flex;
  gap: 20px;
  font-size: 24px;
}

.mobile-menu-socials a {
  color: #fff;
  transition: color 0.3s ease;
}

.mobile-menu-socials a:hover {
  color: #d4a14c;
}

/* --- RESPONSYWNOŚĆ --- */
@media (max-width: 900px) {
  .main-menu,
  .header-socials {
    display: none;
  }

  .burger {
    display: flex;
  }
}
