/* ====== global.css ====== */

/* Base style for all page titles */

body {
font-family: 'Patrick Hand', cursive;
  font-size: 14px;
  margin: 0;
  padding: 0;
  background: #f2f2f2;
  color: #333;
}

p {
  font-size: 18px;
  line-height: 1.6;
  color: #000;
  margin: 10px 0;
}

header {
  background: #8A9A5B;
  color: white;
  padding: 1em 0;
}

.header-container {
  display: grid;
  grid-template-columns: auto 1fr auto; /* logo + title, nav in center */
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
  gap: 5px;
}

.logo-title {
  grid-column: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  height: 50px;
  border-radius: 20%;
  width: auto;
}

.site-title {
  font-family: 'Passions Conflict', cursive;
  font-size: 2.5em;
  margin: 0;
  color: white;
}

.logo-title a {
  color: inherit;        /* Inherits white from .site-title */
  text-decoration: none; /* Removes underline */
}

.main-nav {
  grid-column: 2;
  display: flex;
  justify-content: center;
   margin-top: -2;
}

.main-nav a {
  font-family: 'Unica One', sans-serif;
  font-weight: normal;
  font-size: 1.5em;
  margin: 0 10px;
  color: white;
  text-decoration: none;
}

.main-nav a:hover {
  text-decoration: underline;
}

.center-content {
  grid-column: 2;           /* place nav in the center column */
  display: flex;
  justify-content: center;  /* center nav horizontally in this grid cell */
  align-items: center;      /* center vertically */
}


main {
  padding: 0em;
}

footer {
  font-family: 'Unica One', sans-serif;
   background-color: #8A9A5B;   /* Match site theme */
  color: white;
  text-align: center;
  padding: 1em 0;
  font-size: 14px;
}

footer p {
  color: white;
  font-size: 14px;
  text-decoration: none;
}

.social-icons {
  margin: 10px 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icons img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: transform 0.2s ease;
}

.social-icons a:hover img {
  transform: scale(1.5);
}

