/* ========== Base Styles ========== */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  line-height: 1.5;
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 6px 10px rgba(130, 130, 130, 0.5);
  background-color: white;
  z-index: 1000;
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: "Oswald", sans-serif;
  font-size: 24px;
  font-weight: 600;
}

.menu a {
  text-decoration: none;
  color: black;
  font-weight: 500;
  margin: 0 15px;
  font-size: 18px;
}

.menu a:hover {
  color: orange;
}

/* ========== Hero Section ========== */
#home {
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url(img/pk[ojihugj.jpg) center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  font-size: 48px;
  font-family: "Oswald", sans-serif;
  padding: 0 20px;
}

#home span {
  color: orange;
}

/* ========== Menu Section ========== */
#menu {
  text-align: center;
  font-size: 48px;
  font-family: "Oswald", sans-serif;
  margin: 80px 0 40px;
}

#menu span {
  color: orange;
}

/* Pizza Cards */
.pizza-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 0 20px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.pizza-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 6px 10px rgba(0,0,0,0.3);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s;
}

.pizza-card:hover {
  transform: translateY(-8px);
}

.pizza-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.pizza-card h3 {
  font-size: 28px;
  font-family: "Oswald", sans-serif;
  margin: 20px 0 10px;
}

.pizza-card p {
  font-size: 18px;
  color: #555;
  margin-bottom: 20px;
  padding: 0 15px;
}

/* ========== Footer ========== */
footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 30px 20px;
}

footer a {
  color: orange;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
  }
  .menu {
    margin-top: 10px;
  }
  .menu a {
    display: block;
    margin: 10px 0;
  }
  #home {
    font-size: 32px;
  }
  #menu {
    font-size: 36px;
  }
  .pizza-card h3 {
    font-size: 22px;
  }
  .pizza-card p {
    font-size: 16px;
  }
}

/* ========== Team Section ========== */
#team {
  text-align: center;
  margin: 80px 20px;
}

#team h2 {
  font-size: 48px;
  font-family: "Oswald", sans-serif;
  margin-bottom: 40px;
}

#team h2 span {
  color: orange;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 6px 10px rgba(0,0,0,0.2);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s;
}

.team-card:hover {
  transform: translateY(-8px);
}

.team-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.team-card h3 {
  font-size: 24px;
  font-family: "Oswald", sans-serif;
  margin: 10px 0;
}

.team-card .role {
  color: orange;
  font-weight: bold;
  margin-bottom: 10px;
}

.team-card p {
  font-size: 16px;
  color: #444;
}
