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

/* BASE STYLES */
html, body {
  height: 100%;
  font-family: 'Georgia', serif;
  color: white;
  overflow-x: hidden;
}

/* HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  background: url('background.jpg') center center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.458) 50%, rgba(255, 255, 255, 0.859) 100%);
  z-index: 0;
}

.content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

/* TEXT */
.quote {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.verse {
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #e2e2e2;
  margin-bottom: 2rem;
}

/* BUTTONS */
.buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

button {
  background: linear-gradient(135deg, #6b543f, #c6a87b1b);
  border: solid 2px rgba(255, 217, 0, 0.384);
  color: white;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.8rem 1.6rem;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 120px;
}

button:hover {
  background: linear-gradient(135deg, #7e6049, #d3b68a);
  transform: translateY(-2px);
}

/* RESPONSIVENESS */
@media (max-width: 768px) {
  .content {
    padding: 1rem;
  }

  .quote {
    font-size: clamp(1.3rem, 5vw, 2rem);
  }

  button {
    padding: 0.7rem 1.3rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 1.5rem;
  }

  .quote {
    font-size: 1.4rem;
  }

  .verse {
    font-size: 1rem;
  }

  button {
    width: 100%;
    max-width: 250px;
  }
}
