/* 320px (iPhone) */
@media screen and (max-width:320px) {
}
/* 480px (WVGA - Low End Windows Phone) */
@media screen and (max-width:480px) {
	.wrapper { background: #f3f5f8; height: 340px; }
	.iphone { display: none; }
	.fluid-white { display: none; }
	.wp2, .wp4, .wp5, .light-box { margin-bottom: 30px; }
	.legals { text-align: center; margin: 0; padding: 0; }
	.credit { text-align: center; }
}
/* xGA iPad */
@media screen and (max-width:1024px) {
	.wp3 { background-position: 50px 0; }
	.swag { background-attachment: scroll; }
	.subscribe { background-attachment: scroll; }
}
/* 1200px (Small Desktop, Netbook) */
@media screen and (max-width:1280px) {
	.wp3 { background-position: 50px 0; }
}
/* Bootstrap 990px Breakpoint to 480px */
@media screen and (min-width:480px) and (max-width:991px) {
	.iphone { display: none; }
	.fluid-white { display: none; }
	.wrapper { background: #f3f5f8; height: 340px; }
	.wp2, .wp4, .wp5, .light-box { margin-bottom: 30px; }
	.legals { text-align: center; margin: 0; padding: 0; }
	.credit { text-align: center; }
}

@media (max-width: 768px) {
  .main-menu {
    display: none !important;
  }

  .navicon {
    display: block !important;
  }

  .pull {
    display: none;   /* ← změna */
  }
}

@media (max-width: 768px) {
  .hero-title {
    transform: translateX(-20px); /* menší posun na mobilu */
  }
}


/* ===== HAMBURGER ===== */

.navicon {
  display: none;
  width: 30px;
  height: 25px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
}

.navicon span,
.navicon span:before,
.navicon span:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background: #ffffff;
  left: 0;
  transition: all 0.3s ease;
}

.navicon span {
  top: 50%;
  transform: translateY(-50%);
}

.navicon span:before {
  top: -8px;
}

.navicon span:after {
  top: 8px;
}

/* zobrazit jen na mobilu */
@media (max-width: 768px) {
  .navicon {
    display: block;
  }
}

