/* Bazë */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #fff8f0;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 20px 0;
}

/* Header */
header {
  background-color: #fff;
  border-bottom: 2px solid #ffe0cc;
  padding: 20px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 100px;
    filter: brightness(1.3) contrast(1.1); /* 1.0 është default, 1.3 është më ndritshme */
}

.contact {
  margin: 20px 0;
  font-family: Arial, sans-serif;
}

.contact a {
  display: inline-flex;
  align-items: center;
  color: rgb(0, 0, 0);
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  cursor: pointer;
}


/* Optional: ikona telefonit më e madhe */
.contact a::before {
  content: "📞";
  font-size: 1.3rem;
  margin-right: 5px;
}

/* Stil për linkun e Fresh Pizza (Google Maps) */
.location-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 1.1rem;
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.2s ease;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.location-link::before {
  content: "📍";
  font-size: 1.3rem;
}

/* Menu Buttons */
.menu-options {
  text-align: center;
  margin: 30px 0;
}

.menu-btn {
  background-color: #fb7a7a;
  color: #fff;
  border: none;
  padding: 12px 24px;
  margin: 10px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.menu-btn:hover,
.menu-btn.active {
  background-color: #cc0000;
}

/* Menu Sections */
.menu-section {
  margin-bottom: 50px;
  animation: fadeIn 0.5s ease-in-out;
}

.menu-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
  color: #333;
}

/* Table */
.responsive-table {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

thead {
  background-color: #ffe0cc;
}

th, td {
  padding: 16px;
  text-align: center;
  font-size: 1rem;
  border-bottom: 1px solid #eee;
}

th {
  color: #333;
}

tbody tr:hover {
  background-color: #fff3e6;
}

.promo {
  margin-top: 10px;
  font-weight: bold;
  color: #d84315;
  text-align: center;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.card {
  background-color: #fff;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-weight: 500;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  background-color: #fff3e6;
}

/* Footer */
footer {
  background-color: #fff;
  text-align: center;
  padding: 20px;
  border-top: 2px solid #ffe0cc;
  font-size: 0.9rem;
  color: #777;
}

/* Hidden */
.hidden {
  display: none;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    text-align: center;
  }

  .menu-btn {
    width: 80%;
    margin: 10px auto;
    font-size: 1.1rem;
  }

  table {
    font-size: 0.9rem;
  }

  th, td {
    padding: 12px;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .menu-btn {
    width: 100%;
  }

  .logo {
    height: 150px;
  }
}
.pizza-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.pizza-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.pizza-card:hover {
  transform: translateY(-5px);
  background-color: #fff5eb;
}

.pizza-card h3 {
  font-size: 1.3rem;
  color: #d84315;
  margin-bottom: 10px;
  text-align: center;
}

.pizza-card ul {
  list-style: none;
  padding-left: 0;
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
  text-align: center;
}
.ingredients {
  font-size: 12px;
  text-align: center;
  color: #555;
  font-style: italic;
  margin-bottom: 10px;
}

#backToTop {
  position: fixed;
  bottom: 40px;
  right: 30px;
  background-color: var(--beige, #f5dcdc);
  color: black;
  padding: 12px;
  border-radius: 30%;
  font-size: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  text-decoration: none;
  z-index: 1000;
}
