/* UNIVERSAL */
body 
{
    background-color: #383838;
    font-family: "Google Sans Code", monospace;
}

.google-sans-code-font {
  font-family: "Google Sans Code", monospace;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/* HEADER */
.header
{
    text-align: center;
    margin-top: 2em;
}

.header a
{
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    margin: 0 0.8em;
}

.headerContents
{
    background-color: rgba(0, 0, 0, 0.35);
    padding: 1em 2em;
    border-radius: 30px;
    display: inline-block;
}

/* HERO SECTION */

.heroSection 
{
    margin: 5em 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7em;
}

.heroText 
{
    color: white;
}

.heroImage img
{
    height: 20em;
    border-radius: 500px;
}

.knowledgeTable {
    color: white;
    width: 100%;
    max-width: 900px;
    margin: 3em auto;
    display: flex;
    justify-content: center;
    gap: 2em;
    padding: 0 2em;
}

.knowledgeColumn {
    flex: 1;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 30px;
    overflow: hidden;
}

.columnHeader {
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    padding: 1.5em;
    background-color: rgba(0, 0, 0, 0.3);
}

.columnContent {
    padding: 1.5em;
    text-align: left;
}

.knowledgeTable ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.knowledgeTable li {
    padding: 0.3em 0;
    text-align: left;
}

/* SOCIAL BUTTONS */
.socialButtons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2em;
    margin: 5em 0 3em 0;
    padding: 0 2em;
}

.socialBtn {
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    width: 60px;
    height: 60px;
}

.linkedinBtn {
     width: 70px;
    height: 70px;
}

.socialBtn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

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

.socialBtn:hover img {
    filter: brightness(1.2);
}

@media (max-width: 600px) 
{

.heroSection
{
    display: flex;
    text-align: center;
    flex-direction: column;
    gap: 2em;
}

.knowledgeTable {
    flex-direction: column;
    gap: 1.5em;
    align-items: center;
    padding: 0;
}

.knowledgeColumn {
    width: 85%;
    max-width: 400px;
}

.socialButtons {
    flex-direction: row;
    gap: 1.5em;
}

.socialBtn {
    width: 50px;
    height: 50px;
}

.linkedinBtn {
     width: 60px;
    height: 60px;
}

}

/* CONTACT FORM */
.contactContainer {
    max-width: 600px;
    margin: 3em auto;
    padding: 2em;
    color: white;
    text-align: center;
}

.contactContainer h1 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
}

.contactDescription {
    font-size: 1.1em;
    margin-bottom: 2em;
    opacity: 0.9;
}

.contactForm {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 2em;
    border-radius: 30px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.formGroup {
    margin-bottom: 1.5em;
    text-align: left;
}

.formGroup label {
    display: block;
    margin-bottom: 0.5em;
    font-size: 1em;
    font-weight: 500;
}

.formGroup input,
.formGroup textarea {
    width: 100%;
    padding: 0.8em;
    background-color: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    color: white;
    font-family: "Google Sans Code", monospace;
    font-size: 1em;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.formGroup input:focus,
.formGroup textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background-color: rgba(0, 0, 0, 0.4);
}

.formGroup textarea {
    resize: vertical;
    min-height: 120px;
}

.submitBtn {
    background-color: rgba(0, 0, 0, 0.35);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1em 3em;
    border-radius: 30px;
    font-size: 1.1em;
    font-family: "Google Sans Code", monospace;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1em;
}

.submitBtn:hover {
    background-color: rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

