/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;

}

body, html {
  height: 100%;
  font-family: Arial, sans-serif;
  background-color: #892F29;
  color: #3d100d;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* Header */
header {
  margin: 2rem 0;
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  user-select: none;
  z-index: 2;
}
/* Main header box style (shared with photography & batch pages) */
.main-header {
  width: 100vw;
  display: flex;
  justify-content: center;
  margin: 2rem 0 1rem;
}

.header-box {
  background-color: #c84637; /* blue background */
  color: 3d100d;
  border: 0.25rem solid #3d100d;
  padding: 1rem 2rem;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  user-select: none;
}


/* Main black box */
.main-box {
  background-color: #000;
  border: 0.25rem solid #5E1F1C;
  width: 95vw;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Video background layer */
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* Foreground container */
.container {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

/* Profile icon */
.profile-icon {
  width: 9.375rem;  /* 150px */
  height: 9.375rem;
  background: white url('images/icon.png') center/cover no-repeat;
  border: 0.188rem solid #5E1F1C; /* 3px */
  border-radius: 0; /* square */
  cursor: pointer;
}

/* Buttons */
.side-button {
  background-color: #222;
  border: 0.125rem solid #5E1F1C;
  color: white;
  padding: 1rem 2rem;
  font-size: 1.25rem;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s, color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 7.5rem;
  text-align: center;
  flex: 1;
  text-align: center;
}

.side-button:hover {
  background-color: #ff4c4c;
  color: black;
}
