body {
    font-family: "IBM Plex Serif", serif;
    margin: 0;
    padding: 0;
}

.hidden-page {
    display: none !important;
}

.show-page {
    display: flex;
}

.header-container {
    position: fixed;
    height: 4rem;
    width: 100%;
    z-index: 20;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 90%, rgba(255, 255, 255, 0) 100%);
}

.header-text {
    position: absolute;
    left: 20px;
    font-size: 2.5rem;
    font-weight: 300;
    top: 0.6rem;
}

@media (max-width: 586px) {
    .header-text {
        font-size: 1.75rem;
        left: 10px;
    }
}

@media (max-width: 420px) {
    #text-visual {
        display: none;
    }
}


.menu-icon-container {
    position: absolute;
    right: 1.25rem;
    top: 1rem;
    display: none;
}

#menu-icon {
    width: 30px;
    height: 30px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

#menu-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #000000;
    border-radius: 10px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.menu-icon-display {
    display: flex;
}

#menu-icon span:nth-child(1) {
    top: 0px;
}

#menu-icon span:nth-child(2),
#menu-icon span:nth-child(3) {
    top: 10px;
}

#menu-icon span:nth-child(4) {
    top: 20px;
}

#menu-icon.open span:nth-child(1) {
    top: 14px;
    width: 0%;
    left: 50%;
}

#menu-icon.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#menu-icon.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#menu-icon.open span:nth-child(4) {
    top: 14px;
    width: 0%;
    left: 50%;
}

.sidebar {
    position: fixed;
    top: 3.5rem;
    bottom: 2.5rem;
    left: 0px;
    width: 275px;
    padding: 8px;
    overflow-y: auto;
    height: 100vh;
    z-index: 10;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 65%, rgba(255, 255, 255, 0) 100%);
    transition: left 0.2s ease;
}

.toggle-sidebar {
    left: 0px;
}

@media (max-width: 768px) {
    .sidebar {
        background: linear-gradient(to right, rgba(255, 255, 255, 1) 90%, rgba(255, 255, 255, 0) 100%);
        width: 225px;
    }

    .toggle-sidebar {
        left: -300px !important;
    }
}

.sidebar-content {
    color: #1f2937;
    font-size: 1.25rem;
    padding-left: 1rem;
}

.menu-item:hover {
    color: #047857;
}

.sidebar-page-on-text {
    color: #047857;
}

.menu-item {
    padding: 8px;
    margin: 4px 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.menu-item:hover {
    color: #047857;
}

.content-container {
    margin-top: 4.75rem;
    /* max-height: 100%; */
    /* white-space: nowrap; */
    display: inline-flex;
    align-items: center;
}

@media (min-width: 768px) {
    .content-container .image-container:nth-child(1) {
        margin-left: 300px;
    }

    .menu-icon-display {
        display: none;
    }
}

.image-container {
    margin: 4px;
}

.image {
    max-height: 75vh;
    height: 100%;
}

.about-page {
    justify-content: center;
    width: 100vw;
    height: calc(100vh - 4rem);
    position: absolute;
    left: 0;
    top: 4rem;
    box-sizing: border-box;
    padding-bottom: 4rem;
}

.about-section {
    display: flex;
    justify-content: center;
    /* margin: auto; */
    /* align-items: center; */
    min-height: 500px;
    max-width: 1100px;
    /* margin: 0 15px 0 200px; */
}

.about-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 900px;
    position: relative;
}

.about-img {
    width: 350px;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
}

@media (max-width: 1415px) {
    .about-section {
        margin: 0 15px 0 200px;
    }
}

@media (max-width: 1200px) {
    .about-content {
        flex-direction: column;
        align-items: center;
        padding: 1.5rem;
        gap: 1rem;
    }

    .about-section {
        margin-left: 300px;
        margin-right: 10px
    }

    .about-img {
        width: 200px;
        height: 275px;
        object-fit: cover;
        border-radius: 8px;
    }
}

@media (max-width: 768px) {
    .about-section {
        margin: 0;
    }
}

.about-text {
    max-width: 700px;
}

.about-text h1 {
    font-family: "IBM Plex Serif", serif;
    font-weight: 500;
    font-style: italic;
    margin-top: 0;
    font-size: 2.5rem;
    margin-bottom: 0px;
}

.contact-button {
    text-decoration: none;
    font-weight: bold;
    color: inherit;
}

.contact-button:hover {
    color: #047857;
}

.footer-ig {
    display: block;
    text-align: center;
    font-style: italic;
    color: #666;
}

.footer-ig-link {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-ig-link:hover,
.footer-ig-link:focus {
    color: #047857;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    text-align: center;
    z-index: 100;
    padding: 0.35rem 0;
}