/**
 * Theme Name: Zenya Advisors
 * Author: min
 * Description: zenya homepage theme
 * Version: 1.0
 * Text Domain: zenya
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+KR:wght@100..900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.lang-en {
    font-family: 'Inter', sans-serif;
}

.lang-ko {
    font-family: 'Noto Sans KR', sans-serif;
}

html {
    scroll-behavior: smooth;
}

html[lang="ko-KR"] body {
    font-family: 'Noto Sans KR', sans-serif;
}

html[lang="en-US"] body {
    font-family: 'Inter', sans-serif;
}

body {
    min-height: 100vh;
    color: var(--wp--preset--color--label);
    -webkit-font-smoothing: antialiased;
}

.zenya-header {
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

@supports not (backdrop-filter: blur(10px)) {
    .zenya-header {
        background-color: white;
    }
}

.section-title {
    font-size: var(--wp--preset--font-size--x-large);
    font-weight: 400;
}

.section-description {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--wp--preset--color--label-secondary);
    font-weight: 300;
}

@keyframes bounce {
    from {
        background-color: white;
    }

    to {
        background-color: rgb(224, 224, 224);
    }
}