/* General Reset */
body, h1, h2, ul, li { margin: 0; padding: 0; }


/* Header & Navigation (image_0.png structure) */
.main-header {
    border-bottom: 1px solid #eaeaea;
    padding: 30px 20px 10px 20px;
    background-color: #fdfdfd;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    border-bottom: 0px;
}
.site-title a {
    font-size: 40px;
    font-weight: 700;
    color: #4c5867;
    letter-spacing: -1px;
}
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}
.main-nav a {
    font-size: 0.9rem;
    color: #4c5867; /* Light grey text for nav links */
    text-transform: capitalize;
}

/* Homepage Structure */
#main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0px 20px 40px 20px;
}
.home-intro-text {
    max-width: 800px;
    margin: 0 auto 60px; /* Space before gallery */
    font-size: 1.1rem;
    text-align: center;
}
.home-intro-text h1, .home-intro-text h2 { margin-bottom: 15px; }


/* Fallback list styling for Blog/About */
article { padding: 40px 0; max-width: 700px; margin: 0 auto; }
article h1 { margin-bottom: 20px; padding-bottom: 10px; }


body, p, li, article {
    background-color: #fff;
    font-family: 'europa';
    font-weight: 300;
    font-size: 14px;
    line-height: 1.8em;
    letter-spacing: .04em;
    color: #666; 
    font-style: normal;
}

/* 2. Link Styling */
a {
    color: #74869e; /* Links match body text color */
    text-decoration: none;
    transition: color 0.3s ease; /* Smooth transition */
}

#main-content a {
    border-bottom: 1px dotted rgba(0, 0, 0, 0.2);
}

a:hover {
    color: #000;
}

/* 3. Keep Headings distinct (they won't inherit the light font-weight/color) */
h1, h2, h3, h4, h5, h6 {
    color: #a2b7d2;
    font-weight: 700;
    margin-bottom: 0.5em;
    font-family: "mr-eaves-sans";
    font-weight: 800;
    font-style: normal;
}

code, pre {
    background-color: blanchedalmond;
}

pre {
        padding: 10px;
}

ul, ol {
    padding-left: 35px;
    margin-bottom: 1px;
    margin-top: 1px;
}


li {
    line-height: 1.4;
}

li p {
    margin-top: 0 !important;
    margin-bottom: 2px !important;
    padding: 0 !important;
    line-height: inherit; 
}