/* Global */
body {
  background-color: #000;
  margin: 0;
  padding: 0;
  font-family: 'Playfair Display', serif; /* Roman style for readability */
  color: #f5f5f5;
}

/* Navbar */
nav {
  width: 100%;
  padding: 20px 0;
  box-sizing: border-box;
}

ul {
  justify-content: center;
  display: flex;
  list-style: none;
  flex-direction: row;
  text-align: center;
  padding: 0;
  margin: 0;
  gap: 30px;
  font-size: 18px;
}

li a {
  text-decoration: none;
  color: #F4C500;
  font-weight: bold;
  font-size: 20px;
  font-family: 'Playfair Display', serif; /* readable Roman font */
  transition: color 0.3s ease;
}

li a:hover {
  color: #B22222;
}

/* Title */
.title {
  color: #FFD93D;
  font-size: 60px;
  text-align: center;
  margin: 40px 0;
  font-family:  'Mea Culpa', cursive; /* Script for Empress feel */
  font-size: 50px;
}

/* Divine Club Section */
.divine-club {
  background-color: #fff;
  color: #000;
  border-radius: 10px;
  padding: 30px;
  margin: 50px auto;
  width: 80%;
  max-width: 800px;
  box-shadow: 0 0 15px rgba(244, 197, 0, 0.3);
  font-family: 'Playfair Display', serif; /* Roman font */
}

.divine-club h2 {
  color: #B22222;
  font-family: Playfair Display', serif; /* Decorative script */
  font-size: 2rem;
  margin-bottom: 15px;
}

.divine-club p {
  font-size: 1.1rem;
  line-height: 1.6;
  font-family: 'Playfair Display', serif; /* Roman font */
}

/* Button */
button {
  background-color: #FFD93D;
  color: #000;
  border: none;
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease;
  display: block;
  margin: 20px auto 0 auto;
  font-family: 'Playfair Display', serif; /* Roman font */
}

button:hover {
  background-color: #B22222;
  color: #fff;
}

