@font-face {
  font-family: 'Flemish Script';
  src: url('Flemish Script Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=Merriweather&display=swap');

body {
  margin: 0;
  padding: 30px 20px;
  font-family: 'Merriweather', serif;
  color: #3a2f24;
  
  /* Background image with no overlay so it’s fully visible */
  background-image: url('https://www.characrosstheworld.com/wp-content/uploads/2025/03/IMG_4160-1024x768.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 640px;
  /* Semi-transparent white so text stands out */
  background: rgba(255, 250, 245, 0.85);
  margin: 50px auto;
  padding: 40px 50px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(218, 165, 32, 0.3);
  border: 3px solid #d4af37; /* Glamorous gold border */
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.container::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at center, #d4af37 0%, transparent 70%);
  opacity: 0.2;
  transform: rotate(25deg);
  pointer-events: none;
  z-index: 0;
}

header {
  text-align: center;
  border-bottom: 2px solid #d4af37;
  padding-bottom: 25px;
  margin-bottom: 35px;
  position: relative;
  z-index: 2;
}

h1 {
  font-family: 'Flemish Script', cursive;
  font-size: 3.4rem;
  color: #b58900; /* Rich gold */
  margin: 0;
  letter-spacing: 2px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

h2 {
  font-family: 'Flemish Script', cursive;
  font-size: 4.2rem;
  margin: 10px 0 5px;
  color: #b58900;
  text-shadow: 2px 2px 6px rgba(181, 137, 0, 0.5);
}

.date-location {
  font-style: italic;
  font-size: 1.3rem;
  color: #8c7a43;
  text-shadow: 0 1px 0 #fff9f0;
}

a {
  color: #d4af37;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

a:hover {
  border-color: #b58900;
  text-shadow: 0 0 8px #d4af37;
}

h3 {
  font-family: 'Flemish Script', cursive;
  color: #a97c00;
  font-size: 2rem;
  margin-bottom: 18px;
  border-bottom: 1px solid #f5e3a1;
  padding-bottom: 8px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

ul li {
  padding: 8px 0;
  font-size: 1.2rem;
  border-bottom: 1px dashed #f3deb2;
  color: #5c4a1f;
}

ul li:last-child {
  border-bottom: none;
}

.time {
  font-weight: 700;
  color: #b58f1f;
  font-family: 'Merriweather', serif;
}

p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #6b5935;
  margin-bottom: 25px;
  text-shadow: 0 1px 0 #fff9f0;
}

em {
  color: #d4af37;
  font-style: normal;
  font-weight: 600;
  text-shadow: 0 0 6px #d4af37;
}

.links ul li a {
  font-weight: 700;
  text-shadow: 0 0 6px #d4af37;
}

@media (max-width: 680px) {
  .container {
    padding: 30px 25px;
    margin: 30px 20px;
  }

  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 3.4rem;
  }

  h3 {
    font-size: 1.6rem;
  }

  ul li {
    font-size: 1.1rem;
  }
}
