/* ============================================
   Reset & Base Styles
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   Container & Layout
   ============================================ */

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   Navigation
   ============================================ */

.navbar {
    padding: 24px 0;
    border-bottom: 1px solid #e5e5e5;
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-logo {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.nav-logo:hover {
    opacity: 0.6;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
    transition: opacity 0.2s ease;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.nav-link:hover {
    opacity: 0.6;
    border-bottom-color: #000;
}

.nav-link.active {
    border-bottom-color: #000;
    font-weight: 600;
}

/* ============================================
   Header / Hero Section
   ============================================ */

.hero {
    padding: 80px 0 100px;
    border-bottom: 1px solid #e5e5e5;
    text-align: center;
}

.hero-name {
    font-size: 64px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    color: #000;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: #000;
    margin-bottom: 16px;
}

.hero-focus {
    font-size: 18px;
    font-weight: 400;
    color: #333;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   Main Content
   ============================================ */

.main-content {
    padding: 80px 0;
}

.section {
    margin-bottom: 80px;
}

.section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #000;
    border-bottom: 2px solid #000;
    padding-bottom: 8px;
    display: inline-block;
}

/* Add this to your CSS file */
.hero-photo {
    /* This ensures the image isn't too big */
    width: 300px;  
    height: 400px;
    
    /* This crops the image neatly if the dimensions above squish it */
    object-fit: cover; 
    
    /* 0 = Sharp Rectangle. Change to 12px for slightly rounded corners */
    border-radius: 0; 
    
    /* Optional: Adds a subtle shadow to make it pop */
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* You also need to make sure the image sits next to the text */
.hero-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px; /* Space between picture and text */
}

/* Update your existing mobile styles to stack them on phones */
@media (max-width: 768px) {
.hero-flex {
    flex-direction: column; /* Stack them */
    text-align: center;
}
    
.hero-photo {
    width: 100%;
    max-width: 300px; /* Don't let it get huge on phones */
    height: auto;
    margin-bottom: 24px;
    }
}
.section-content {
    margin-top: 24px;
}

/* ============================================
   Home Page Styles
   ============================================ */

.home-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: #000;
    margin-bottom: 40px;
}

.home-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.home-link {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
    padding: 12px 24px;
    border: 1px solid #000;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.home-link:hover {
    background-color: #000;
    color: #fff;
}

/* ============================================
   About Me Section
   ============================================ */

.about-text {
    font-size: 18px;
    line-height: 1.8;
    color: #000;
    max-width: 700px;
}

/* ============================================
   Experience Section
   ============================================ */

.experience-item {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid #e5e5e5;
}

.experience-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.experience-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 8px;
}

.experience-role {
    font-size: 22px;
    font-weight: 600;
    color: #000;
}

.experience-org {
    font-size: 18px;
    font-weight: 400;
    color: #333;
}

.experience-dates {
    font-size: 16px;
    color: #666;
    margin-bottom: 16px;
}

.experience-bullets {
    list-style: none;
    padding-left: 0;
}

.experience-bullets li {
    font-size: 16px;
    line-height: 1.7;
    color: #000;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.experience-bullets li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #000;
    font-weight: 600;
}

.experience-bullets li:last-child {
    margin-bottom: 0;
}

/* ============================================
   Projects Section
   ============================================ */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 8px;
}

.project-card {
    padding: 32px;
    border: 1px solid #e5e5e5;
    background-color: #fff;
    transition: border-color 0.2s ease;
}

.project-card:hover {
    border-color: #000;
}

.project-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000;
}

.project-description {
    font-size: 16px;
    line-height: 1.6;
    color: #000;
    margin-bottom: 20px;
}

.project-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-tag {
    font-size: 13px;
    font-weight: 400;
    padding: 4px 12px;
    border: 1px solid #000;
    color: #000;
    background-color: #fff;
    display: inline-block;
}

/* ============================================
   Contact Section
   ============================================ */

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-text {
    font-size: 18px;
    line-height: 1.8;
    color: #000;
    margin-bottom: 40px;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.contact-link {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
    transition: opacity 0.2s ease;
    border-bottom: 1px solid transparent;
}

.contact-link:hover {
    opacity: 0.6;
    border-bottom-color: #000;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    padding: 60px 0;
    border-top: 1px solid #e5e5e5;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-link {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
    transition: opacity 0.2s ease;
    border-bottom: 1px solid transparent;
}

.footer-link:hover {
    opacity: 0.6;
    border-bottom-color: #000;
}

/* ============================================
   Responsive Design
   ============================================ */

/* Tablet */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .navbar {
        padding: 20px 0;
    }

    .nav-content {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        padding: 60px 0 80px;
    }

    .hero-name {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-focus {
        font-size: 16px;
    }

    .main-content {
        padding: 60px 0;
    }

    .section {
        margin-bottom: 60px;
    }

    .section-title {
        font-size: 28px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .project-card {
        padding: 24px;
    }

    .experience-header {
        flex-direction: column;
    }

    .home-links {
        flex-direction: column;
        align-items: center;
    }

    .home-link {
        width: 200px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .navbar {
        padding: 16px 0;
    }

    .nav-logo {
        font-size: 20px;
    }

    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

    .hero {
        padding: 40px 0 60px;
    }

    .hero-name {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-focus {
        font-size: 15px;
    }

    .main-content {
        padding: 40px 0;
    }

    .section {
        margin-bottom: 48px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .about-text {
        font-size: 16px;
    }

    .experience-item {
        margin-bottom: 32px;
        padding-bottom: 32px;
    }

    .experience-role {
        font-size: 20px;
    }

    .experience-org {
        font-size: 16px;
    }

    .project-card {
        padding: 20px;
    }

    .project-title {
        font-size: 18px;
    }

    .footer {
        padding: 40px 0;
        margin-top: 60px;
    }

    .footer-content {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .contact-links {
        flex-direction: column;
        gap: 20px;
    }
}

.about-text {
    /* This creates the indentation for the first line of each paragraph */
    text-indent: 3rem;  
    
    /* Optional: Adds space between the paragraphs so they don't look squished */
   
    
    /* Optional: Makes the text easier to read */
    line-height: 1.6;
}

.no-indent {
    text-indent: 0;
}