/* Custom Fonts */
@font-face {
    font-family: 'Open Sans Hebrew Condensed';
    src: url('../fonts/OpenSansHebrewCondensed-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #7dcbec;
    --primary-dark: #18afd3;
    --primary-gradient: linear-gradient(to right, #7dcbec, #30b7d7);
    --text-dark: #333333;
    --text-gray: #777777;
    --white: #ffffff;
    --bg-light: rgba(222, 222, 222, 0.36);
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Japanese font */
html[lang="ja"] body {
    font-family: 'Noto Sans JP', sans-serif;
}

.page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Section Title (공통) */
.section-title {
    padding: 40px 40px 20px;
    text-align: right;
}

.section-title h2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 40px;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.8px;
}

.section-title p {
    font-size: 14px;
    font-weight: 300;
    color: var(--white);
    letter-spacing: -0.56px;
}

/* Hide br on mobile */
@media screen and (max-width: 768px) {
    br.hide-mobile {
        display: none;
    }
}

/* Responsive - Common */
@media screen and (max-width: 1240px) {
    .page-wrapper {
        padding: 10px 20px;
    }
}

@media screen and (max-width: 768px) {
    .page-wrapper {
        padding: 10px 15px;
        gap: 20px;
    }

    .section-title h2 {
        font-size: 32px;
    }
}

@media screen and (max-width: 480px) {
    .section-title h2 {
        font-size: 28px;
    }

    .section-title p {
        font-size: 12px;
    }
}
