/* Variables for easy theme management */
:root {
    --bg-color: #fafafa;
    --text-color: #333333;
    --accent-color: #6b705c; /* Muted Sage Green */
    --secondary-text: #666666;
    --border-color: #e0e0e0;
    --nav-hover: #a5a58d;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #fafafa;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

/* Header and Title Section */
header {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}

h1 {
    font-weight: 300;
    color: #6b705c;;
    margin-bottom: 0.5rem;
}

.description {
    font-style: italic;
    color: #666666;
}


/* Navigation Container */
nav ul {
    list-style-type: none; /* Removes bullet points */
    padding: 0;
    margin: 0;
    display: flex; /* Aligns items horizontally */
    flex-wrap: wrap; /* Allows items to wrap on small screens */
    gap: 24px; /* Space between the links */
}

nav li {
    display: block;
}

nav a {
    text-decoration: none;
    color: #333333;
    font-weight: bold;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #6b705c;
}

/* Content Sections */
section {
    margin-bottom: 3rem;
}

h2 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-left: 3px solid #6b705c;
    padding-left: 1rem;
    margin-bottom: 1.5rem;
}

p {
    margin-bottom: 1.2rem;
}

/* Footer */
footer {
    margin-top: 5rem;
    font-size: 0.8rem;
    color: #666666;
    text-align: center;
    border-top: 1px solid #e0e0e0;
    padding-top: 2rem;
    
    


}