
/* ===== Global Styles ===== */
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background: url('img/absurdity.png') repeat;
  background-size: 300px 300px;
  color: #fff;
}

body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  z-index: -1;
}

/* ===== Header ===== */
header {
  background-color: #202020;
  color: #fff;
  padding: 1rem;
  text-align: center;
}

nav a {
  color: #fff;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

/* ===== Logo ===== */
#logo {
  width: 150px;
  height: auto;
  max-width: 100%;
  margin-top: 10px;
}

/* ===== Banner Image Under Header ===== */
.banner-image {
  width: 100%;
  height: 300px; /* Change height as needed */
  overflow: hidden;
}

.banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== Sections ===== */
.section {
  padding: 2rem;
  text-align: center;
}

/* ===== Hero Section ===== */
.hero {
  color: #fff;
  padding: 100px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.25rem;
}

/* ===== Buttons ===== */
.shop-button {
  background-color: #bb0004;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1.2rem;
  cursor: pointer;
  text-decoration: none;
}

/* ===== Footer ===== */
footer {
  background-color: #202020;
  color: #ccc;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}
