/* src/styles.scss */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family:
    Arial,
    Helvetica,
    sans-serif;
  background: #f5f5f5;
  color: #111;
}
.topbar {
  background: #111;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
}
.logo {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 2px;
}
nav a {
  color: white;
  text-decoration: none;
  margin-left: 30px;
  font-size: 16px;
  transition: 0.3s;
}
nav a:hover {
  color: #ff3c00;
}
.hero {
  height: 80vh;
  background: url(https://images.unsplash.com/photo-1517649763962-0c623066013b?auto=format&fit=crop&w=1600&q=80) center center/cover no-repeat;
  position: relative;
}
.overlay {
  background: rgba(0, 0, 0, 0.55);
  height: 100%;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 80px;
}
.overlay h1 {
  font-size: 58px;
  margin-bottom: 20px;
}
.overlay p {
  font-size: 22px;
  margin-bottom: 30px;
}
.overlay button {
  width: 220px;
  padding: 15px;
  border: none;
  background: #ff3c00;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}
.overlay button:hover {
  background: #d93300;
}
.products {
  padding: 80px 60px;
  background: white;
}
.products h2 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 50px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}
.card:hover {
  transform: translateY(-8px);
}
.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.card h3 {
  padding: 15px;
  font-size: 22px;
}
.card p {
  padding: 0 15px 20px;
  color: #ff3c00;
  font-size: 18px;
  font-weight: bold;
}
.about {
  padding: 80px 60px;
  text-align: center;
  background: #111;
  color: white;
}
.about h2 {
  font-size: 38px;
  margin-bottom: 20px;
}
.about p {
  font-size: 20px;
  max-width: 800px;
  margin: auto;
}
footer {
  background: #000;
  color: white;
  text-align: center;
  padding: 25px;
}
@media (max-width: 1100px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .overlay h1 {
    font-size: 42px;
  }
}
@media (max-width: 768px) {
  .topbar {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
  nav a {
    margin: 0 10px;
  }
  .overlay {
    padding: 30px;
    text-align: center;
    align-items: center;
  }
  .overlay h1 {
    font-size: 34px;
  }
  .overlay p {
    font-size: 18px;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .products,
  .about {
    padding: 50px 20px;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
