/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 1.35rem;
    line-height: 1.7;
    color: #ffffff;
    background-color: #000000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

main {
    max-width: 800px;
    width: 100%;
    text-align: left;
}

/* Header */
header {
    margin-bottom: 4rem;
}

.header-text {
    text-align: left;
}

h1 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    color: #f5f5f5;
    margin-bottom: 1rem;
    font-weight: 400;
}

.bio {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: #909090;
    line-height: 1.6;
}

.profile-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.business-logo {
    height: 120px;
    width: auto;
    opacity: 0.7;
    filter: grayscale(0.1);
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.business-logo:hover {
    opacity: 1;
    filter: grayscale(0);
}

/* Social links */
.social {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
    margin-bottom: 5rem;
}

.social a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.social a:hover {
    color: #ffffff;
}

/* Blog section */
.blog {
    margin-bottom: 3rem;
}

h2 {
    font-size: 1.75rem;
    color: #f5f5f5;
    margin-bottom: 2rem;
    font-weight: 600;
}

.blog-post {
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    color: #f5f5f5;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

time {
    display: block;
    font-size: 1.125rem;
    color: #909090;
    margin-bottom: 0.5rem;
}

.blog-post p {
    color: #909090;
    font-size: 1.125rem;
}

/* Footer */
footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #3a3d3e;
}

footer p {
    font-size: 1.125rem;
    color: #909090;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        font-size: 1rem;
        padding: 1.5rem 1rem;
    }

    main {
        max-width: 100%;
    }

    h1 {
        font-size: 1.5rem;
    }

    .bio {
        font-size: 1rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .profile-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .profile-pic {
        width: 80px;
        height: 80px;
    }

    .business-logo {
        height: 80px;
    }

    .social {
        gap: 1.25rem;
    }

    .blog-post p,
    time,
    footer p {
        font-size: 0.95rem;
    }

    header {
        margin-bottom: 3rem;
    }

    .social {
        margin-bottom: 3rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    body {
        font-size: 0.95rem;
        padding: 1rem 0.75rem;
    }

    h1 {
        font-size: 1.35rem;
    }

    .bio {
        font-size: 0.95rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    .profile-pic {
        width: 70px;
        height: 70px;
    }

    .business-logo {
        height: 70px;
    }

    .social {
        gap: 1rem;
    }

    .social svg {
        width: 20px;
        height: 20px;
    }
}
