/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #333;
    background-color: #f9f9f9;
    font-size: 16px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px 60px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    flex: 1;
}

/* Header Styles */
header {
    text-align: center;
    border-bottom: 2px solid #000;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

header h1 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
    letter-spacing: -0.5px;
}

.header-meta {
    font-size: 0.95em;
    color: #555;
    margin: 5px 0;
}

.header-meta a {
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #000;
    transition: all 0.3s ease;
}

.header-meta a:hover {
    color: #555;
    border-bottom-color: #555;
}

/* Podcast Audio CTA Section */
.podcast-audio-cta {
    background-color: #f5f5f5;
    border-left: 4px solid #000;
    padding: 20px;
    margin: 30px 0;
    text-align: center;
}

.podcast-catchy-line {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #333;
}

.podcast-catchy-line .highlight {
    font-weight: 600;
    color: #000;
}

.podcast-button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Georgia', 'Times New Roman', serif;
    border-radius: 3px;
}

.podcast-button:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Section Styles */
.section-content {
    margin-bottom: 40px;
}

.section-content h2 {
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
    border-bottom: 2px solid #000;
    padding-bottom: 10px;
}

.section-content h3 {
    font-size: 1.3em;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #000;
}

.section-content h4 {
    font-size: 1.1em;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #222;
    font-style: italic;
}

.section-content p {
    margin-bottom: 15px;
    text-align: justify;
    color: #444;
}

.section-content em {
    color: #666;
    font-style: italic;
}

.section-content ul {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.section-content ul li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: #444;
}

.section-content ul li:before {
    content: "•";
    position: absolute;
    left: 5px;
    color: #000;
    font-weight: bold;
    font-size: 1.2em;
}

.section-content strong {
    color: #000;
    font-weight: 600;
}

.section-content a {
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #000;
    transition: all 0.3s ease;
}

.section-content a:hover {
    color: #555;
    border-bottom-color: #555;
}

/* Professional Overview Section */
.professional-overview-section p {
    font-size: 1.05em;
    line-height: 1.8;
}

/* Work Experience Section */
.work-experience-section h3 {
    margin-top: 30px;
}

.work-experience-section h3:first-of-type {
    margin-top: 0;
}

/* Skills Section */
.skills-section ul li {
    margin-bottom: 15px;
}

/* Personal Projects Section */
.personal-projects-section ul li {
    margin-bottom: 15px;
}

/* Miscellaneous Section */
.miscellaneous-section ul li {
    margin-bottom: 15px;
}

/* Footer Styles */
.footer {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 2px solid #000;
    text-align: center;
    font-size: 0.9em;
    color: #666;
}

.footer p {
    margin-bottom: 10px;
}

.footer a {
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #000;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: #555;
    border-bottom-color: #555;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        max-width: 100%;
        padding: 35px 40px;
    }

    header h1 {
        font-size: 2.2em;
    }

    .section-content h2 {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 30px 25px;
        box-shadow: none;
    }

    header {
        padding-bottom: 15px;
    }

    header h1 {
        font-size: 1.9em;
    }

    .header-meta {
        font-size: 0.85em;
        line-height: 1.6;
    }

    .section-content {
        margin-bottom: 30px;
    }

    .section-content h2 {
        font-size: 1.4em;
        padding-bottom: 8px;
    }

    .section-content h3 {
        font-size: 1.15em;
    }

    .section-content h4 {
        font-size: 1em;
    }

    .section-content p {
        text-align: left;
    }

    .podcast-audio-cta {
        padding: 15px;
    }

    .podcast-catchy-line {
        font-size: 1em;
    }

    .podcast-button {
        padding: 10px 25px;
        font-size: 0.95em;
    }

    .footer {
        font-size: 0.85em;
        padding-top: 15px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 15px;
    }

    .container {
        padding: 20px 15px;
    }

    header h1 {
        font-size: 1.6em;
        letter-spacing: -0.3px;
    }

    .header-meta {
        font-size: 0.8em;
    }

    .header-meta a {
        display: inline-block;
        margin: 2px 0;
    }

    .section-content h2 {
        font-size: 1.25em;
    }

    .section-content h3 {
        font-size: 1.05em;
        margin-top: 20px;
    }

    .section-content h4 {
        font-size: 0.95em;
    }

    .section-content ul li {
        padding-left: 20px;
        font-size: 0.95em;
    }

    .section-content ul li:before {
        font-size: 1em;
    }

    .podcast-catchy-line {
        font-size: 0.9em;
    }

    .podcast-button {
        width: 100%;
        padding: 12px 20px;
    }
}

/* Print Styles */
@media print {
    body {
        background-color: #fff;
    }

    .container {
        box-shadow: none;
        padding: 20px;
    }

    .podcast-audio-cta {
        display: none;
    }

    .section-content a {
        color: #000;
        text-decoration: underline;
    }
}