/* ===== Reset / Base ===== */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  background: #f5f5f5;
  color: #111;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ===== Header ===== */
.site-header {
  background: #f5f5f5;
  border-bottom: 1px solid #e5e5e5;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  flex-shrink: 0;
}

.brand-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  line-height: 1.05;
}

.brand-main {
  font-size: 34px;
  font-weight: 800;
  color: #111;
  line-height: 1;
  white-space: nowrap;
}

.brand-sub {
  font-size: 15px;
  font-weight: 500;
  color: #666;
  line-height: 1.2;
  white-space: nowrap;
}

/* Main nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  flex: 1;
}

.main-nav a {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  padding: 8px 10px;
  border-radius: 10px;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.main-nav a:hover {
  background: #ececec;
}

/* Language nav */
.lang-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.lang-nav a {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  padding: 8px 14px;
  border-radius: 14px;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-nav a:hover {
  background: #ececec;
}

.lang-nav a.active {
  background: #e8edf7;
  color: #184f9c;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  background: #ddd;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay .container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title {
  margin: 0 0 14px;
  font-size: 64px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.hero-desc {
  margin: 0 0 26px;
  font-size: 24px;
  color: #fff;
  line-height: 1.5;
  max-width: 760px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.95);
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.btn.primary {
  background: #fff;
  color: #111;
  border-color: #fff;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.95);
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  transition: opacity 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  opacity: 0.92;
}

.btn.primary {
  background: #fff;
  color: #111;
  border-color: #fff;
}

/* ===== Common sections ===== */
.section {
  padding: 70px 16px;
}

.section-title {
  margin: 0 0 14px;
  font-size: 36px;
  font-weight: 800;
  color: #111;
}

.section-desc {
  margin: 0;
  font-size: 18px;
  color: #555;
  line-height: 1.9;
}

/* ===== Footer ===== */
.site-footer {
  margin-top: 60px;
  padding: 30px 0;
  border-top: 1px solid #e5e5e5;
  background: #fafafa;
  text-align: center;
}

.footer-title {
  font-size: 18px;
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
}

.footer-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 6px;
}

.footer-copy {
  font-size: 13px;
  color: #888;
}

/* ===== Cards / page helper ===== */
.page-wrap,
.about-page,
.products-page,
.location-page,
.contact-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 16px 80px;
}

/* ===== Tablet ===== */
@media (max-width: 1024px) {
  .brand-main {
    font-size: 30px;
  }

  .brand-sub {
    font-size: 14px;
  }

  .main-nav a,
  .lang-nav a {
    font-size: 15px;
  }

  .hero {
    height: 460px;
  }

  .hero-title {
    font-size: 52px;
  }

  .hero-desc {
    font-size: 20px;
  }
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 16px 14px;
  }

  .brand {
    width: 100%;
    gap: 12px;
  }

  .brand-logo {
    width: 56px;
    height: 56px;
  }

  .brand-main {
    font-size: 26px;
  }

  .brand-sub {
    font-size: 12px;
  }

  .main-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
    justify-content: start;
  }

  .main-nav a {
    display: block;
    text-align: left;
    font-size: 15px;
    padding: 8px 6px;
  }

  .lang-nav {
    width: 100%;
    justify-content: center;
    gap: 12px;
  }

  .lang-nav a {
    min-width: 60px;
    text-align: center;
    font-size: 15px;
  }

/* ===== HERO SECTION ===== */

.hero{
    position:relative;
    width:100%;
    height:520px;
    overflow:hidden;
}

/* 사진 */

.hero-img{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    top:0;
    left:0;
}

/* 어두운 오버레이 */

.hero-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;

    background:rgba(0,0,0,0.35);

    display:flex;
    align-items:center;
    justify-content:center;
}

/* 텍스트 컨테이너 */

.hero-content{
    text-align:center;
    color:white;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

/* 제목 */

.hero-title{
    font-size:64px;
    font-weight:800;
    margin-bottom:12px;
}

/* 설명 */

.hero-desc{
    font-size:24px;
    margin-bottom:26px;
}

/* 버튼 영역 */

.hero-buttons{
    display:flex;
    gap:14px;
}

/* 버튼 */

.hero-buttons a{
    padding:12px 22px;
    border-radius:12px;
    font-weight:700;
    font-size:16px;
}

/* 흰 버튼 */

.btn-primary{
    background:white;
    color:#111;
}

/* 테두리 버튼 */

.btn-outline{
    border:2px solid white;
    color:white;
}

  .btn {
    font-size: 14px;
    padding: 10px 14px;
  }

  .section {
    padding: 50px 14px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-desc {
    font-size: 16px;
  }

  .page-wrap,
  .about-page,
  .products-page,
  .location-page,
  .contact-page {
    padding: 40px 14px 60px;
  }

justify-content: center;
text-align: center;

}