: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;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
  margin: 0;
  padding: 0;
  color: var(--text-light);
}
/* 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 */
}

.about-container {
  max-width: 900px;
  margin: auto;
  padding: 40px 20px;
}

.intro {
  text-align: center;
  margin-bottom: 40px;
}

.intro h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
}

.intro p {
  font-size: 1.1rem;
  color: var(--secondary-color);
}

.card {
  background: var(--white);
  padding: 25px;
  margin-bottom: 30px;
  border-left: 6px solid var(--hover);
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  border-radius: 6px;
}

.card h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
}

.card h2 i {
  margin-right: 10px;
  color: var(--hover);
}

.card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--secondary-color);
}

.card a {
  color: var(--hover);
  text-decoration: none;
}

.card a:hover {
  text-decoration: underline;
}
