.elementor-881 .elementor-element.elementor-element-dc3b2c3{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-881 .elementor-element.elementor-element-edd5a93{--display:flex;}/* Start custom CSS for html, class: .elementor-element-887c09c */@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Sora', sans-serif;
}

.kreativ-header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 40px;
}

.burger {
  display: none;
  cursor: pointer;
  z-index: 1001;
}

.burger svg rect {
  fill: #9C27B0;
  transition: 0.3s;
}

/* Slide-in Nav */
.nav-links {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  width: 250px;
  background: #fff;
  box-shadow: -2px 0 6px rgba(0, 0, 0, 0.1);
  transition: right 0.4s ease-in-out;
  padding-top: 100px;
}

.nav-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 0 2rem;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  color: #333;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #9C27B0;
}

.nav-links.show {
  right: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .burger {
    display: block;
  }

  .nav-links ul {
    align-items: flex-start;
  }
}

@media (min-width: 769px) {
  .nav-links {
    position: static;
    height: auto;
    width: auto;
    background: none;
    box-shadow: none;
    display: flex;
    padding: 0;
  }

  .nav-links ul {
    flex-direction: row;
    gap: 2rem;
  }

  .burger {
    display: none;
  }
}/* End custom CSS */