@import url('colors.css');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Pretendard", "Inter", "Noto Sans KR", Arial, sans-serif;
  color: var(--color-text);
  background: var(--color-cream);
  overflow-x: hidden;
  line-height: 1.65;
  letter-spacing: -0.02em;
}

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

.header {
  position: fixed;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;

  width: calc(100% - 80px);
  max-width: 1180px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 12px 18px 12px 26px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  box-shadow:
    0 22px 60px rgba(17, 24, 39, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.header-logo {
  font-size: 1.18rem;
  font-weight: 900;
  color: var(--color-primary);
  letter-spacing: -0.06em;
}

.header-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu-link {
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(17, 24, 39, 0.72);
  transition: 0.25s ease;
}

.menu-link:hover {
  color: var(--color-primary);
  background: rgba(217, 119, 6, 0.09);
}

section {
  padding: 120px 10%;
  opacity: 0;
  transform: translateY(56px) scale(0.98);
  filter: blur(8px);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.9s ease;
}

section.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

h1 {
  font-size: clamp(3.2rem, 8vw, 6.4rem);
  line-height: 0.98;
  letter-spacing: -0.08em;
  font-weight: 950;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.18;
  letter-spacing: -0.055em;
  margin: 18px 0 22px;
  font-weight: 900;
  color: var(--color-primary);
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
  letter-spacing: -0.04em;
  font-weight: 850;
}

p {
  color: var(--color-sub-text);
  font-weight: 500;
}

.button1 {
  position: relative;
  overflow: hidden;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 14px 26px;
  border-radius: 999px;

  background: linear-gradient(135deg, #FBBF24 0%, #D97706 100%);
  color: #111827;

  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: -0.03em;

  box-shadow:
    0 16px 34px rgba(217, 119, 6, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);

  transition: 0.25s ease;
}

.button1::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  transform: skewX(-20deg);
  transition: 0.65s;
}

.button1:hover {
  transform: translateY(-3px);
  box-shadow:
    0 24px 48px rgba(217, 119, 6, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.button1:hover::before {
  left: 130%;
}

.bg {
  background:
    radial-gradient(circle at 15% 10%, rgba(251, 191, 36, 0.16), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(17, 24, 39, 0.08), transparent 30%),
    var(--color-light-background);
}

footer {
  padding: 44px 20px;
  background:
    radial-gradient(circle at top, rgba(217, 119, 6, 0.14), transparent 32%),
    var(--color-dark-background);
  text-align: center;
}

footer p {
  color: rgba(255, 255, 255, 0.7);
  margin: 5px 0;
  font-size: 0.92rem;
}

.footer-business-info {
  margin-top: 14px;
}

.footer-business-info p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.85rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .header {
    display: none;
  }

  section {
    padding: 70px 16px;
  }

  h1 {
    letter-spacing: -0.065em;
  }

  h2 {
    font-size: 2rem;
  }
}
