/* Import Google Fonts */
/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&family=Playfair+Display:wght@600&display=swap');

/* Base styling */
body {
  font-family: 'Open Sans', sans-serif;
  background-color: #fdf6f0; /* Cream */
  color: #444444;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* Headings */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: #333333;
  text-align: center;
}

/* Paragraphs */
p {
  max-width: 700px;
  margin: 10px auto;
  text-align: justify;
}

/* Links */
a {
  color: #842568;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
}

/* Buttons */
.button {
  background-color: #842568;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #6d1f58;
}

/* Navbar Styling */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #842568;
  padding: 15px 30px;
  text-align: right;
  box-sizing: border-box;
}

.navbar a {
  background-color: #fdf6f0;
  color: #842568;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  margin-left: 15px;
  transition: background-color 0.3s ease;
}

.navbar a:hover {
  background-color: #e8e0d8; /* Slightly darker cream */
}

/* Content container */
.container {
  text-align: center;
  margin-top: 100px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}

/* Images */
img {
  width: 200px;
  border-radius: 15px;
  margin-top: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/* Centered button wrapper */
.button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
