/* background and base */
body {
  background: linear-gradient(to bottom right, #252525, #3b3b3b);
  color: #f4f4f4;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* center layout (jello style) */
#page-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

#allcontent {
  width: 85%;
  max-width: 1100px;
  min-width: 700px;
  background-color: #1d1d1d;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.2);
  padding: 40px;
}

/* header navigation */
header {
  text-align: center;
  border-bottom: 2px solid #444;
  padding-bottom: 20px;
}

h1 {
  color: gold;
  font-size: 2.5em;
  margin-bottom: 10px;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #ccc;
  font-weight: bold;
}
nav a:hover { color: gold; }

/* hero banner */
.hero {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 10px;
  margin-top: 30px;
}
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}
.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero .overlay h2 {
  color: gold;
  font-size: 2em;
  text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

/* side-by-side text + image sections */
.brand-story, .craftsmanship {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 50px 0;
  gap: 40px;
}
.brand-story .text, .craftsmanship .text { flex: 1; }
.brand-story .image, .craftsmanship .image { flex: 1; }
.brand-story img, .craftsmanship img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
  object-fit: cover;
}

/* text colors */
h2 { color: gold; margin-bottom: 15px; }
p  { line-height: 1.6; color: #e0e0e0; }

/* value boxes (3 in a row) */
.values { text-align: center; margin-top: 60px; }
.values-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}
.value {
  flex: 1;
  min-width: 250px;
  background-color: #2a2a2a;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.15);
  transition: transform 0.3s ease;
}
.value:hover { transform: scale(1.05); }
.value img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
}
.value h3 { color: gold; margin-bottom: 10px; }

/* quote at bottom */
.quote {
  text-align: center;
  margin: 60px 0 20px;
  font-style: italic;
  font-size: 1.3em;
  color: #f8e58c;
}

/* footer */
footer {
  text-align: center;
  border-top: 2px solid #444;
  padding-top: 20px;
  margin-top: 40px;
  color: #bbb;
}