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

:root {
  --black: #0d0d0d;
  --white: #ffffff;
  --gray: #1a1a1a;
  --gold: #c8a961;
  --transition: all 0.4s ease;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--white);
  background: var(--black);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: var(--black);
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 60px;
  display: flex;
  align-items: center;
  position: relative; /* 기준점 */
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--white);
}

/* ✅ 메뉴 중앙 고정 */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-menu a {
  text-decoration: none;
  color: var(--white);
  font-size: 0.95rem;
  transition: var(--transition);
}
.nav-menu a:hover { color: var(--gold); }

/* ✅ 오른쪽 고정 (왼쪽으로 안 밀리게 수정) */
.nav-right {
  position: absolute;
  right: 60px; /* 화면 오른쪽 여백 동일하게 */
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-btn {
  text-decoration: none;
  color: var(--white);
  border: 1px solid var(--white);
  padding: 8px 18px;
  transition: var(--transition);
}
.nav-btn:hover { background: var(--gold); color: var(--black); }

.language-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}
.language-switch button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  font-family: inherit;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}
.language-switch button:hover { color: var(--gold); }
.language-switch button.active { color: var(--gold); font-weight: 600; }

/* ✅ 반응형 (모바일에서는 좌우 정렬로 돌아감) */
@media (max-width: 900px) {
  .nav-menu {
    position: static;
    transform: none;
    justify-content: center;
  }
  .nav-right {
    position: static;
    transform: none;
  }
}

/* ===== HERO ===== */
.about-hero {
  padding: 160px 60px 100px;
  background: var(--black);
  text-align: left;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.about-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 25px;
}

.about-hero p {
  color: #ccc;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ===== ABOUT CONTENT ===== */
.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  padding: 100px 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.content-left {
  flex: 1.5;
  min-width: 350px;
}

.content-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 25px;
}

.content-left p {
  margin-bottom: 25px;
  color: #ccc;
  font-size: 1rem;
}

.content-right {
  flex: 1;
  min-width: 300px;
}

.info-section {
  margin-bottom: 40px;
}

.info-section h3 {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 6px;
}

.info-section ul {
  list-style: none;
  color: #ccc;
}

.info-section li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

/* ===== GALLERY ===== */
.about-gallery {
  padding: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-grid img:hover {
  transform: scale(1.03);
  opacity: 0.9;
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 40px 20px;
  color: #777;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
