/* Design by Joievelle Leslie 2001095*/
/*Faculty/ Schools CSS*/

.spacer{
background-color: white;
height: 15%;
}	

.header{
background-color: #4c4949;
height: 15%;
}		
.footer{
background-color: #4c4949;
height: 15%;
}

/*.nav{
float:right;
margin: 25px;
}

.nav a {
margin-right: 20px; /* word spacing 
}*/

a{
 color: white;
 font-family: 'MIXONE';
 font-size:18pt;
 text-align:center;
}

p{
 color: black;
 font-family: monospace;
 font-size:14pt;
 text-align: center;
}

.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;
}



h1{
 color: black;
 font-family: Sans serif;
 font-size:48pt;
 text-align:center;
} 

/* ========================= 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%;																				
}

.image-box {
  width: 100%;
  height: 300px; 
  overflow: hidden;
  border: 1px solid #ccc;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}

.raised-box {
  padding: 10px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); 
  /*height: 700px;*/
  width: 100%;
  margin:0px;
}

.dropdown {
  width: 220px;
  height: 45px;
  font-size: 18px;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  float:right;
}


* { 
box-sizing: border-box;
} 
	

  .column img {
    width: 100%;
    height: 200px; 
    object-fit: cover; 
    border-radius: 8px; 
  }

  .column {
    width: 30%; 
    margin: 1%;
    display: inline-block;
    vertical-align: top;
  }

  .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .column p {
    text-align: center;
    margin-top: 10px;
	color: black;
  }

  .info-panel {
    display: none;
    width: 100%;
    background-color: #f9f9f9;
    padding: 20px;
    margin-top: 20px;
    border-top: 2px solid #ccc;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  
  button           {
 	      background-color: #004A7F;
  	      border-radius: 3px;
 	      border: none;
  	      color:white;
	      cursor: pointer;
 	      display: inline-block;
  	      font-family:'Luckiest Guy';
 	      font-size: 24px;
	      padding: 10px 10px;
	      text-align: center;
	      text-decoration: none;
		  margin-left: 120px;
	      }

button:hover{
  	      border-color: #1c0813;
  	      box-shadow: 1px 5px 3px 1px #1c0813;
  	      color: #fff;
	      }