@import url('https://fonts.googleapis.com/css2?family=Cherry+Bomb+One&family=Foldit:wght@600&family=IBM+Plex+Mono&family=Inter&family=Monoton&family=Nunito&family=Open+Sans&family=Plaster&family=Raleway:ital,wght@0,100;0,300;0,500;1,100&family=Roboto&family=Roboto+Mono&display=swap');

:root {
    --matteBlack:#222222;
    --mintGreen:#3EB489;
    --softGreen:#9ad1bd;
    --offWhite:#fffdfa;
    --softWhite:#f1f0ed;
    --cream:#e8e0d6;
    --lightblue:#64aef2;
    --clear:#00000000;
    --deepBlue:#021f3a;
    --contrastBlack:#010409;
    --charcoalGrey:#7a828e;
    --softBlack:#242222;
    --offWhiteTrans:#fffdfa60;
    --matteBlackTrans: #22222260;
    --accountingGrey:#cccccc;
    --neumorphBG_light:#fffdfa20;
    --neumorphBG_dark:#22222220;
    --neumorphGradient:linear-gradient(145deg, #ffffff, #e6e4e1);
    --legradient:linear-gradient(45deg, #fffdfa, #cccccc);
    --neumorphShadow:41px 41px 60px #d9d7d5, -41px -41px 60px #ffffff;
}

body {
    background-color: var(--matteBlack);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0 auto;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
  }


  .neumorph {
    background-color: var(--neumorphBG_light);
    box-shadow: 4px 4px 12px var(--matteBlackTrans),
                -4px -4px 12px var(--offWhiteTrans);
}

  #api_example {
    display: inline;
  }
  #ai_example {
    display: none;
  }
  #bi_example {
    display: none;
  }
  #auto_example {
    display: none;
  }
#hero {
    display: flex;
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('./graphic_assets/dragonbg.gif');
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    margin: 0 auto;
    padding: 0px;;

}


#header {
    padding: 5px;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 50%;
    height: 72px;
    width: 100%;
    padding: 6px;
    text-align: center;
    position: fixed;
    margin: 0 auto;
    left: 0px;
    right: 0px;
    top: 0px;
    background-color: #22222220;
    border-radius:0px;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: 0px 0px 18px var(--matteBlackTrans);
    z-index: 100;
}

#header svg {
    height: 64px;
    width: 64px;
    margin-left: 6px;
    cursor: pointer;
}

#header svg path {
    stroke: var(--offWhite);
}

#header ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    color: var(--offWhite);
}

#header li {
    display: inline;
    cursor: pointer;
    padding: 2px;
    transition: all ease 0.2s;
    font-size: 20px;
    margin-left: 18px;
    margin-right: 5px;
    color: var(--offWhite);
}
#header a {
  text-decoration: none;
  color: #fffdfa;
  font-family: 'Raleway', sans-serif;
  font-size: 32px;
  font-weight: 100;
}

#header li:hover {
    box-shadow: -1px 1px 0px 1px var(--offWhite);
    border-radius: 1px;
}

#hero h1 {
    color: #fffdfa;
    position: absolute;
    top: 120px;
    left: 24px;
    font-family: 'Raleway';
    font-size: 96px;
    font-weight: 100;
    font-style: italic;
    border-radius: 32px;
    padding: 6px;
}
#hero p {
    color: #fffdfa;
    position: absolute;
    font-family: 'Raleway', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 24px;
    font-weight: 100;
    font-style: italic;
    top: 80vh;
    width: 420px;
    right: 42px;

}

#mobile_menu {
    display: none;
    fill: #fffdfa;
    height: 48px;
    width: 48px;
    margin-bottom: 16px;
}

#whatwedo {
    width: 100%;
    padding-bottom: 180px;
    padding-top: 12px;
    background: linear-gradient(145deg, #fffdfa, #cccccc 42%);
    animation: gradientAnimation 5s linear infinite;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


#wwdHead {
    font-family: 'Raleway';
    position: relative;
    font-size: 64px;
    left: 32px;
    font-weight: 100;
    font-style: italic;
    margin-bottom: 112px;
}

#container {
    width: 90%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    margin: 0 auto;
    height: 800px;
    gap: 24px;
}

#topics {
    width: 40%;
    margin-right: 5%;
    position: relative;
}

#presentation{
    width:55%;
    border-radius: 32px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: linear-gradient(135deg, #fffdfa25, #22222215);
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
}

.radio-container .radio-wrapper {
  position: relative;
  margin-bottom: 10px;
}

.radio-container input[type="radio"] {
  display: none;
}

.radio-container label {
  cursor: pointer;
  display: flex;
  align-items: center;
  width: 182px;
  height: 182px;
  overflow: hidden;
  border-radius: 256px;
}

.radio-container .custom-radio {
  border-radius: 256px;
  background-color: #ccc;
  margin-right: 10px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 1;
  overflow: hidden;
}

.radio-container .custom-pill {
  display: block;
  position: absolute;
  left: 10px;
  width: 0;
  height: 148px;
  z-index: 0;
  background: linear-gradient(225deg, #fffdfa50, #cccccc50);
  border-radius: 300px;
  padding: 0px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.radio-container .custom-pill p {
  position: relative;
  left: 28%;
  font-size: 28px;
  display: flex;
  flex-wrap: wrap;
  width: 72%;
  text-align: center;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.radio-container input[type="radio"]:hover + label .custom-pill {
  width: 100%;
}

.radio-container input[type="radio"]:checked + label .custom-pill {
  width: 100%;
  box-shadow: 0px 0px 24px 0px #22222250;
}

.radio-container input[type="radio"]:checked + label img {
  border: 1px solid var(--clear);
  border-radius: 46px;
  box-shadow: 0px 0px 0px 0px;
}

.radio-container img {
  height: 128px;
  padding: 0px;
  border-radius: 72px;
  z-index: 1;
  transition: all ease-out 0.2s;
  padding: 2px;
  box-shadow: 0px 0px 12px 0px #22222250;
}


  .projExample h4 {
    text-align: center;
    font-size: 24px;
    color: #222222;
    font-weight: 300;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  }
 .projContent {
    display: flex;
    gap: 24px;
    flex-direction: row;
    flex-wrap: nowrap;
    padding:8px;
    font-size: 18px;
  }

  #presentation .projContent img {
    border-radius: 12px;
    box-shadow: 0px 0px 12px 0px #22222250;
    width:40%;
  }
  .projLink {
    border-radius: 12px;
    overflow: hidden;
  }
  .projLink img {
    height: 64px;
    width: 64px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--matteBlack);
  }
 
  .projLinks {
    display: flex;
    flex-direction: row;
    gap: 12px;
    padding: 12px;
    padding-top: 0px;
    margin: 0 auto;
    justify-content: space-around;
    text-align: center;
  }
  
  
  #collabs {
    background-color: #222222;
    padding-bottom: 24px;
    width: 100%;
  }


  #collabs {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    gap: 240px;
    justify-content: space-around;
}

#collabs h2 {
  color: #fffdfa;
  font-family: 'Raleway';
  font-size: 52px;
  font-weight: 100;
  font-style: italic;
}

.collabSection {
    flex: 1;
    min-width: 300px; /* Set a minimum width for the sections */
    justify-content: space-around;
    max-width: 420px;
}

.collabContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.collabLink {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px;
}

.collabLink img {
  width: 128px;
  height: auto;
}

.collabLink p {
    font-family: 'Raleway', sans-serif;
    margin-top: 10px;
    text-align: center;
    font-size: 24px;
    font-weight: 100;
    color: #fffdfa;
}

#about {
  background: linear-gradient(135deg, #fffdfa, #cccccc);
  display: flex;
  flex-direction: column;
  padding-bottom: 84px;
}
#about h2 {
 position: relative;
 font-size: 72px;
 font-family: 'Raleway',sans-serif;
 font-weight: 100;
 font-style: italic;
 left: 48px;
}

.aboutContent {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  gap: 24px;
}
.biodiv {
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 72px 0px #22222250;
  border-radius: 12px;
  padding: 12px;
  width: 40%;
  margin: 0 auto;
}
.biodiv_header {
  display: flex;
  flex-direction: row;
  margin-bottom: 0px;
}
.biodiv_header img {
  width: 120px;
  height: 120px;
}
.biodiv_header h3 {
  font-family: 'Raleway',sans-serif;
  font-weight: 100;
  font-size: 64px;
  margin: 6px;
  margin-left: 64px;
}
.biodiv_header p {
  font-size: 16px;
  font-family: 'Raleway',sans-serif;
  font-style: italic;
  font-weight: 100;
}
.biodiv_content {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 20px;
}



#contact {
  padding-bottom: 64px;
}
#contactContent {
  display: flex;
  flex-direction: row;
  gap:32px;
  justify-content: space-around;
}
#contactContent h2 {
  color: #fffdfa;
  font-family: 'Raleway', sans-serif;
  font-weight: 100;
  font-size: 48px;
  text-align: center;
}
/* Style the footer */
.site-footer {
  background: linear-gradient(135deg, #cccccc, #fffdfa);
  color: var(--matteBlack);
  padding: 20px 0;
  text-align: center;
  font-family: 'Inter';
}
.site_footer a {
  z-index: 100;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-section {
  flex: 1;
  padding: 20px;
}

.footer-section h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.social-media a {
  display: inline-block;
  margin-right: 10px;
  cursor: pointer;
}

.social-media svg {
  width: 24px;
  height: 24px;
  fill: var(--matteBlack);
}

.copyright {
  padding: 10px 0;
  font-size: 14px;
}

#contactForm {
  width: 100%;
}

#mailingForm form {
  margin: 0 auto;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #fffdfa;
  width: 50%;
}

#mailingForm label {
  display: block;
  margin-bottom: 8px;
  border-radius: 6px;
}

#mailingForm input,
#mailingForm textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 16px;
  box-sizing: border-box;
  border-radius: 6px;
  border: 1px solid var(--offWhite);
  outline: none;
  background: linear-gradient(135deg, #fffdfa, #cccccc);
}

#mailingForm button {
  background: linear-gradient(135deg, #cccccc, #fffdfa);
  color: #222222;
  padding: 14px 21px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
}


#calendarSeperator {
  width: 10%;
}
#calendarSVG {
  max-height: 620px;
  max-width: 620px;
  height: 100%;
}
#calendarSVG .boxes_path path {
  /* Your default styles for the second group of paths */
  transition: all 0.12s ease-out; /* Add a smooth transition effect */
}

#calendarSVG .boxes_path path:hover {
  transform: translateY(-5px); /* Adjust the value as needed */
  cursor: pointer;
}
#calendarDiv {
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  gap: 0px;
  align-items: center;
  max-height: 600px;
  width: 100%;
}

#mobile_popup {
  position: fixed;
  top: 84px;
  height: 100vh;
  width: 100%;
  transform: translate(120%, 0%);
  margin: 0 auto;
  background: linear-gradient(135deg, #fffdfa, #cccccc);
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  padding: 8px;
  padding-top: 24px; /* Corrected this line by adding 'px' */
  z-index: 10;
  transition: all ease-out 0.32s;
}

.open {
  transform: translate(0px, 0px);
}

#mobile_popup a {
  text-decoration: none;
  color: #222222;
  font-size: 48px;
  transition: all ease-out 0.2s;
}

#mobile_popup a:hover {
  text-decoration: underline;
}

footer {
  background-color: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
}



@media (max-width: 1000px) {
  .collabSection {
      flex: 1 0 100%; /* Allow sections to stack on smaller screens */
  }
  #collabs {
    gap: 42px;
  }
}

@media (max-width: 1200px) {
.aboutContent {
  flex-direction: column;
}
}
@media (max-width: 1200px) {
.biodiv {
  width: 90%;
}
.biodiv_header h3 {
  font-size: 32px;
  margin-left: 12px;
}
.biodiv_header img {
  width: 72px;
  height: 72px;
}
.biodiv_content {
  position: relative;
  left: 0px;
  font-size: 16px;
}
#contactContent {
  flex-direction: column;
  gap:12px;
}
}

/* mobile styling */
@media(max-width:1200px){
    #header {
        gap: 24px;
    }
    #header #navLinks {
        display: none;
    }
    #hero h1 {
        left:-4px;
        margin: 0 auto;
        padding: 0px;
        width: 100%;
        text-align: center;
        font-size: 78px;
    }
    #hero p {
        right: 12px;
        font-size: 16px;
        width: 320px;
    }
    #mobile_menu {
        display: flex;
        fill: #fffdfa;
        height: 48px;
        width: 48px;
        margin-bottom: 16px;
    }


    .radio-container {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
    }
    #container {
        width: 100%;
        display: flex;
        justify-content: space-around;
        text-align: center;
        flex-direction: column;
        align-items: center;
    }
    #presentation{
        width:95%;
        box-shadow: 0px 0px 24px 0px var(--matteBlackTrans);
        border-radius: 32px;
        background: linear-gradient(135deg, #fffdfa25, #22222215);
        height: 1000px;
    }
    
    #topics {
        margin: 0px;
        gap: 0px;
    }

    .custom-radio {
        margin: 0px;
    }


    .radio-container label {
      cursor: pointer;
      display: flex;
      align-items: center;
      width: 86px;
      height: 86px;
    }
    
    .radio-container input[type="radio"]:hover + label .custom-pill {
      width: 72px;
      height: 72px;
    }
    
    .radio-container input[type="radio"]:checked + label .custom-pill {
      width: 72px;
      height: 72px;
      box-shadow: 0px 0px 24px 0px #22222250;
    }
    
    .radio-container input[type="radio"]:checked + label img {
      border: 1px solid var(--clear);
      border-radius: 46px;
    }
    
    .radio-container img {
      height: 64px;
      width: 64px;
      box-shadow: 0px 0px 0px 0px;
      border: 1px solid var(--matteBlack);
    }
    
    .radio-container .custom-pill {
      height: 64px;
    }
    
    .radio-container .custom-pill p {
      display: none;
    }
    


      .projExample h4 {
        text-align: center;
        font-size: 24px;
        color: #222222;
        font-weight: 300;
        font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
      }
     .projContent {
        display: flex;
        gap: 4px;
        flex-direction: column;
        flex-wrap: nowrap;
        padding:8px;
        justify-content: space-around;
        text-align: left;
        font-size: 18px;
      }
    
      #presentation .projContent img {
        border-radius: 12px;
        box-shadow: 0px 0px 12px 0px #22222250;
        width: 55%;
        max-width: 300px;
        height: auto;
        margin: 0 auto;
      }
      
      .projLink {
        border-radius: 12px;
        overflow: hidden;
      }
      .projLink img {
        height: 64px;
        width: 64px;
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid var(--matteBlack);
      }
      .projLinks {
        display: flex;
        flex-direction: row;
        gap: 12px;
        padding: 12px;
        justify-content: space-around;
        text-align: center;
      }

      #wwdHead {
        font-family: 'Raleway';
        position: relative;
        font-size: 64px;
        font-weight: 100;
        font-style: italic;
        left: 0px;
        width: 100%;
        text-align: center;
        top: -32px;

    }
}