/* Reset */
* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
}

body {
  font-family: 'Georgia', serif;
  background-color: #111;
  color: #eee;
  line-height: 1.6;
}

header {
  position: relative;
  background: url('images/anvil.jpg') center/cover no-repeat;
  height: 115vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 115%;
  height: 115%;
  background-color: rgba(0, 0, 0, 0.5); /* dark overlay */
  z-index: 1;
}

/* Basic CSS template */
header .logo {
  position: relative;
  z-index: 2;
  max-width: 80%;
  height: 20%;
  margin-bottom: 40px;

  background-color: rgba(25, 25, 25, 0.85); /* semi-transparent dark grey */
  padding: 20px;
  border-radius: 10px;

  box-shadow: 
    0 0 15px rgba(255, 90, 0, 0.8),
    0 0 30px rgba(255, 140, 0, 0.4);
}

header h1,
header p {
  position: relative;
  z-index: 2;
  text-align: center;
}
h2{
  margin-top: 40px}
h2 + p{
    margin-top: 20px}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0,0,0,0.8);
  padding: 10px 20px;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

nav a {
  color: #f4e2d8;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #ff914d;
}

section {
  padding: 60px 25px;
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 40px;
  text-align: center;
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.product {
  background: #222;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 
    0 0 15px rgba(255, 90, 0, 0.8),
    0 0 30px rgba(255, 140, 0, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

.product:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 0 20px rgba(255, 90, 0, 1), 
    0 0 40px rgba(255, 140, 0, 0.6);
}

.product img {
  max-width: 100%;
  border-radius: 8px;
}

footer {
  text-align: center;
  padding: 20px;
  background: #000;
  color: #aaa;
  font-size: 0.9rem;
}

