body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #fff8f2;
  color: #333;
}

header {
  background: linear-gradient(90deg, #f5cda2, #f9d9b6, #ffe9cc);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.logo {
  width: 120px;
}

.slogan {
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 5px;
  color: #444;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 5px;
  transition: background 0.3s;
}

nav a:hover {
  background-color: #f0b77d;
  color: #fff;
}

main {
  padding: 20px;
  max-width: 1000px;
  margin: auto;
}

.intro h1 {
  color: #bb5e00;
  font-size: 2em;
  margin-bottom: 10px;
}

.intro p {
  line-height: 1.6;
  margin-bottom: 15px;
}

.gallery-preview {
  margin-top: 40px;
}

.gallery-preview h2 {
  color: #bb5e00;
  font-size: 1.5em;
  margin-bottom: 20px;
}

.artwork {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  overflow: hidden;
}

.artwork img {
  max-width: 100%;
  width: 300px;
  object-fit: cover;
}

.art-info {
  padding: 15px;
  flex: 1;
}

.art-info h3 {
  margin-top: 0;
  color: #663300;
}

.price {
  font-size: 1.2em;
  font-weight: bold;
  color: #cc3300;
}

.description {
  margin-top: 10px;
  font-size: 0.95em;
}

footer {
  text-align: center;
  padding: 20px;
  background: #ffe9cc;
  font-size: 0.9em;
  color: #444;
}
