/* BASIC PAGE STYLING */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Playfair Display', serif;
  background-color: #dcd3c3; /* soft beige-grey fog */
  color: #222;
}

/* LOADING SCREEN */
#loading-screen {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #dcd3c3;
  z-index: 9999;
  transition: opacity 1s ease;
}

#quote-container {
  width: 70%;
  max-width: 700px;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.6rem;
  color: #222;
}

/* MAIN CONTENT — hidden until fade completes */
#main-content {
  display: none;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

/* TITLE */
#site-title {
  font-size: 4rem;
  margin-bottom: 20px;
}

/* NAVIGATION */
#nav-links a {
  margin: 0 15px;
  font-size: 1.5rem;
  color: #222;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

#nav-links a:hover {
  color: #a1876a;
  text-shadow: 0 0 8px rgba(255,255,255,0.8);
}

/* MUTE BUTTON */
#mute-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(255,255,255,0.8);
  border: none;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  font-size: 1.2rem;
  z-index: 1000;
}

#site-logo {
  width: 220px;         /* adjust this to your preferred size */
  height: auto;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeIn 2s ease forwards 1s;
}

