/* 1. Global Styles - The Celadon Atmosphere */
body {
    font-family: 'Georgia', serif;
    line-height: 1.7;
    color: #444b48;                /* Dark Slate Green (softer than black) */
    background-color: #f7f9f8;     /* Very pale green-tinted white */
    margin: 0;
    padding: 0;
}

/* 2. Container - The "Page" Layout */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* 3. Typography - Celadon Accents */
h1, h2, h3 {
    font-weight: 300;
    letter-spacing: 2px;
    color: #789c8b;                /* Classic Celadon Green */
    font-variant: small-caps;
}

h1 {
    font-size: 2.8rem;
    border-bottom: 2px solid #dae3df; /* Light Celadon underline */
    padding-bottom: 20px;
    margin-bottom: 40px;
    text-align: center;            /* Centered title for a "Gallery" feel */
}

h2 {
    margin-top: 40px;
    border-left: 4px solid #789c8b; /* A vertical Celadon bar for emphasis */
    padding-left: 15px;
}

/* 4. Links - Nature-inspired tones */
a {
    color: #5a7a6b;                /* A deeper, forest-adjacent green */
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.4s ease;
}

a:hover {
    color: #789c8b;
    border-bottom: 1px solid #789c8b; /* Smooth underline appear */
}

/* 5. Images - Clean & Modern */
img {
    max-width: 100%;
    height: auto;
    border: 8px solid white;       /* "Polaroid" style frame */
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    margin: 20px 0;
}

/* 6. Subtle Dividers */
hr {
    border: 0;
    height: 1px;
    background: #dae3df;
    margin: 40px 0;
}

/* 7. Footer */
footer {
    text-align: center;
    font-size: 0.9rem;
    color: #a0ada7;
    margin-top: 60px;
    padding-bottom: 40px;
}