@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --primary-color: #4169E1; 
    --primary-light: #eff6ff; 
    --primary-dark: #3658c9;
    --text-main: #111827;
    --text-muted: #6B7280;
    --bg-color: #ffffff;
    --border-color: #e5e7eb; /* Light Gray */
    --font-stack: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-stack);
    background-color: var(--bg-color);
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden; 
}

/* --- NAVBAR (Full Width Border) --- */
.navbar {
    width: 100%;
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-color); /* KEEP THIS */
}

/* Center Content Wrapper */
.nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex; 
    justify-content: space-between; 
    align-items: center;
}

.logo { font-size: 1.25rem; font-weight: 700; color: var(--primary-color); letter-spacing: -0.02em; }
.nav-links { list-style: none; display: flex; gap: 2rem; }
.nav-links a { text-decoration: none; color: var(--text-muted); font-weight: 500; transition: 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--primary-color); }

/* --- FOOTER (Full Width Border) --- */
footer { 
    padding: 3rem 0; 
    text-align: center; 
    color: var(--text-muted); 
    font-size: 0.9rem; 
    margin-top: auto; 
    border-top: 1px solid var(--border-color); /* KEEP THIS */
}

.footer-socials { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 1.5rem; }
.social-link { color: var(--text-muted); font-size: 1.5rem; transition: all 0.2s ease; display: flex; align-items: center; justify-content: center; text-decoration: none; }
.social-link:hover { color: var(--primary-color); transform: translateY(-3px); }