/* Import a modern professional font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

p {
  padding-left: 4px;
  padding-right: 4px;
}

/* Improve heading and section spacing */
h1, h2, h3 {
    margin-top: 40px;
    margin-bottom: 20px;
    padding-left: 4px;
    padding-right: 4px;
}

/* Tweak spacing for paragraph-like elements */
p, ul, ol, li {
    margin-bottom: 16px;
}

/* Add bottom margin to sections (you can tag them as .section or use divs) */
.section {
    margin-bottom: 40px;
}

/* Example for specific sections if not using .section */
.education, .skills, .experience {
    margin-bottom: 40px;
}

/* Optional: add line-height to headings for clarity */
h1, h2, h3 {
    line-height: 1.4;
}

/* Reset & base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: #2c2c2c;
    background-color: #f9f9f9;
    padding: 40px 20px;
    max-width: 900px;
    margin: auto;
    overflow-x: hidden;
}

/* Headings */
h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 28px;
    letter-spacing: 0.05em;
    color: #222;
}

h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.02em;
    color: #444;
    position: relative;
}

h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.01em;
    color: #555;
    position: relative;
}

/* Paragraphs */
p {
    margin-bottom: 1.2em;
    font-size: 16px;
}

/* Contact section */
.contact-info {
    margin-top: 30px;
    font-size: 14px;
    color: #333;
}

/* Navigation section - preserve ID-based structure and visual spacing */
#Home, #About, #Projects, #Hobbies {
    font-family: 'Inter', sans-serif;
    font-variant: small-caps;
    position: absolute;
    font-weight: 600;
    height: auto;
    width: auto;
    text-decoration: none;
    cursor: pointer;
}

/* Specific nav ID styles */
#Home {
    letter-spacing: .4ex;
    color: #181818;
}
#About {
    letter-spacing: .4ex;
    color: #909090;
}
#Projects {
    letter-spacing: .5ex;
    color: #909090;
}
#Hobbies {
    letter-spacing: .4ex;
    color: #909090;
}

/* Hover styles */
#Home:hover,
#About:hover,
#Projects:hover,
#Hobbies:hover {
    color: #29295a !important;
    text-decoration: underline;
    cursor: pointer;
}

/* Links */
a:link {
    color: #3366cc;
    text-decoration: underline;
}

a:visited {
    color: #6a1b9a;
    text-decoration: line-through;
}

a:hover {
    color: #e67e22;
    text-decoration: underline;
}