body {
    background: linear-gradient(135deg, #ADA8BE, #a183d8);
    font-family: Tahoma;
}
*{
  box-sizing: border-box;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
li {
    display: inline;
}




.window_container {
 
  
  background: linear-gradient(180deg,rgb(200, 173, 235) 0%, rgb(173, 144, 196) 55%, rgba(52, 2, 110, 1) 100%);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;

}
.window_row{
  padding: 10px;
  
  
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.window_column{
  float:left;
}
.window_right{
  width: 10%; 
  
}


.window_middle{
  width: 75%;
}

.window_row:after{
  content: "";
  display: table;
  clear: both;
}

.dot{
  margin-top: 4px;
  height: 12px;
  width: 12px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  left: 50px;
  bottom: 10px;
  position: relative;
}


input[type = text]{
  width:90%;
  border-radius: 3px;
  border:none;
  background-color: white;
  margin-top: -8px;
  height: 25px;
  color: #777;
  padding: 5px;

}

/*
bar
May change later
*/

.window_bar{
  
  width: 15px;
  height: 3px;
  background-color: #000000;
  margin: 3px 0;
  display: block;
  left:10px;
  position:relative;
}

.window_content{
  padding:10px;
   padding-left: 20px;

}

/* About Section*/
.AboutHeading{
  font-size: 80px;
  left: 150px;
  position: relative;
  bottom: 100px;
}

.h_top{
  position:relative;
  left:225px;
  bottom:500px;
}




.tab_button{
    height: 30px;
    width: 80px;
    margin-bottom: 20px;
    margin-right: 30px;
    position: relative;
    
}



.tab_button {
  background-color: #4caf50;
  color: white;
  font-weight: bold;
  cursor: pointer;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.tab_button:hover {
  background-color: #45a049;
}

#github-projects i {
  font-size: 24px;
  color: #333;
  transition: color 0.2s;
}

#github-projects a:hover i {
  color: #4078c0; 
}


.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 20px;
}


.project-box {
  background-color: white;
  padding: 16px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.project-box:hover {
  transform: translateY(-5px);
}



.project-box a {
  display: block;
  text-decoration: none;
  color: #0044cc;
  font-weight: bold;
  margin-top: 5px;
}

.project-box a:hover {
  text-decoration: underline;
}


.logo {
  display: block;
  max-width: 200px;
  height: auto;
  margin-left: 0;
  margin-top: 10px;
}


.Headshot{
  width: 100px;
  height: 100px;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 10px;
}

.about-paragraph {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
}

.window_section {
  background-color: #ebe8e8;
  border: 2px solid #c0c0c0;
  border-radius: 6px;
  padding: 20px;
  margin: 30px auto;
  max-width: 850px;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}

.section-bar {
  background-color: #d0d0d0;
  border: 1px solid #a0a0a0;
  padding: 6px 12px;
  font-weight: bold;
  color: #222;
  margin-bottom: 20px;
  border-radius: 4px;
  font-size: 1.1rem;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-bar a {
  text-decoration: none;
  color: #550f8f;
}

.section-bar a:hover {
  text-decoration: underline;
  color: #9329e4;

}


.dropdown-menu {
  position: absolute;
  left: 20px;
  top: 60px;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 999;
  display: flex;
  flex-direction: column;
  min-width: 120px;
}

.dropdown-menu a {
  padding: 10px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  border-bottom: 1px solid #eee;
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background-color: #f2f2f2;
}

.hidden {
  display: none;
}
