/* ============================================
   Monik Font
   ============================================ */
@font-face {
    font-family: 'Monik';
    src: url('../fonts/Monik-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Monik';
    src: url('../fonts/Monik-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Monik';
    src: url('../fonts/Monik-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Monik';
    src: url('../fonts/Monik-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}


/* ============================================
   Source Han Serif KR (전역에서 필요 시 사용)
   ============================================ */
@font-face {
    font-family: 'SourceHanSerifKR';
    src: url('../fonts/SourceHanSerifKR-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'SourceHanSerifKR';
    src: url('../fonts/SourceHanSerifKR-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'SourceHanSerifKR';
    src: url('../fonts/SourceHanSerifKR-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
/* ============================================
   CSS Reset & Base Styles
   ============================================ */

   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    overflow-x: hidden;
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Monik', 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden !important;
    scroll-behavior: smooth;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
}

img {
    max-width: 100%;
    vertical-align: top;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

em, address, del {
    font-style: normal;
}

.aboreto {
    
}

/* ============================================
   upBtn - Hover slide-up animation
   ============================================ */
.upBtn {
  overflow: hidden;
  position: relative;
}
.upBtn span {
  display: block;
  transition: 0.4s;
}
.upBtn span:nth-of-type(1) {
  transform: translateY(0);
}
.upBtn span:nth-of-type(2) {
  position: absolute;
  top: 0;
  transform: translateY(200%);
}
a:hover .upBtn span:nth-of-type(1) {
  transform: translateY(-200%);
}
a:hover .upBtn span:nth-of-type(2) {
  transform: translateY(0);
}

/* ============================================
   Font Face
   ============================================ */
@font-face {
    font-family: 'SUIT';
    src: url('https://cdn.jsdelivr.net/gh/sun-typeface/SUIT/fonts/static/woff2/SUIT-Thin.woff2') format('woff2');
    font-weight: 100;
    font-display: swap;
}

@font-face {
    font-family: 'SUIT';
    src: url('https://cdn.jsdelivr.net/gh/sun-typeface/SUIT/fonts/static/woff2/SUIT-Light.woff2') format('woff2');
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'SUIT';
    src: url('https://cdn.jsdelivr.net/gh/sun-typeface/SUIT/fonts/static/woff2/SUIT-Regular.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'SUIT';
    src: url('https://cdn.jsdelivr.net/gh/sun-typeface/SUIT/fonts/static/woff2/SUIT-Medium.woff2') format('woff2');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'SUIT';
    src: url('https://cdn.jsdelivr.net/gh/sun-typeface/SUIT/fonts/static/woff2/SUIT-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'SUIT';
    src: url('https://cdn.jsdelivr.net/gh/sun-typeface/SUIT/fonts/static/woff2/SUIT-Bold.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
}

/* ============================================
   CSS Variables
   ============================================ */

:root {
    --color-primary: #710014;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-gray-light: #f5f5f5;
    --color-gray: #d0cfcc;
    --color-gray-dark: #333333;
    --color-text: #ffffff;
    --color-bg: #000000;
    --color-bg-gnb: #fffcf7;
    
    --font-primary: 'Pretendard', sans-serif;
    --font-secondary: 'Monik', sans-serif;
    
    --transition: 0.3s ease;
    
    --z-header: 10000;
    --z-gnb: 9999;
    --z-modal: 1000;
    --z-dropdown: 100;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}

.inners {
    margin: 0 auto;
    width: 100%;
    padding: 0 80px;
}

/* ============================================
   Display Utilities (pc-cont / m-cont)
   ============================================ */
/* Default: PC 보임, Mobile 숨김 */
.pc-cont-1280 { display: block; }
.m-cont-1280 { display: none; }
.pc-cont-1024 { display: block; }
.m-cont-1024 { display: none; }
.pc-cont-960 { display: inline; }
.m-cont-960 { display: none; }
.pc-cont-480 { display: inline; }
.m-cont-480 { display: none; }

@media (max-width: 1280px) {
  .pc-cont-1280 { display: none; }
  .m-cont-1280 { display: block; }
}

@media (max-width: 1024px) {
  .pc-cont-1024 { display: none; }
  .m-cont-1024 { display: block; }
}

@media (max-width: 960px) {
  .pc-cont-960 { display: none; }
  .m-cont-960 { display: inline; }
}

@media (max-width: 480px) {
  .pc-cont-480 { display: none; }
  .m-cont-480 { display: inline; }
}

@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

