  header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 3px 40px;
      position: sticky;
      top: 0;
      background: white;
      z-index: 100;
      border-bottom: 1px solid #abababab;
      gap: 5px;
    }
	
	
	.nav-right
	{
		padding-right: 70px;
	}
	
	.nav-center
	{
		display: flex;
		align-items: center;
	}
	
	.nav-left
	{
		padding-left: 70px;
		 display: flex;
  align-items: center;
  gap: 18px;
	}
	
	.nav-phone {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 15px;
}
	
	
	
	.nav-icon {
  width: 27px;
  height: 27px;
  display: flex;
}

.nav-icon svg {
	fill: var(--main-color);
  width: 100%;
  height: 100%;
  
  transition: 0.3s;
}

.nav-icon:hover svg {
  fill: var(--text);
  
  transform: scale(1.2);
}
	
	
	.nav-socials {
  display: none;
 
}
	
	

.highlight
{
	color: #cf0159;
	font-weight: 600;
}

    .logo {
      font-size: 20px;
      font-weight: 600;
      color: var(--main-color);
      letter-spacing: 0.5px;
    }

    nav a {
      margin-left: 40px;
      text-decoration: none;
      color: var(--text);
      font-size: 17px;
      font-weight: 500;
      position: relative;
    }

    nav a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--main-color);
      transition: 0.3s;
    }

    nav a:hover::after {
      width: 100%;
    }
	
	
	
/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

	
	
	
	
	
	.hero {
      position: relative;
    }

    .hero-bg {
      width: 100%;
      height: auto;
      display: block;
    }

    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.45);
    }


.hero img
{
	box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}


    .hero-content {
      position: absolute;
      right: 150px;
      top: 50%;
      transform: translateY(-50%);
      color: white;
      max-width: 500px;
      z-index: 2;
      text-align: center;
	  border-radius: 25px;
	padding: 20px;
	background: rgba(0, 0, 0, 0.6);
}
    


    .hero p {
      font-size: 16px;
      line-height: 1.6;
      color: rgba(255,255,255,0.85);
	  margin-top: 15px;
    }
	
	
	

/* MOBILE */
@media (max-width: 900px) {

  header {
    padding: 2px 20px;
  }

  .nav-left {
    padding-left: 0px;
	
  }
  
  .inst,
  .tiktok
  {
	  display: none;
  }
  
.nav-socials {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 10px;
}

  .nav-right {
    display: none;
  }

  .nav-center {
    justify-content: center;
    width: 100%;
  }

 nav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: white;
  flex-direction: column;
  align-items: center;

  display: flex; /* ważne */
  flex-direction: column;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  pointer-events: none;

  transition: 0.2s ease;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

nav.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

  nav a {
    margin: 15px 0;
    font-size: 18px;
  }

  .hamburger {
    display: flex;
  }



 /* HERO */
  .hero-content {
  display: none;
  }

  .hero h1 {
    font-size: 32px;
  }
  
  
  .hero::after {
     display: none;
    }
	
	
	
.hero-content-mob
{
	display: block !important;
    color: #000;
    text-align: center;
    border-radius: 25px;
    padding: 20px;
    
}

.hero-content-mob p
{
	    color: #000;

	
}
	
	
.hero-content-mob h1
{	
	margin-bottom: 15px;
	font-size: 25px;
}


}