/* public/atelier.css */
@import url("https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@400;700&family=Inter:wght@300;400;700;900&display=swap");

:root {
  --bg-depth: #050505;
  --accent: #d4af37;
  --header-height: 60px;
  --font-atelier: 'Crimson Pro', serif;
  --font-ui: 'Inter', sans-serif;
}

body {
  background-color: var(--bg-depth);
  color: #e5e5e5;
  font-family: var(--font-ui);
  margin: 0;
  padding-top: var(--header-height); /* 헤더 공간 확보 */
}

h1, h2 {
  font-family: var(--font-atelier);
  color: #fff;
}

a {
  color: var(--accent);
  text-decoration: none;
}

/* --- ATELIER UNIFIED HEADER --- */
.atelier-global-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 10000;
  box-sizing: border-box;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.atelier-header-left {
  flex: 1;
  display: flex;
  align-items: center;
}

.atelier-header-center {
  flex: 2;
  text-align: center;
  font-family: var(--font-atelier);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  text-transform: uppercase;
}

.atelier-header-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.atelier-back-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: all 0.3s ease;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.atelier-back-link:hover {
  color: #fff;
  transform: translateX(-3px);
}

.atelier-status-mark {
  width: 8px;
  height: 8px;
  background-color: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
  animation: atelier-pulse 2s infinite ease-in-out;
}

@keyframes atelier-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 40px 20px;
  margin-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-links a {
  color: #666;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: var(--accent);
}
