
/* Base font (Body text) */
body {
    font-family: 'DM Sans', sans-serif;
    background-color: #f7f7f7;
    margin: 0;
    color: #333;
    line-height: 1.6;
    position: relative;
    min-height: 100vh;
}

.spider-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

header,
.tabs,
.tab-content {
    position: relative;
    z-index: 1;
}

/* Headings */
header h1 {
    font-size: 2.4rem;
    font-weight: 700;
}
h2, h3 {
    font-family: 'Syne', sans-serif;
    letter-spacing: -0.5px;
}



/* Header */
header {
    text-align: center;
    padding: 3rem 0;
    background-image: url('images/Header.jpg');
    background-size: cover;
    background-position: center top;
    color: #ffffff;
}


/* Tabs */
.tabs {
    display: flex;
    justify-content: center;
    background-color: #e5e7eb;
}

.tab-button {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    letter-spacing: 0.3px;

    background: none;
    border: none;
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-size: 1rem;
    color: #374151;
}

.tab-button.active {
    border-bottom: 3px solid #2563eb;
    font-weight: bold;
    color: #2563eb;
}

/* Content area */
.tab-content {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1.25rem;
}

.tab-section {
    display: none;
}

.tab-section.active {
    display: block;
}

h2 {
    margin-bottom: 0.5rem;
}

ul {
    padding-left: 1.2rem;
}

a {
    color: #2563eb;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* About Me layout */
.about-layout {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
}

.about-photo {
    width: 200px;
    height: auto;
    border-radius: 8px;
    flex-shrink: 0;
}
