:root {
  --paper: #f7efe0;
  --forest: #2e5b3a;
  --accent: #6a9a6a;
  --text: #222;
}

* {
  box-sizing: border-box
}

body {
  font-family: 'Times New Roman', system-ui, -apple-system, "Segoe UI", "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", serif;
  background: linear-gradient(180deg, #eaf4ea 0%, #f7efe0 100%);
  color: var(--text);
  margin: 0
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  background: transparent
}

.brand h1{
  font-family:"Cinzel Decorative", serif;
  font-size:2.4rem;
  letter-spacing:1px;
  color:#2e6b3a;
}

.brand .tag {
  font-family: 'Cinzel Decorative', serif;
  font-size:1.4rem;
  color: var(--accent);
  margin-top: 0.2rem
}

.main-nav a {
  margin-left: 1rem;
  color: var(--forest);
  text-decoration: none;
  font-weight: 600
}

.hero {
  background-image: radial-gradient(circle at 10% 10%, rgba(46, 91, 58, 0.06), transparent 30%), url('');
  padding: 2.4rem;
  border-bottom: 4px solid rgba(46, 91, 58, 0.08)
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center
}

.card {
  background: rgba(255, 255, 255, 0.9);
  margin: 1.2rem auto;
  padding: 1.2rem;
  border-radius: 10px;
  max-width: 900px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06)
}

.card h2 {
  font-family: 'Cinzel Decorative', serif;
  color: var(--forest);
  margin-top: 0
}

#wishlist-container .wish {
  padding: 0.6rem;
  border-bottom: 1px dashed #d7d7d7
}

#wishlist-container .wish:last-child {
  border-bottom: 0
}

#wishlist-container .wish h3 {
  margin: 0;
  color: var(--forest)
}

#upload-area {
  display: flex;
  gap: 0.6rem;
  align-items: center
}

#gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.6rem;
  margin-top: 1rem
}

#gallery img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 6px
}

.gallery-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem
}

.gallery-actions {
  display: flex;
  gap: 0.4rem;
  align-items: center
}

.btn {
  display: inline-block;
  padding: 0.35rem 0.6rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600
}

.btn-download {
  background: var(--forest);
  color: var(--paper)
}

.btn-view {
  background: transparent;
  border: 1px solid var(--forest);
  color: var(--forest)
}

.site-footer {
  text-align: center;
  padding: 1.2rem;
  color: #666
}

.hint {
  font-size: 0.9rem;
  color: #555
}

@media(min-width:800px) {
  .main-nav a {
    margin-left: 1.6rem
  }
}

/* small Celtic flourish */
.brand:after {
  content: ' ';
  margin-left: 0.5rem
}