/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base */
body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(to bottom, #000, #1a1a1a);
  color: #fff;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Hero Section */
.hero {
  background: url('https://images.unsplash.com/photo-1503424886309-4b7e06e1e849?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
  padding: 100px 20px;
  position: relative;
  color: #fff;
}
.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.hero * {
  position: relative;
  z-index: 1;
}
.tagline {
  font-style: italic;
  font-size: 1.1rem;
  color: #f4d03f;
}
.title {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  margin-top: 10px;
}
.title span {
  color: #d4af37;
}

/* Photo Section */
.photo-section {
  position: relative;
  margin: 40px auto;
  max-width: 320px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}
.photo-section img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.9);
}
.photo-caption {
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px 10px;
}
.photo-caption h2 {
  color: #f1c40f;
  font-family: "Cinzel", serif;
  font-size: 1.4rem;
}
.photo-caption p {
  font-style: italic;
  color: #fff;
  font-size: 0.9rem;
  margin-top: 5px;
}

/* Main Content */
main {
  flex-grow: 1;
  padding: 40px 20px;
}
section {
  margin-bottom: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}
h3 {
  color: #f1c40f;
  margin-bottom: 10px;
  font-family: "Cinzel", serif;
}
ul {
  list-style: none;
  line-height: 1.8;
  font-size: 1rem;
}
p {
  margin: 10px 0;
  font-size: 1rem;
}

/* Footer */
footer {
  padding: 15px;
  background: #111;
  font-size: 0.9rem;
  color: #f4d03f;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

/* Responsive */
@media (max-width: 600px) {
  .hero {
    padding: 70px 10px;
  }
  .title {
    font-size: 1.6rem;
  }
  .photo-section {
    max-width: 90%;
  }
  section {
    padding: 15px;
  }
}
