/* Designed by Joievelle Leslie 2001095*/
/*TeamOverview CSS*/

.header{
background-color: #4c4949;
height: 15%;
}		
.footer{
background-color: #4c4949;
height: 15%;
}

a{
 color: white;
 font-family: 'MIXONE';
 font-size:18pt;
 text-align:center;
}

p{
 color: white;
 font-family: monospace;
 font-size:14pt;
}

.nav {
  display: flex;
  float:right;
  justify-content: space-between; /* space between nav links and search */
  padding: 10px 20px;
  gap:10px;
  flex-wrap: wrap; /* allow it to wrap on smaller screens */
}

.nav2{
	/*float:left;*/
	margin: 15px;
	display: flex;
	justify-content: center; /* Centers horizontally */			
}	

.nav a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  padding: 8px 12px;
  transition: 0.2s;
}

.nav a:hover {
  background-color: #ddd;
  border-radius: 5px;
}

.nav2 a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  padding: 8px 12px;
  transition: 0.2s;
}	

.nav2 a:hover {
  background-color: #ddd;
  border-radius: 5px;
}
	

@font-face {
	font-family: 'MIXONE';
	src: url('Assets/Fonts/MIXONE.ttf') format('truetype');
}	
			   
.search-bar {
  display: flex;
  align-items: right;
  border: 2px solid #ccc;
  border-radius: 25px;
  overflow: hidden;
  background-color: white;
}

.search-bar input[type="text"] {
  padding: 10px 15px;
  border: none;
  outline: none;
  font-size: 14px;
}

.search-bar button {
  padding: 10px 15px;
  background-color: #60423F;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.search-bar button:hover {
  background-color: #45a049;
}
		
/* ========================= Ensure the whole page takes up full height=========================== */
html, body {
margin: 0;
padding: 0;
height: 100%;
background-repeat:no-repeat;
background-position: center;
background-color:#60423F;
/*background-image: url('./banner.jpg');*/
/*background-attachment: fixed;*/
background-size: 100% 100%;																				
}

.vertical-rings {
  display: flex;
  flex-direction: column; /* stack circles vertically */
  gap: 20px;              /* space between circles in a column */
}

.all-containers {
  display: flex;           /* put the vertical groups side by side */
  justify-content: left; /* left them horizontally (optional) */
  gap: 50px;               /* space between the vertical groups */
  padding: 40px;           /* space around everything */
}

.profile-ring {
  position: relative; /* needed for popup positioning */
  width: 300px;           /* Set your desired size */
  height: 300px;
  border: 5px solid #a0322e; /* Ring color */
  border-radius: 50%;
  padding: 3px;           /* Optional: space between ring and image */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #262f5a; /* Optional: background behind image */
  cursor: pointer; /* optional for hover feel */
}

.profile-pic {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}


.popup {
  position: absolute;
  bottom: 110%; /* place above the circle */
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  font-size: 12px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  pointer-events: none;
  z-index: 10;
}

.profile-ring:hover .popup {
  opacity: 1;
  visibility: visible;
}

.indented {
  margin-left: 40px; /* indentation */
}

.profile-item {
  display: flex;
  align-items: center;  /* vertically align circle and text */
  gap: 15px;            /* space between image and text */
}
.profile-text {
  color: white;
  font-family:sans serif;
  font-size:14pt;
  max-width: 900px;
}
