@font-face {
    font-family: 'Open Sans';
    src: url('OpenSans-VariableFont_wdth\,wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'MyFont';
    src: url('OpenSans-Italic-VariableFont_wdth\,wght.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

body {
    margin: 0;
    font-family: "Open Sans", sans-serif;
    overflow-x: hidden;
    background-color:#000;
}

#blank {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 100;
    animation: fadeOutBlur 1.8s forwards;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
}

@keyframes fadeOutBlur {
    0% {
        opacity: 1;
        -webkit-backdrop-filter: blur(15px);
        backdrop-filter: blur(15px);
    }
    100% {
        opacity: 0;
        visibility: hidden;
        -webkit-backdrop-filter: blur(0);
        backdrop-filter: blur(0);
    }
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    color: #fff;
    z-index: 20;
    margin-right: 30px;
}

.logo img {
    height: auto;
    width: auto;
}

.menu-toggle {
    cursor: pointer;
    font-size: 1.2em;
    margin-left: auto;
    margin-right: 30px;
    background: hsla(0, 0%, 50%, 0.4);
    border: none;
    padding: 15px;
    border-radius: 8px;
    -webkit-backdrop-filter: blur(15px) !important;
    backdrop-filter: blur(15px) !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    color: #fff;
    z-index: 49;
}

#sideMenu {
    position: absolute;
    right: -250px;
    top: 0;
    width: 250px;
    max-height: 100vh;
    -webkit-backdrop-filter: blur(15px) !important;
    backdrop-filter: blur(15px) !important;
    background-color: rgba(15, 15, 15, 0.95);
    box-shadow: -8px 0px 8px hsla(0, 0%, 0%, 0.4);
    color: #fff;
    z-index: 50;
    transition: right 0.5s ease-in-out;
    padding-top: 40px;
    padding-right: 30px;
    overflow-y: auto;
}

#sideMenu ul {
    position: relative;
    list-style-type: none;
    padding: 20px;
    top: -10px;
}

#sideMenu ul li {
    margin: 20px 0;
}

#sideMenu ul li a {
    color: #bbb;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease, background-color 0.3s ease;
}

#sideMenu ul li a:hover {
    color: #fff;
}

#sideMenu ul li a:active {
    color: #ddd;
}

.hr {
    position: relative;
    border: 1px solid #fff; 
    width: 75%;            
    margin: 5px auto; 
    left: -30px;
}

a {
    text-decoration: none;
}

em {
    position: relative;
    bottom: 25px;
}

.section {
    padding: 50px 0;
    text-align: center;
    color: #fff;
    background-color: #1a1a1a;
    padding-top: 100px;
}

.section a {
    color: #adadb8;
}

.section p.others {
    padding: 2em;
}

.title {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ddd;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.category {
    background-color: #333;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.category button{
    margin: 3px !important;
}

.category h3 {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ddd;
}

.category p {
    font-size: 0.9em;
    color: #aaa;
    margin-bottom: 20px;
}

.category button {
    padding: 10px 20px;
    font-size: 0.9em;
    font-weight: 600;
    color: #ddd;
    background-color: transparent;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.category button:hover {
    background-color: #ddd;
    color: #333;
}

.header-photo {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    margin-bottom: 20px;
}

.site-footer {
    background-color: #111;
    color: #aaa;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
    border-top: 1px solid #333;
}

.site-footer .footer-content p {
    margin: 0;
    padding-bottom: 10px;
    font-size: 0.9em;
    color: #888;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    color: #888;
}

.footer-nav a {
    color: #888;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.footer-nav a:hover {
    color: #fff;
}

.footer-nav a:active {
    color: #ddd;
}

.footer-nav span {
    font-weight: 400;
}

.footer-content img {
    height: auto;
    width: auto;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 100;
}

#overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ver. 3.0 */
/* © Michael Rivera (Peeps40836) | 2024. All rights reserved, unless otherwise noted. */