
body {
  margin: 0;
  font-family: 'Georgia', serif;
  background: #f6f1ec;
  color: #3e2f2a;
  line-height: 1.7;
}

.hero {
  position: relative;
  width: 100%;
  height: 70vh;
  background: url('great_fire_of_rome.png') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-text {
  z-index: 2;
  color: #fff8f0;
  text-align: center;
  max-width: 80%;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.hero-text h1 {
  font-size: 4rem;
  margin: 0;
}

.subtitle {
  font-size: 1.5rem;
  font-style: italic;
  margin-top: 0.5rem;
  color: #ffe4c4;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
}

main {
  padding: 2rem 5%;
  max-width: 800px;
  margin: auto;
}

.intro {
  margin-bottom: 3rem;
}

.intro blockquote {
  border-left: 4px solid #a0522d;
  padding-left: 1rem;
  margin: 1rem 0;
  font-style: italic;
  color: #6e4a3a;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.art-tile {
  background: #e6d3c4;
  border-radius: 8px;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: italic;
  color: #5a3e36;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #f0e0d2;
  color: #5a3e36;
  font-size: 0.9rem;
}

/* Responsive Typography for Smaller Screens */
@media screen and (max-width: 768px) {
  .hero {
    min-height: 70vh;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .subtitle {
    font-size: 1rem;
  }
}
