/* ===== Life Planner Toolkit - Planning My Life Theme ===== */

/* Import Comfortaa font */
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@400;600;700&display=swap');

/* Base styles */
body {
  margin: 0;
  padding: 0;
  font-family: 'Comfortaa', sans-serif;
  line-height: 1.6;
  background: #ffffff; /* keep body white for readability */
  color: #333;
  max-width: 960px;
  margin: auto;
  padding: 2rem;
}

/* Header / Branding */
header {
  text-align: center;
  margin-bottom: 2rem;
}

header img {
  max-width: 200px;
  margin-bottom: 1rem;
}

h1, h2, h3, h4 {
  font-family: 'Comfortaa', sans-serif;
  color: #E71616; /* Planning My Life red */
  margin-top: 2rem;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.2rem;
  border-bottom: 3px solid #E71616;
  padding-bottom: 0.5rem;
}

/* Links */
a {
  color: #E71616;
  text-decoration: none;
  font-weight: 600;
}

a:hover {
  text-decoration: underline;
}

/* Navigation bar */
nav {
  background-color: #E71616;
  padding: 0.6rem 1rem;
  margin-bottom: 2rem;
  border-radius: 8px;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

nav ul li {
  display: inline;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

nav ul li a:hover {
  text-decoration: underline;
  color: #ffe6e6;
}

/* Blockquotes */
blockquote {
  border-left: 4px solid #E71616;
  padding-left: 1rem;
  font-style: italic;
  color: #555;
  margin: 1.5rem 0;
}

/* Tables */
table {
  border-collapse: collapse;
  margin: 1.5rem 0;
  width: 100%;
}

table th, table td {
  border: 1px solid #ccc;
  padding: 0.6rem;
  text-align: left;
}

table th {
  background: #ffe6e6;
  font-weight: bold;
}

/* Optional buttons */
.button {
  display: inline-block;
  background: #E71616;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  margin-top: 1rem;
  text-decoration: none;
  font-weight: bold;
}

.button:hover {
  background: #b51212;
}
/* ===== Logo styling ===== */
header {
  text-align: center;
  margin: 1.25rem 0 1.75rem;
}

header .logo {
  width: 160px;   /* larger brand size */
  height: auto;
  display: inline-block;
}

/* ===== Footer ===== */
footer {
  margin-top: 3rem;
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  border-top: 1px solid #ddd;
}

footer a {
  color: #E71616;
  text-decoration: none;
  font-weight: 600;
}

footer a:hover {
  text-decoration: underline;
}




