body {
  margin: 0;
  font-family: 'Playfair Display', serif;
  background-color: #0c1c15;
  background-image: url('images/scrollwork-bg.png');
  background-repeat: repeat;
  background-size: cover;
  color: #f6f6f6;
  text-align: center;
  overflow-x: hidden;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
}

.logo {
  font-size: 2em;
  font-weight: bold;
  letter-spacing: 2px;
}

nav a {
  color: #fff;
  margin: 0 15px;
  text-decoration: none;
  font-size: 1.1em;
  transition: color 0.3s;
}

nav a:hover {
  color: #dcdcdc;
}

.hero {
  margin-top: 8vh;
  font-size: 1.4em;
  font-style: italic;
  animation: fadeIn 1.5s ease-in;
}

.about, .contact, .products {
  margin-top: 8vh;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  font-size: 1.1em;
  animation: fadeIn 1.2s ease-in;
}

.btn {
  display: inline-block;
  margin: 20px 10px;
  padding: 10px 25px;
  border: 1px solid #f6f6f6;
  color: #f6f6f6;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background-color: #f6f6f6;
  color: #0c1c15;
}

.product-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.product-item {
  width: 280px;
  background: rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(255,255,255,0.1);
}

.product-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  animation: fadeInUp 1.5s ease-in;
}

input, textarea {
  width: 80%;
  margin: 10px 0;
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-family: inherit;
}

button.btn {
  cursor: pointer;
  background: transparent;
}

footer {
  margin-top: 10vh;
  padding: 30px 0;
  font-size: 0.9em;
  color: #ccc;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 2s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
