
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Nunito+Sans:ital,wght@0,400;0,600;1,400&display=swap');


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

html, body {
  width: 100%;
  min-height: 100%;
}


:root {
  --bg:           #fffdf5;
  --surface:      #ffffff;
  --border:       #f0e8c8;
  --text:         #2a2416;
  --muted:        #8a7d5a;
  --accent:       #f5c800;
  --accent-hover: #e8b800;
  --accent-border:#f0d84a;
  --accent-soft:  #fef6c0;
  --radius-pill:  100px;
  --radius-card:  20px;
  --transition:   0.22s ease;
}


body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Nunito Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
}


body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, #d4c88a33 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}


.container {
  position: relative;
  z-index: 1;
  max-width: 740px;
  margin: 0 auto;
  padding: 0 1.75rem;
}


nav {
  padding: 2rem 0 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.nav-status {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.nav-logo {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--text);
  text-decoration: none;
  background: var(--accent);
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--accent-border);
  box-shadow: 0 3px 0 var(--accent-border);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.nav-logo:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 0 var(--accent-border);
}

.nav-status .btn {
  background: var(--surface);
  color: var(--text);
  border: 2px solid var(--border);
  box-shadow: 0 3px 0 var(--border);

}

.nav-status .btn:hover {
  border-color: #ddd0a0;
  transform: translateY(-2px);
  box-shadow: 0 5px 0 var(--border);
}

.status-dot {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #4caf50;
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 #4caf5066; }
  50%       { opacity: 0.6; box-shadow: 0 0 0 5px transparent; }
}

.main {
  padding: 5rem 0 4.5rem;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.main.visible {
  opacity: 1;
  transform: translateY(0);
}

.main h1 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(2.8rem, 9vw, 4.2rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 1.3rem;
  color: var(--text);
}

.main h1 .highlight {
  background: var(--accent);
  border-radius: 10px;
  padding: 0 10px 3px;
  display: inline-block;
  position: relative;
}


.main h1 .highlight::after {
  content: '';
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: -4px;
  height: 3px;
  border-radius: 2px;
}

.main-bio {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.85;
  max-width: 480px;
  margin-bottom: 2.5rem;
  font-weight: 600;
}

.links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}


.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 22px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn.primary {
  background: var(--accent);
  color: var(--text);
  border: 2px solid var(--accent-border);
  box-shadow: 0 3px 0 var(--accent-border);
}

.btn.primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 0 var(--accent-border);
}

.btn.secondary {
  background: var(--surface);
  color: var(--text);
  border: 2px solid var(--border);
  box-shadow: 0 3px 0 var(--border);
}

.btn.secondary:hover {
  border-color: #ddd0a0;
  transform: translateY(-2px);
  box-shadow: 0 5px 0 var(--border);
}


.divider {
  border: none;
  border-top: 1.5px solid var(--border);
  margin: 0.5rem 0 3rem;
}


.section-label {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}


.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  margin-bottom: 4rem;
}

.card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.5rem 1.6rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: default;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px #d4c88a28;
  border-color: var(--accent-border);
}

.card-icon {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.card-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.card-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 600;
}


footer {
  padding: 2rem 0 2.5rem;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  border-top: 1.5px solid var(--border);
}


@media (max-width: 520px) {
  .main {
    padding: 3.5rem 0 3rem;
  }

  .main h1 {
    font-size: 2.5rem;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  nav {
  flex-direction: column;
  align-items: flex-start;
}

.nav-status {
  width: 100%;
}

.nav-status .btn {
  flex: 1;
  justify-content: center;
}
}
