/* A to Zoom — Shared Styles */
:root {
  --purple: #7b2cbf;
  --yellow: #f5c542;
  --orange: #f28322;
  --pink: #e8446d;
  --lilac: #a855c8;
  --green: #2dbf72;
}

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

html, body {
  overflow-x: hidden;
}

body {
  font-family: 'Baloo 2', cursive, sans-serif;
  background: #ffffff;
  color: #333;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

a {
  color: var(--purple);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--pink);
}

/* Navigation */
.site-nav {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem 0.5rem;
  padding: 0.75rem 1rem;
  border-bottom: 3px dashed var(--yellow);
}

.site-nav .nav-logo img {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 0.75rem;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 700;
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--purple);
}

.nav-instagram {
  display: flex;
  align-items: center;
  color: #555;
  transition: color 0.2s;
}

.nav-instagram:hover {
  color: #e1306c;
}

.nav-instagram svg {
  width: 24px;
  height: 24px;
}

/* Decorative dots */
.dots {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
}

.dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.dots span:nth-child(1) { background: var(--yellow); }
.dots span:nth-child(2) { background: var(--orange); }
.dots span:nth-child(3) { background: var(--pink); }
.dots span:nth-child(4) { background: var(--lilac); }
.dots span:nth-child(5) { background: var(--green); }

/* Footer */
.site-footer {
  width: 100%;
  max-width: 600px;
  padding: 1.5rem;
  text-align: center;
  font-size: 0.95rem;
  color: #999;
}
