/* General body styling */
body {
    background-color: #1d242f;
    color: #c0a74b;
    font-family: 'Futura', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Home Button Styling */
.home-button {
    position: absolute;
    top: 20px;
    left: 20px;
}

.home-button a {
    color: #fdf8e4;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    padding: 10px 20px;
    border: 2px solid #fdf8e4;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.home-button a:hover {
    background-color: #fdf8e4;
    color: #1d242f;
}

/* About section styling */
.about-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 20px;
}

.about-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    padding: 20px;
}

.about-image {
    flex: 1;
    text-align: center;
    margin-right: 20px;
    margin-top: 60px;
}

.profile-drawing {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.about-text {
    flex: 2;
    padding-left: 20px;
    color: #f8f3e2;
}

.about-text h2 {
    font-size: 2em;
    letter-spacing: 5px;
    margin-bottom: 20px;
    color: #fdf8e4;
}

.about-text p {
    font-size: 1.1em;
    font-weight: lighter;
    letter-spacing: 1.5px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #fbf8f2;
}

/* Footer styling */
footer {
    position: relative;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    background-color: #1d242f;
    color: #c0a74b;
    flex-shrink: 0;
}

.social-media-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-media-icons a img {
    width: 60px;
    height: auto;
    transition: filter 0.3s ease, transform 0.3s ease;
}

.social-media-icons a img:hover {
    filter: invert(0.7);
    transform: scale(1.1);
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-image {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .about-text {
        padding-left: 0;
    }

    .profile-drawing {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .social-media-icons a img {
        width: 30px;
    }
}
