/* ---- Import Custom Font ---- */
@import url('https://fonts.cdnfonts.com/css/bacasime-antique');

/* ---- Cottagecore Color Palette & Variables ---- */
:root {
    --bg-color: #f5f5dc;
    --container-bg: rgba(255, 252, 242, 0.9);
    --text-color: #5d4037;
    --accent-color: #6B8E23;
    --border-color: #d2b48c;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

/* ---- General Body Styling ---- */
body {
    font-family: 'Bacasime Antique', sans-serif;
    line-height: 1.7;
    margin: 0;
    padding: 0;
    
    background-image: url('flowerz.png');
    color: var(--text-color);
    cursor: url('tinyladybug.png'), auto;
}

/* ---- Centered Content Wrapper ---- */
.wrapper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

header, section, footer {
    background: var(--container-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px var(--shadow-color); 
}

/* ---- Header & Navigation ---- */
header {
    text-align: center;
    border-bottom: none;
}

header h1 {
    /* REMOVED font-family to inherit from body */
    font-size: 3rem;
    color: var(--accent-color);
    margin: 0;
}

nav ul {
    padding: 10px 0 0 0;
    list-style: none;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--text-color);
}

/* ---- Main Content Sections ---- */
h2 {
    color: var(--accent-color);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
    margin-top: 0;
}

/* ---- Specific Section Styling ---- */
#about {
    text-align: center;
}

#about img {
    border-radius: 50%;
    border: 5px solid var(--border-color);
    margin-bottom: 15px;
}

.project {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dotted var(--border-color);
}
.project:last-child {
    border-bottom: none;
}

.project h3 {
    color: var(--text-color);
}

a {
    color: var(--accent-color);
    text-decoration: underline;
}

a:hover {
    color: var(--text-color);
}

/* ---- Footer ---- */
footer {
    text-align: center;
    font-size: 0.9em;
    padding: 20px;
    border-top: none; 
    margin-bottom: 0; 
}