/* CSS Document */
:root {
  --bg-color: #ddaa43;
  --text-color: #333333;
  --header-text: #ffffff;
  --accent-color: #4a6fa5;
  
  --title-font: 'Libre Baskerville', serif;
  --subtitle-font: 'Source Sans 3', sans-serif;
  --body-font: 'Space Mono', monospace;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--body-font);
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.6;
}

/* Header Styles */
.site-header {
  background-image: url('../images/316615.jpg');
  background-size: cover;
  background-position: center;
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.header-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  color: var(--header-text);
}

.site-header h1 {
  font-family: var(--title-font);
  font-size: 3rem;
  margin: 0 0 1rem 0;
  font-weight: 700;
}

.header-text {
  max-width: 800px;
  margin: 0 auto;
}

.subtitle {
  font-family: var(--subtitle-font);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.header-description {
  font-family: var(--subtitle-font);
  font-size: 1.1rem;
  margin: 0;
}

/* Gallery Styles */
.gallery-container {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.gallery-section {
  background: white;
  padding: 2rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.gallery-section h2 {
  font-family: var(--title-font);
  color: var(--accent-color);
  margin-top: 0;
  font-size: 1.8rem;
}

.sticker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.sticker-grid img {
  width: 100%;
  height: auto;
  border: 1px solid #eee;
  transition: transform 0.3s ease;
}

.sticker-grid img:hover {
  transform: scale(1.05);
}

/* Footer Styles */
.site-footer {
  background-color: var(--accent-color);
  color: white;
  text-align: center;
  padding: 1.5rem;
  font-family: var(--subtitle-font);
  margin-top: 3rem;
}

/* Responsive Design */
@media (min-width: 768px) {
  .gallery-container {
      grid-template-columns: repeat(3, 1fr);
  }
  
  .site-header h1 {
      font-size: 4rem;
  }
  
  .subtitle {
      font-size: 1.8rem;
  }
}