/* Japandi Color Palette & Variables */
:root {
    --bg-color: #f6f4f0;      /* Soft beige background */
    --text-color: #4a3f35;    /* Deep muted brown for readable text */
    --accent-green: #8f9779;  /* Muted sage green */
    --light-brown: #d5ccbe;   /* Soft brown for borders/lines */
    --white: #ffffff;
}

/* Basic Reset for clean edges */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body & Typography */
body {
    /* A gentle serif font is traditional and very easy on the eyes */
    font-family: 'Georgia', serif; 
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.7;
    font-size: 16px; 
}

/* Layout Container */
.container {
    max-width: 800px; /* Keeps the text from stretching too wide */
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.navbar {
    padding: 30px 0;
    border-bottom: 1px solid var(--light-brown);
    margin-bottom: 50px;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent-green);
}

/* Typography specifics */
h1, h2, h3 {
    font-weight: normal;
    margin-bottom: 15px;
}

h1 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

h2 {
    font-size: 1.3rem;
    margin-top: 50px;
    border-bottom: 1px solid var(--light-brown);
    padding-bottom: 10px;
}

p {
    margin-bottom: 25px;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--accent-green);
    color: var(--white);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 3px;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #7a8266; /* Slightly darker green on hover */
}

/* Grid & Cards for highlights/hobbies */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.card {
    background-color: transparent;
    border: 1px solid var(--light-brown);
    padding: 25px;
    border-radius: 4px;
}

.card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

/* Footer */
footer {
    margin-top: 80px;
    padding: 30px 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-color);
    border-top: 1px solid var(--light-brown);
}

/* --- Social Links Styling --- */
.social-links {
    display: flex;
    gap: 15px; /* Space between each icon */
    align-items: center;
}

.social-links a {
    color: var(--text-color); /* Matches your deep brown text */
    display: inline-flex;
    transition: color 0.3s ease, transform 0.2s ease;
}

.social-links a:hover {
    color: var(--accent-green); /* Turns sage green on hover */
    transform: translateY(-3px); /* Gives a smooth "lift" effect */
}