/* Dot pattern overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(#000 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: 0.1;
  z-index: 9999;
}

body {
  font-family: 'Courier New', sans-serif;
  background-color: #2b1e1a; /* deep brown */
  color: #ffeef2; /* soft pinkish white */
  margin: 0;
  padding: 0;
}

header {
  background-color: #3c2a25;
  border-bottom: 3px solid #8b5e58;
  padding: 20px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 10;
}

h1 {
  font-size: 30px;
  font-weight: bold;
  color: #f5eaea;
  font-family: 'Bodoni Moda', serif;
  text-align: center;
  margin-bottom: 1px;
  letter-spacing: 16px;
  width: 100%;
  position: relative;
  z-index: 2; /* On top of everything else */
  text-shadow:
    0 0 4px rgba(255, 220, 220, 0.3),
    0 0 10px rgba(255, 220, 220, 0.2);
}

.decor {
  color: #ffccd5;
  font-size: 18px;
}

nav {
  margin-top: 10px;
}

nav a,
.dropbtn {
  text-decoration: none;
  color: #ffccd5;
  margin: 0 12px;
  font-weight: bold;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 16px;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s, transform 0.1s;
}

nav a:hover,
.dropbtn:hover {
  background-color: #4b302b;
  color: #fff;
  transform: scale(1.05);
}

/* Dropdown menus */
.dropdown {
  display: inline-block;
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #3c2a25;
  min-width: 150px;
  border: 1px solid #8b5e58;
  border-radius: 10px;
  z-index: 20;
}

.dropdown-content a {
  display: block;
  padding: 8px 12px;
  color: #ffccd5;
  text-decoration: none;
  border-radius: 6px;
}

.dropdown-content a:hover {
  background-color: #4b302b;
  color: #fff;
}

.dropdown:hover .dropdown-content {
  display: block;
}

main {
  padding: 40px;
  text-align: center;
}

.cute-divider {
  border: none;
  border-top: 2px dashed #8b5e58;
  margin: 20px auto;
  width: 60%;
}

.note {
  font-size: 14px;
  color: #d4a5a0;
}

details {
  margin: 12px auto;
  padding: 10px;
  border: 2px dashed #8b5e58;
  background: #3c2a25;
  width: fit-content;
  border-radius: 12px;
}

footer {
  background-color: #3c2a25;
  border-top: 3px solid #8b5e58;
  text-align: center;
  padding: 10px;
  margin-top: 30px;
  color: #aa8682;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0;
  background: #3c2a25;
  border: 2px solid #8b5e58;
  border-radius: 8px;
  overflow: hidden;
}