/* Base styles */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  height: 100%;
  color: #222;
}

/* Hero section */
.hero {
  background: linear-gradient(to bottom right, #fff8e1, #fdf6e3);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.overlay {
  padding: 2rem;
}

/* Title & slogan */
h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #d4af37; /* gold */
  margin: 0;
}

.flame {
  margin-right: 0.3em;
}

h2 {
  font-size: 1.5rem;
  color: #c5b358;
  font-weight: 500;
  margin-top: 0.5rem;
}

p {
  font-size: 1.1rem;
  color: #444;
  margin: 1.5rem 0;
}

/* Button */
.button {
  background-color: #d4af37;
  color: #000;
  font-weight: bold;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.button:hover {
  background-color: #bfa134;
}