/* General Typography and Body */
body {
  margin: 0;
  background-color: #111;
  color: #eee;
  font-family: 'UnifrakturCook', cursive;
}

a {
  color: #eee;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 8px;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

/* Header */
header {
  background-color: #000;
  padding: 20px;
  text-align: center;
  border-bottom: 2px solid #fff;
}

header h1 {
  margin: 0;
  font-size: 3rem;
}

header nav ul {
  display: flex;
  gap: 20px;
  justify-content: center;
  list-style: none;
  padding: 10px 0;
  margin: 0;
}

header nav li a {
  font-size: 1.2rem;
}

/* Hero Section */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
  background-color: #000;
}

.hero img {
  max-width: 200px;
  border: 2px solid #fff;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.3s;
}

.hero img:hover {
  transform: scale(1.05);
}

.hero-text {
  max-width: 500px;
  text-align: center;
}

/* Shop Section */
.shop {
  padding: 40px 20px;
}

.shop h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.shop-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  justify-items: center;
}

.item-card {
  background-color: #222;
  padding: 20px;
  border: 2px solid #444;
  border-radius: 8px;
  text-align: center;
  transition: background 0.3s;
}

.item-card:hover {
  background-color: #333;
}

.item-card img {
  max-width: 200px;
  border: 2px solid #fff;
  border-radius: 4px;
  margin-top: 10px;
  cursor: pointer;
  transition: transform 0.3s;
}

.item-card img:hover {
  transform: scale(1.05);
}

.item-card h3,
.item-card p {
  font-family: Arial, sans-serif;
}

/* About Section */
.about {
  padding: 40px 20px;
  background-color: #000;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  text-align: center;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about p {
  max-width: 800px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
}

/* Coming Soon Placeholder */
.coming-soon {
  font-family: Arial, sans-serif;
  font-size: 1.2rem;
  text-align: center;
  color: #ccc;
}

/* Lightbox */
.lightbox {
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border: 2px solid #fff;
  border-radius: 4px;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #000;
  border-top: 2px solid #fff;
}
