/*
Theme Name: Osmates Portfolio
Theme URI: 
Author: OSMATES
Author URI: 
Description: A custom portfolio theme for Osmates with GSAP animations and a Labo section.
Version: 1.0
Text Domain: osmates
*/

/* Basic Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-bg: #f8f8f8;
    --color-text: #333;
    --color-accent: #000;
    --font-primary: 'Inter', sans-serif;
    --font-jp: 'Noto Sans JP', sans-serif;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-primary), var(--font-jp);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.7;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}