/* Root variables (assume these exist in your project) */
@import "./main.css";

.page-wrapper {
  display: flex;
  overflow: hidden;
  position: relative;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  background: var(--brand-yellow);
  font-family: var(--font-display);
}

.decor-circle {
  position: absolute;
  top: 25%;
  left: -5rem;
  width: 10rem;
  height: 10rem;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}

.decor-circle-hand-drawn {
  position: absolute;
  right: 0;
  bottom: 2.5rem;
  width: 16rem;
  height: 16rem;
  color: var(--text-barely-visible);
}

.content-area {
  display: flex;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  flex-direction: column;
  flex: 1 1 0%;
  justify-content: space-between;
}

.index-main {
  display: flex;
  flex: 1 1 0%;
  justify-content: center;
  align-items: center;
}

/* Header */
.index-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  white-space: nowrap;
  z-index: 50;
}

.brand a {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--brand-black);
  text-decoration: none;
}

.hire-link {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  padding: 0 20px;
  border: none;
  outline: none;
  text-decoration: none;
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  background: var(--brand-black);
  color: var(--brand-yellow);
  font-weight: bold;
  border-radius: 999px;
}

/* Navigation */
.nav {
  width: 100%;
  max-width: 56rem;
}

.nav ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-decoration: none;
  color: var(--text-black);
  transition: opacity 0.3s;
}

.nav-left {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav-index {
  font-size: 1rem;
  color: var(--text-muted);
}

.nav-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.nav-icon {
  opacity: 0;
  font-size: clamp(2.5rem, 4vw, 4rem);
  transition: opacity 0.3s ease;
  color: rgba(0, 0, 0, 0.5);
}

.nav-link:hover .nav-icon {
  opacity: 1;
}

/* Footer */
.footer {
  margin-top: auto;
  padding-top: 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;

  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-icons {
  display: flex;
  gap: 1rem;
}

.footer-icons a {
  color: var(--text-muted);
  transition: color 0.2s;
  text-decoration: none;
  z-index: 10;
}

.footer-icons a:hover {
  color: var(--text-black);
}

@media (min-width: 640px) {
  .content-area {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .content-area {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
@media (min-width: 1024px) {
  .content-area {
    padding-left: 10rem;
    padding-right: 10rem;
  }
}
