/* Ensure full height so background appears */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Georgia', serif;
  color: #4b2e1e;
}

/* Set background image */
body {
  background: url('Assets/bground.png') no-repeat center center fixed;
  background-size: cover;
}

/* Main container */
.container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 20px;
}

/* Header styling */
header h1 {
  font-size: 2.8em;
  margin: 0;
  font-style: italic;
  border: 2px solid rgba(0, 0, 0, 0.1);
  display: inline-block;
  padding: 10px 30px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1.2em;
  font-style: italic;
  margin: 10px 0 30px;
}

/* Button base styles */
.button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  padding: 15px 25px;
  margin: 10px auto;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  border: 3px solid #00000020;
  border-radius: 8px;
  width: 100%;
  max-width: 480px;
  box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
  background-color: #ffffffdd; /* fallback for unstyled buttons */
  color: #3a2c1c;
}

.button img {
  width: 28px;
  height: 28px;
}

.button:hover {
  transform: scale(1.03);
  cursor: pointer;
}

/* Color variants */
.red {
  background-color: #a14e3e;
  color: #fef3e2;
}

.green {
  background-color: #7b7a4e;
  color: #fef3e2;
}

.beige {
  background-color: #d7c2a4;
  color: #3a2c1c;
}

.cream {
  background-color: #f4e9cd;
  color: #3a2c1c;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .button {
    font-size: 1em;
    padding: 12px 20px;
  }

  .button img {
    width: 24px;
    height: 24px;
  }
}
