:root {
  --primary-color: #141414;
  --primary-color-light: #1f2125;
  --primary-color-extra-light: #35373b;
  --secondary-color: #535353;
  --secondary-color-dark: #2d2e2d;
  --text-light: #333;
  --hover: #f4b400;
  --white: #ffffff;
  --max-width: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

 body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
  color: #333;
}

.header {
  background: #000;
  color: white;
  padding: 1.5rem;
  text-align: center;
}

/* Shop Page */
#page-header {
  position: relative;
  width: 100%;
  height: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 14px;
  overflow: hidden;
  text-align: center;
  margin-top: 2%;
  margin-bottom: -4%;
  background-size: cover;
  background-position: center;
  margin-bottom: 5%;
}

#page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 background-image: url("../images/banners/homepageBanner.png");
  background-size: inherit;
  background-position: inherit;
  filter: blur(3.5px); /* Increase blur intensity if needed */
  z-index: -1; /* Ensure the pseudo-element is behind the text */
}

.logo {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
}

.cards-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 4rem 2rem;
}

.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  text-align: center;
  max-width: 320px;
  flex: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.icon {
  font-size: 3rem;
  color: var(--hover);
  margin-bottom: 1rem;
}

.card h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-block;
  background: var(--hover);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}


.btn:hover {
  background: var(--secondary-color);
}

.footer {
  text-align: center;
  padding: 1rem;
  background: #000;
  color: white;
}
