/* Portfolio Hero Section */
header.hero-custom {
  background-image: url('images/Landscape.png');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: Garamond, serif;
  padding: 40px 20px;
  color: #fff;
}

/* Overlay box for message */
.coming-soon {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.45);
  padding: 30px;
  border-radius: 8px;
}

/* Title text */
.coming-soon h1 {
  font-size: 42px;
  font-variant: small-caps;
  margin-bottom: 15px;
}

/* Paragraph text */
.coming-soon p {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 25px;
}

/* Button back to home */
.btn-home {
  display: inline-block;
  padding: 12px 28px;
  background-color: #28a745;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.btn-home:hover {
  background-color: #218838;
}
