 /* --- Colour Variables --- */
  :root {
    --header-bg: linear-gradient(135deg, #FF6F61, #FFD8B1);
    --nav-bg: rgba(255, 111, 97, 0.85);
    --title-color: #6B4226;
    --text-color: #7E5A3A;
    --page-bg: linear-gradient(180deg, #FFE5D4, #FFF1E6);
    --box-bg: #FFF1E6;
  }

  /* --- Global Styles --- */
  body {
    margin: 0;
    font-family: 'Nunito', sans-serif;
    color: var(--text-color);
    background: var(--page-bg);
  }

header {
  position: relative;
  max-width: 1200px;                  /* keeps it aligned with the container */
  margin: 1rem auto;
  height: 250px;                       /* adjust based on your image */
  border-radius: 12px;
  overflow: hidden;                    /* ensures rounded corners affect the image */
  background: 
    linear-gradient(rgba(255,111,97,0.4), rgba(255,216,177,0.4)), /* warm overlay */
    url('images/enzo_isabella.png') center/cover no-repeat;               /* your image */
  display: flex;
  align-items: center;                 /* vertical centering */
  justify-content: center;             /* horizontal centering */
  text-align: center;
  font-family: 'Playfair Display', serif;
  color: #fff;                         /* text color over image */
  padding: 0 1rem;                     /* optional horizontal padding */
}

  /* --- Snazzy Navigation --- */
  nav {
    background: linear-gradient(135deg, #FF6F61, #FFD8B1);
    padding: 0.5rem 1rem;
    color: #fff;
    max-width: 1000px;
    margin: 1rem auto;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: background 0.5s, transform 0.2s;
  }

  nav:hover {
    background: linear-gradient(135deg, #FFD8B1, #FF6F61);
    transform: scale(1.02);
  }

  nav a {
    color: #fff;
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    margin: 0 0.25rem;
    border-radius: 6px;
    transition: background 0.3s, transform 0.2s;
    font-weight: 600;
  }

  nav a:hover {
    background: linear-gradient(45deg, #FFD8B1, #FF6F61);
    transform: translateY(-2px);
  }

  /* --- Container & Layout --- */
  .container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .main-content,
  .sidebar {
    background-color: var(--box-bg);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  }

  .main-content {
    flex: 1 1 60%;
    min-width: 280px;
  }

  .sidebar {
    flex: 1 1 30%;
    min-width: 220px;
  }

  /* --- Headings --- */
  h1, h2 {
    font-family: 'Playfair Display', serif;
    margin-top: 0;
    color: var(--title-color);
    position: relative;
  }

  h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #FF6F61, #FFD8B1);
    border-radius: 1px;
  }

  /* --- Paragraph accents --- */
  .main-content p {
    border-bottom: 1px solid rgba(110, 66, 38, 0.1);
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .main-content p:last-child {
    border-bottom: none;
  }

  /* --- Links in main content --- */
  .main-content a {
    color: #FF6F61;
    text-decoration: none;
    transition: color 0.3s, transform 0.2s;
  }

  .main-content a:hover {
    color: #FF9E80;
    transform: translateY(-1px);
  }

  /* --- Sidebar stats --- */
  .sidebar p {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    color: #6B4226;
    transition: background 0.3s, transform 0.2s;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    margin-bottom: 0.5rem;
  }

  .sidebar p:hover,
  .sidebar p:focus-within {
    background: rgba(255, 111, 97, 0.1);
    transform: translateX(2px);
  }

  /* Remove last border/padding */
  .sidebar p:last-child {
    margin-bottom: 0;
  }

  /* --- Mobile Stacking --- */
  @media (max-width: 768px) {
    .main-content,
    .sidebar {
      flex: 1 1 100%;
    }
  }