/* General reset */
body {
    font-family: sans-serif;
    max-width: 900px;
    margin: auto;
    padding: 0 2rem;
    font-size: 1.2rem;
}

h1, h2, h3, h4, h5, h6 {
        color: #cc5500;  /* dark orange */
  }

a {
    text-decoration: none;
    color: #cc5500
}
a:hover {
    text-decoration: underline;
}

/* Header styling */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.site-title a {
    font-size: 2.5rem;
    font-weight: bold;
    text-decoration: none;
    color: black;
}

.site-title a:hover {
        color: #cc5500; /* accent color on hover */
  }

.site-nav a {
    margin-left: 1.5rem;
    text-decoration: none;
    color: #333;
    font-size: 1.5rem;
}

.site-nav a:hover {
    color: #cc5500; /* accent color on hover */
}

/* Divider line */
header hr {
    border: none;
    border-top: 3px solid #888;
    margin: 0;
}

img {
    border-radius: 20%;   /* circular images */
    object-fit: cover;     /* fills box nicely */
    display: block;        /* default block to prevent weird spacing */
    max-width: 100%;       /* responsive by default */
    height: auto;          /* maintain aspect ratio */
  }

  @media (max-width: 500px) {
    img[style*="float"] { /* target only images with inline float */
        float: none !important;
        display: block;
        margin: 0 auto 1rem;
    }
}

footer {
    clear: both;
    text-align: center;
    margin-top: 2rem;
    padding: 0 rem 0;
    border-top: 3px solid #888; /* optional divider */
  }