/* ============================================
   shared.css — SaturnArtsStudio
   Linked by every page. Edit once, updates all.
   ============================================ */

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

body {
  font-family: Georgia, 'Times New Roman', Times, serif;
  margin: 0;
  padding: 0;
  color: #222;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 48px;
  border-bottom: 1px solid #C1440E;
  width: 100%;
}

.nav-name {
  font-size: 1.1rem;
  color: black;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: black;
  text-decoration: none;
  font-size: 0.95rem;
  white-space: nowrap;
}

.nav-links a:hover {
  color: #FF4500;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 24px;
  border-top: 1px solid #C1440E;
  font-size: 0.85rem;
  color: black;
  margin-top: 40px;
}

/* MOBILE */
@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px;
    gap: 12px;
  }

  .nav-links {
    gap: 16px;
    flex-wrap: wrap;
  }

  .nav-links a {
    font-size: 0.9rem;
  }
}
