@charset "UTF-8";
/* ============================================
   SHAMMAH Global Stylesheet
   Design System:
     Primary: #FF6B6B | Dark: #1A1A1A | Gray: #F5F5F5
     Text: #333 | Sub: #999
     Font: Europa (EN) + Noto Sans KR / Noto Serif KR (KO)
     Max-width: 1200px | GNB: 60px sticky
   ============================================ */
@font-face {
  font-family: "Europa";
  src: url("../fonts/europa-light-webfont.eot");
  src: url("../fonts/europa-light-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/europa-light-webfont.woff2") format("woff2"), url("../fonts/europa-light-webfont.woff") format("woff"), url("../fonts/europa-light-webfont.ttf") format("truetype"), url("../fonts/europa-light-webfont.svg#europa") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Europa";
  src: url("../fonts/europa-regular-webfont.eot");
  src: url("../fonts/europa-regular-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/europa-regular-webfont.woff2") format("woff2"), url("../fonts/europa-regular-webfont.woff") format("woff"), url("../fonts/europa-regular-webfont.ttf") format("truetype"), url("../fonts/europa-regular-webfont.svg#europa") format("svg");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Europa";
  src: url("../fonts/europa-bold-webfont.eot");
  src: url("../fonts/europa-bold-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/europa-bold-webfont.woff2") format("woff2"), url("../fonts/europa-bold-webfont.woff") format("woff"), url("../fonts/europa-bold-webfont.ttf") format("truetype"), url("../fonts/europa-bold-webfont.svg#europa") format("svg");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Europa", "Noto Sans KR", sans-serif;
  color: #333;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

/* ============================================
   Typography – 전체 문서 기본 타이포그래피
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Europa", "Noto Sans KR", sans-serif;
  color: #1A1A1A;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 26px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 17px;
}

h6 {
  font-size: 14px;
}

p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

small {
  font-size: 13px;
  color: #999;
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

/* ============================================
   Common Layout – 공통 레이아웃
   ============================================ */
.container {
  padding: 120px 0;
}
.container--narrow {
  max-width: 720px;
}
.container header {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.container header h3 {
  font-size: 60px;
  font-weight: 700;
  line-height: 80px;
  color: #1A1A1A;
}
.container header h3 span {
  font-weight: 300;
}
.container header p {
  font-size: 14px;
  line-height: 20px;
  color: #999;
}
.container section {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 40px;
}
.container section p {
  font-family: "Noto Serif KR";
  font-size: 16px;
  line-height: 24px;
}
.container section li {
  font-family: "Noto Sans KR";
  font-size: 16px;
  line-height: 24px;
}
.container footer {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 20px;
}
.container footer p {
  padding: 20px 0;
  text-align: center;
  font-size: 16px;
  line-height: 20px;
  color: #999;
  border-top: 1px solid #CCC;
}

.main {
  min-height: calc(100vh - 60px);
}

.empty {
  text-align: center;
  color: #999;
  padding: 40px 0;
  font-size: 15px;
}

.section__more {
  text-align: center;
  margin-top: 40px;
}

.bg-dark {
  background: #1A1A1A;
}
.bg-dark .container > header > h3 {
  color: #fff;
}
.bg-dark .container > header > p {
  color: rgba(255, 255, 255, 0.6);
}

.bg-gray {
  background: #F5F5F5;
}

.bg-primary {
  background: #FF6B6B;
  color: #fff;
  text-align: center;
}
.bg-primary .container {
  padding: 120px 0;
}
.bg-primary h3 {
  font-size: 26px;
}
.bg-primary p {
  font-size: 16px;
  opacity: 0.9;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #000;
  backdrop-filter: blur(8px);
  transition: background 0.3s, box-shadow 0.3s;
  padding: 10px 0;
  color: #fff;
}
.site-header.scrolled {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  color: #000;
}
.site-header-inner {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header h1.logo {
  font-size: 18px;
  line-height: 40px;
  font-weight: 900;
  color: inherit;
}
.site-header h1.logo span {
  font-weight: 300;
}
.site-header .gnb__menu {
  display: flex;
  gap: 32px;
}
.site-header .gnb__menu li {
  font-size: 16px;
  font-weight: 500;
  padding: 4px 0;
  transition: color 0.2s;
  position: relative;
}
.site-header .gnb__menu li:hover, .site-header .gnb__menu li.active {
  color: #FF6B6B;
}
.site-header .gnb__menu li.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: #FF6B6B;
  border-radius: 1px;
}
.site-header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.site-header__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.site-header__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header__hamburger.open span:nth-child(2) {
  opacity: 0;
}
.site-header__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 767px) {
  .site-header__hamburger {
    display: flex;
  }
  .site-header .gnb {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #111;
    padding: 8px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }
  .site-header .gnb.open {
    display: block;
  }
  .site-header .gnb__menu {
    flex-direction: column;
    gap: 0;
  }
  .site-header .gnb__menu li {
    padding: 0;
  }
  .site-header .gnb__menu li a {
    display: block;
    padding: 14px 24px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
  }
  .site-header .gnb__menu li a:hover, .site-header .gnb__menu li a.active {
    color: #FF6B6B;
    background: rgba(255, 255, 255, 0.05);
  }
  .site-header .gnb__menu li.active::after {
    display: none;
  }
  .site-header.scrolled .gnb {
    background: #fff;
  }
  .site-header.scrolled .gnb__menu li a {
    color: #333;
  }
  .site-header.scrolled .gnb__menu li a:hover, .site-header.scrolled .gnb__menu li a.active {
    color: #FF6B6B;
    background: #F5F5F5;
  }
}

.hero {
  background-color: #000;
  height: 480px;
  padding-bottom: 40px;
}
.hero__inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero__image {
  width: 100%;
}
.hero__image_box {
  width: calc((100vw - 1200px) / 2 + 100%);
  min-width: 100%;
  height: 520px;
  background-color: #ccc;
  overflow: hidden;
  position: relative;
}
.hero__image_box::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
}
.hero__image_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__text_title {
  font-size: 36px;
  font-weight: 700;
  line-height: 80px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}
.hero__text_sub {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
  line-height: 40px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}
.hero__text_cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

@media (max-width: 1199px) {
  .hero {
    height: 400px;
  }
  .hero__image_box {
    height: 440px;
  }
  .hero__text_title {
    font-size: 28px;
    line-height: 60px;
  }
  .hero__text_sub {
    font-size: 17px;
    line-height: 32px;
  }
}
@media (max-width: 767px) {
  .hero {
    height: 300px;
    padding-bottom: 0;
  }
  .hero__image_box {
    width: 100%;
    height: 300px;
  }
  .hero__text_title {
    font-size: 22px;
    line-height: 40px;
  }
  .hero__text_sub {
    font-size: 14px;
    line-height: 26px;
  }
  .hero__text_cta {
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
  }
}
.btn {
  display: inline-block;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: all 0.2s;
  text-align: center;
  background: #F5F5F5;
  color: #333;
}
.btn:hover {
  background: #e8e8e8;
}
.btn--primary {
  background: #FF6B6B;
  color: #fff;
  border-color: #FF6B6B;
}
.btn--primary:hover {
  background: #e85c5c;
}
.btn--outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.15);
}
.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}
.btn--lg {
  padding: 14px 36px;
  font-size: 16px;
}
.btn--sm {
  padding: 6px 14px;
  font-size: 13px;
}
.btn--full {
  width: 100%;
}
.btn--danger {
  background: #e74c3c;
  color: #fff;
  border-color: #e74c3c;
}
.btn--danger:hover {
  background: #c0392b;
}

.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.card__thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #F5F5F5;
}
.card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s;
}
.card:hover .card__thumb img {
  transform: scale(1.05);
}
.card__thumb-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #eee, #ddd);
}
.card__info {
  padding: 20px;
}
.card__category {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #FF6B6B;
  background: rgba(255, 107, 107, 0.08);
  padding: 3px 10px;
  border-radius: 20px;
}
.card__title {
  font-size: 17px;
  font-weight: 600;
  margin-top: 8px;
  color: #1A1A1A;
}
.card__desc {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-top: 6px;
}
.card__link {
  font-size: 14px;
  color: #FF6B6B;
  font-weight: 500;
  margin-top: 8px;
}
.card__link:hover {
  text-decoration: underline;
}
.card__meta {
  font-size: 13px;
  color: #999;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.alert {
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 14px;
  margin-top: 24px;
}
.alert--success {
  background: #e8f8f0;
  color: #1a7a4c;
  border: 1px solid #b8e6d0;
}
.alert--error {
  background: #fdf0ef;
  color: #c0392b;
  border: 1px solid #f5c6cb;
}
.alert--error ul {
  margin: 0;
  padding-left: 18px;
  list-style: disc;
}
.alert--error li + li {
  margin-top: 2px;
}

.sitemap {
  background-color: #999;
  padding: 40px 0;
}
.sitemap-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.sitemap-layout {
  display: flex;
}
.sitemap__block {
  width: 20%;
  padding-left: 40px;
}
.sitemap__block h5 {
  font-size: 16px;
  line-height: 30px;
  color: #666;
}
.sitemap__block ul li {
  font-size: 16px;
  line-height: 30px;
  color: #666;
}

.site-footer {
  background: #1A1A1A;
  color: rgba(255, 255, 255, 0.7);
  padding: 20px 0;
}
.site-footer .logo {
  color: #fff;
  font-size: 18px;
  text-align: center;
}
.site-footer .logo span {
  font-weight: 300;
}
.site-footer .logo img {
  display: inline;
}
.site-footer .footer {
  max-width: 1200px;
  margin: 0 auto;
}
.site-footer .footer__info {
  font-size: 13px;
  line-height: 1.8;
  font-style: normal;
  text-align: center;
  margin-top: 20px;
}
.site-footer .footer__info strong {
  color: #fff;
  font-weight: 600;
}
.site-footer .footer__copy {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 8px 24px;
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 1199px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .gnb__hamburger {
    display: flex;
  }
  .gnb__nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 16px 0;
  }
  .gnb__nav.open {
    display: block;
  }
  .gnb__menu {
    flex-direction: column;
    gap: 0;
  }
  .gnb__menu a {
    display: block;
    padding: 12px 24px;
    font-size: 16px;
  }
  .gnb__menu a.active::after {
    display: none;
  }
  .gnb__admin-btn {
    display: none;
  }
  .hero {
    min-height: 320px;
  }
  .hero__title {
    font-size: 29px;
  }
  .hero--sub {
    min-height: 200px;
  }
  .container {
    padding: 48px 0;
  }
  .container > header > h3 {
    font-size: 22px;
  }
  .container > section {
    margin-top: 32px;
  }
  .container > footer {
    display: none;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .sitemap {
    display: none;
  }
  .footer__nav ul {
    flex-direction: column;
    gap: 8px;
  }
}

/*# sourceMappingURL=style.css.map */
