/* style.css - Basic starter CSS */
html, body, main{
    min-height: 100svh !important;
}
body {
    font-family: Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    --background-color: #f8f9fa;
    background: #f8f9fa;
    --foreground-color: #222;
    color: #222;
    --accent-color: #0077cc;
}
.logoicon {
    border-radius: 50%;
}
h1 {
    color: var(--accent-color);
    margin-top: 2rem;
    text-align: left;
}
p {
    text-align: left;
    margin-top: 1rem;
}


main {
    min-width: 100%;
    padding: min(2vw, 10rem);
    display: flex;
    flex-direction: column;
    gap: min(4vw, 20rem);
    box-sizing: border-box;
}
.media-frame,.content-frame{
}
.media-frame{
    width: 100%;
    min-height: 50dvh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.content-frame{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 600px) {
    main{
        flex-direction: row;
        min-height: 100%;
    }
    .content-frame {
        justify-content: center;
        align-items: flex-start;
    }
}

.media-frame{
    position: relative;
    overflow: hidden;
    background-color: silver;
    border-radius: 6px;
}
.media-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.media-frame p{
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 0.5rem;
    font-size: 0.75rem;
    margin:0;
    text-align: center;
    border-radius: 3px;
}
.media-frame a{
    color: white;
    text-decoration: none;
}
.media-frame a:hover{
    color: white;
    text-decoration: underline;
}

.content-frame p{
    margin: 0;
}

.social-icons{
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.social-icons a {
    text-decoration: none;
    color: inherit;
    font-size: 1.5rem;
}
.social-icons a img{
    width: 40px;
    height: 40px;
    transform: scale(1);
    transition: transform 0.3s ease-in-out;
}
.social-icons a:hover img {
    transform: scale(1.1);
}



.content-frame a.underline{
    --link-color: vaR(--accent-color);
}

.content-frame .underline {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: var(--link-color, #0077cc);
    background: none;
}
.content-frame .underline span {
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}
.content-frame .underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0%;
    height: 2px;
    background: var(--link-color, #0077cc);
    border-radius: 2px;
    z-index: 0;
    transition: width 0.5s cubic-bezier(0.4,0,0.2,1);
    opacity: 1;
}
.content-frame .underline:hover::after {
    width: 100%;
}

.content-frame .link-bar{
    --line-width: 2px;
    --line-color: var(--accent-color);
    display: flex;
    gap: calc(var(--line-width) + 2rem);
}
.content-frame .link-bar a:not(:first-of-type)::before{
    content: "";
    background-color: var(--line-color);
    width: var(--line-width);
    height: calc(10px + 100%);
    top: -5px;
    margin-left: -1rem;
    position: absolute;
    display: block;
}