/* bname-style.css */
:root {
    --main_white: #f5f5f5;
    --main-color: #00a79d;
    --dock-color: #EBFFFE;
    --main-black: #231f20;
    --sb-ani: 600ms;
    --main-font: "Montserrat", Arial, sans-serif;
}

body, html {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: var(--main-font);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overscroll-behavior-y: none;
    background-image: radial-gradient(circle, #f2f4f8, #f0f2f6, #eef1f4, #edeff2, #ebedf0);
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}

.logo-link {
    position: fixed;
    top: 8px;
    left: 10px;
}

.site-logo {
    height: 50px;
    margin-bottom: 5px;
}

.home-link {
    position: fixed;
    left: 48px;
    top: 56px;
    display: block;
    margin-top: 5px;
    font-size: 16px;
    color: var(--main-black);
    text-decoration: none;
}

.home-link:hover {
    text-decoration: underline;
}

h1 {
    font-family: var(--main-font);
    position: relative;
    font-size: 50px;
    margin-top: 10px;
}

.magnified-image-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 95%;
    margin-top: 20px;
}

.image-container {
    display: flex;
    justify-content: center;
    position: relative;
}

.magnified-image {
    max-width: 20.5em;
    max-height: 70vh;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    object-fit: contain;
}

.social-icons-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
    gap: 10px;
    align-items: center;
    max-width: 19em;
    margin-top: 10px;
}

.social-icons-container a {
    display: inline-block;
    width: 45px;
    height: auto;
}

.social-icons-container img {
    max-width: 100%;
    height: auto;
    transition: transform 0.2s;
}

.social-icons-container img:hover {
    transform: scale(1.1);
}

.hiring-text-container {
    font-size: 15px;
    font-weight: 750;
    border: 1px solid var(--main-color);
    border-radius: 5px;
    padding: 5px 10px;
    background-color: gold;
    margin-bottom: 15px;
    text-align: center;
}

@media (max-width: 700px) {
    h1 {
        font-size: 30px;
    }

    .header-content {
        height: auto;
        width: 100%;
    }

    .site-logo {
        height: 25px;
        top: 4px;
        left: 4px;
    }

    .home-link {
        position: fixed;
        top: 25px;
        left: 12px;
    }
}

@media (max-width: 500px) {
    h1 {
        font-size: 1.6rem;
    }

    .magnified-image-container {
        width: 100%;
        margin-top: 60px;
    }

    .magnified-image {
        width: 95%;
        max-height: 60vh;
    }

    .social-icons-container {
        width: 95%;
    }

    .social-icons-container a {
        width: 40px;
    }

    .site-logo {
        height: 25px;
        top: 4px;
        left: 4px;
    }

    .home-link {
        position: fixed;
        top: 25px;
        left: 10px;
    }
}

@media (max-width: 380px) {
    body, html {
        width: 100%;
    }

    h1 {
        font-size: 7dvw;
    }

    .header-content {
        height: auto;
        width: 100%;
    }

    .site-logo {
        height: 25px;
        top: 5px;
        left: 10px;
    }

    .home-link {
        position: fixed;
        top: 27px;
        left: 17px;
    }

    .magnified-image {
        width: 85%;
        max-height: 50vh;
    }

    .social-icons-container a {
        width: 35px;
    }
}