/* style.css */

/* Global Styles */
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  font-family: "Give You Glory", serif;
  font-size: 14pt;
  color: #fff;
  background: #101010;
}

/* (The VANTA effect is now attached to the body, so no separate #vanta-bg needed) */

/* Content container styling */
.content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 20px;
}

.content h1 {
  font-family: "Henny Penny", serif;
  font-weight: 400;
  font-size: 2em;
}

/* Zoom room button styling */
.zoom-button {
  display: inline-block;
  margin: 10px;
  padding: 15px 25px;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid transparent;
  border-radius: 5px;
  text-decoration: none;
  font-size: 18px;
  color: #fff;
  transition: background 0.3s ease, border-color 0.3s ease;
  width: 300px;
}

.zoom-button:hover {
  background: rgba(0, 0, 0, 0.9);
  border: 2px solid #fff;
}

/* Admin Page Specific Styles */
.content.admin {
  max-width: 800px;
  margin: 40px auto;
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 8px;
}

.content.admin h1,
.content.admin h2 {
  margin-top: 0;
}

.room-entry {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.room-entry input[type="text"] {
  margin-bottom: 5px;
  padding: 8px;
  border: none;
  border-radius: 4px;
  font-size: 14pt;
}

#message {
  margin: 10px;
  font-size: 16pt;
  color: #0f0;
}