/* style.css */

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

/* Container & Content */
.content {
  position: relative;
  z-index: 1;
  padding: 20px;
  text-align: center;
}

/* Headings (using Henny Penny) */
.content h1 {
  font-family: "Henny Penny", serif;
  font-size: 2.5em;
  margin-bottom: 20px;
}

/* Splash Screen styling */
#splash p {
  font-size: 1.2em;
}
#splash .zoom-button {
  width: auto;
  padding: 10px 20px;
}

/* Admin Login Form styling */
#admin-login input[type="password"] {
  padding: 10px;
  font-size: 1em;
  margin: 10px 0;
}
#admin-login .zoom-button {
  padding: 10px 20px;
}

/* Call Interface Layout */
.call-interface {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

/* Remote Area: occupies most of the screen */
#remote-area {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
}

/* Remote Container for video elements */
#remote-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

/* Remote Video Elements */
.remote-video {
  width: 100%;
  max-width: 600px;
  border-radius: 4px;
  background: #000;
}

/* Room Info & End Session button */
#room-info {
  margin-top: 10px;
  font-size: 1.2em;
  font-weight: bold;
}
#end-session-btn {
  margin-top: 10px;
}

/* Local Thumbnail: positioned in bottom left */
#local-thumb {
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 120px;
  height: 90px;
  border: 2px solid #fff;
  border-radius: 4px;
  overflow: hidden;
}
#local-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Zoom 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;
}
.zoom-button:hover {
  background: rgba(0, 0, 0, 0.9);
  border: 2px solid #fff;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
  #local-thumb {
    width: 80px;
    height: 60px;
  }
}