* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Livvic", Arial, sans-serif;
  background: #fff;
}

/* Header */
.header {
  background: #fff;
  padding: 15px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, #fff 50%, #800080 50%);
}

.navbar {
  width: 100%;
}

.logo img {
  height: 50px;
}

.navbar-nav .nav-link {
  color: #222 !important;
  font-size: 18px;
  font-weight: 500;
  padding: 0.5rem 1rem;
}

.navbar-nav .nav-link:hover {
  color: #800080 !important;
}

.contact-cart {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact {
  color: #fff;
  background: #800080;
  padding: 8px 15px;
  border-radius: 0 0 0 20px;
  font-size: 16px;
  white-space: nowrap;
}

.contact i {
  margin-right: 8px;
}

.korzina {
  color: #fff;
  background: #800080;
  padding: 8px 15px;
  border-radius: 0 20px 0 0;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.korzina .price {
  font-weight: bold;
}

/* Hero section */
.hero {
  padding: 40px 20px;
  padding-bottom: 50px;
  background: linear-gradient(90deg, #fff 50%, #800080 50%);
  min-height: 500px;
}

.hero-left {
  padding-right: 20px;
}

.hero-left h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-left p {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}

.cards {
  display: flex;
  gap: 20px;
}

.card.pitsa,
.card.kombo {
  max-width: 200px;
}

.card.pitsa img,
.card.kombo img {
  width: 100%;
  height: auto;
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-right img {
  max-width: 100%;
  height: auto;
}

.pitsa-section .card {
  border: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  height: 100%;
}

.pitsa-section .card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}

.menu-nav span {
  font-weight: 500;
  cursor: pointer;
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  transition: background-color 0.15s ease-in-out;
}

.menu-nav span:hover {
  background-color: #f8f9fa;
}

.menu-nav .btn {
  font-weight: 500;
}

/* Promo section */
.app-promo {
  background: #8e24aa;
  color: #fff;
  margin-top: 100px;
}

.app-promo h2 {
  font-size: 2.2rem;
  font-weight: bold;
}

.app-promo .btn {
  font-size: 1.1rem;
  border-radius: 30px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
}

.app-promo .btn:hover {
  background: #fff;
  color: #8e24aa;
}

/* Footer */
.footer {
  background: #fff;
  color: #222;
  border-top: 1px solid #eee;
}

.footer h6 {
  font-weight: bold;
}

.footer a {
  color: #222;
  transition: color 0.2s;
}

.footer a:hover {
  color: #8e24aa;
}

.footer .small {
  font-size: 0.95rem;
}

.footer .fab {
  font-size: 1.3rem;
}

/*Responsive Design */
@media (max-width: 991.98px) {
  .header {
    background-size: 30%;
    background-position: top right;
    background: #fff;
  }

  .hero {
    background: #fff;
    padding: 30px 15px;
  }

  .hero-left h1 {
    font-size: 2.5rem;
    text-align: center;
  }

  .hero-left p {
    text-align: center;
    font-size: 16px;
  }

  .cards {
    justify-content: center;
    flex-wrap: wrap;
  }

  .contact-cart {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 15px;
  }

  .contact,
  .korzina {
    border-radius: 10px;
    text-align: center;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .hero-left h1 {
    font-size: 2rem;
  }

  .logo img {
    height: 40px;
  }

  .contact,
  .korzina {
    font-size: 14px;
    padding: 6px 12px;
  }

  .app-promo h2 {
    font-size: 1.8rem;
  }

  .pitsa-section .card {
    padding: 15px !important;
  }

  .pitsa-section .card img {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 575.98px) {
  .hero-left h1 {
    font-size: 1.75rem;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }

  .card.pitsa,
  .card.kombo {
    max-width: 150px;
  }

  .app-promo h2 {
    font-size: 1.5rem;
  }
}

.navbar-toggler {
  border: 1px solid #800080;
  padding: 4px 8px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(128, 0, 128, 0.25);
}

.navbar-toggler-icon {
  background-image: url("/img/hamburger-menu-icon-png-transparent-png-removebg-preview.png");
}

.min-vh-75 {
  min-height: 75vh;
}
