﻿@import url('https://fonts.googleapis.com/css2?display=swap&family=IBM+Plex+Sans:ital,wght@0,200;0,500;0,600;1,200;1,500;1,600');

/* --- Reset & Defaults --- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
    -webkit-text-size-adjust: none;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

/* --- Core Structure & Background --- */
:root {
    --background-height: 100vh;
    --site-language-alignment: left;
    --site-language-direction: ltr;
    --site-language-flex-alignment: flex-start;
    --site-language-indent-left: 1;
    --site-language-indent-right: 0;
    --viewport-height: 100vh;
}

html {
    font-size: 16pt;
}

body {
    line-height: 1.0;
    min-height: var(--viewport-height);
    min-width: 320px;
    overflow-x: hidden;
    word-wrap: break-word;
    color: #FFFFFF;
}

/* Original Background with Animation Support */
body:before {
    content: '';
    display: block;
    background-attachment: scroll;
    height: var(--background-height);
    left: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    transform: scale(1);
    width: 100vw;
    z-index: 0;
    /* Fixed path: ../images/bg.jpg to go up from css/ to assets/ then down to images/ */
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%20512%20512%22%20width%3D%22512%22%20height%3D%22512%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%3Cfilter%20id%3D%22noise%22%3E%20%3CfeTurbulence%20type%3D%22fractalNoise%22%20baseFrequency%3D%220.875%22%20result%3D%22noise%22%20%2F%3E%20%3CfeColorMatrix%20type%3D%22matrix%22%20values%3D%220%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200%200.23828125%200%22%20%2F%3E%20%3C%2Ffilter%3E%20%3Crect%20filter%3D%22url%28%23noise%29%22%20x%3D%220%22%20y%3D%220%22%20width%3D%22512%22%20height%3D%22512%22%20fill%3D%22transparent%22%20opacity%3D%221%22%20%2F%3E%3C%2Fsvg%3E'), linear-gradient(45deg, rgba(36, 66, 79, 0.729) 0%, rgba(0, 0, 0, 0.38) 100%), url('../images/bg.jpg?v=f56fc95f');
    background-size: 512px, cover, cover;
    background-position: center, 0% 0%, center;
    background-repeat: repeat, repeat, repeat;
    background-color: #FFFFFF;
}

body:after {
    background-color: #000000;
    content: '';
    display: block;
    height: 100%;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    transform: scale(1);
    transition: opacity 1.75s ease-in-out 1s, visibility 1.75s 1s;
    visibility: hidden;
    width: 100%;
    z-index: 1;
}

body.is-loading:after {
    opacity: 1;
    visibility: visible;
}

/* --- Wrapper & Main --- */
#wrapper {
    -webkit-overflow-scrolling: touch;
    align-items: center;
    /* Centered */
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: var(--viewport-height);
    overflow: hidden;
    position: relative;
    z-index: 2;
    padding: 0 2.25rem;
}

#main {
    --alignment: center;
    --flex-alignment: center;
    align-items: center;
    display: flex;
    flex-grow: 1;
    /* Allow main to fill space */
    flex-shrink: 0;
    justify-content: center;
    max-width: 100%;
    position: relative;
    text-align: var(--alignment);
    z-index: 1;
    background-color: transparent;
    transition: opacity 1.25s ease 0.125s, transform 1.25s ease 0.125s;
}

body.is-loading #main {
    opacity: 0;
    transform: translateY(1.6875rem);
}

#main>.inner {
    --padding-horizontal: 3rem;
    --padding-vertical: 3rem;
    --spacing: 0.75rem;
    --width: 52rem;
    /* Keep original width constraint */
    border-radius: 0;
    max-width: 100%;
    position: relative;
    width: var(--width);
    z-index: 1;
    padding: var(--padding-vertical) var(--padding-horizontal);
}

/* --- Layout: Column vs Row --- */
#container01 .wrapper .inner {
    display: flex;
    flex-direction: row;
    /* Force row layout */
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    /* Wrap on small screens */
}

/* Image Styles */
.image {
    display: block;
    line-height: 0;
    max-width: 100%;
    position: relative;
}

#image01 .frame {
    display: block;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    /* Circle */
    border: 6px solid #FFFFFF;
    overflow: hidden;
    transition: none;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    /* New subtle shadow */
}

#image01 .frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 !important;
}

/* Text & Typography */
h1#text02 {
    color: #FFFFFF;
    font-family: 'IBM Plex Sans', sans-serif;
    letter-spacing: -0.075rem;
    width: 100%;
    font-size: 3.5em;
    /* Adjusted slightly */
    line-height: 1;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: left;
    /* Ensure left alignment */
}

p#text01 {
    color: #FFFFFF;
    font-family: 'IBM Plex Sans', sans-serif;
    letter-spacing: -0.025rem;
    width: 100%;
    font-size: 1.25em;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.8;
    text-align: left;
    /* Ensure left alignment */
}

p#text03 {
    text-align: left;
    /* Align text left in the info block */
    color: #FFFFFF;
    font-family: 'IBM Plex Sans', sans-serif;
    letter-spacing: -0.025rem;
    width: 100%;
    font-size: 1em;
    line-height: 1.5;
    font-weight: 200;
    margin-bottom: 1.5rem;
}

p#text03 a {
    color: inherit;
    text-decoration: underline;
    opacity: 0.7;
}

p#text03 a:hover {
    text-decoration: none;
    opacity: 1;
}

/* Icons */
.icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    /* Left align */
    letter-spacing: 0;
    padding: 0;
    gap: 1rem;
}

#icons01 li a {
    border-radius: 100%;
    height: 3em;
    /* Slightly larger targets */
    width: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #81EBB2;
    /* Original Green */
    transition: transform 0.25s ease, background-color 0.25s ease;
}

#icons01 li a svg {
    height: 60%;
    width: 60%;
    display: block;
    fill: rgba(0, 0, 0, 0.651);
    /* Original Icon Color */
    transition: fill 0.25s ease;
}

#icons01 li a:hover {
    background-color: #C2FFD7;
    transform: translateY(-4px);
}

.label {
    display: none;
}

/* Footer */
#footer {
    width: 100%;
    text-align: center;
    padding: 1.5rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    font-family: 'IBM Plex Sans', sans-serif;
    position: relative;
    margin-top: auto;
}

/* Responsive */
@media (max-width: 768px) {
    #container01 .wrapper .inner {
        flex-direction: column;
        text-align: center;
    }

    #main>.inner {
        --padding-horizontal: 1.5rem;
    }

    #image01 .frame {
        width: 160px;
        height: 160px;
    }

    .icons {
        justify-content: center;
    }

    p#text03 {
        text-align: center;
    }

    /* Force center alignment for Name and Title on mobile */
    h1#text02,
    p#text01 {
        text-align: center;
    }
}