body {
    margin: 0; 
}

/* Landing Page Styles  */
#landing {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    margin: 0; 
    font-family: sans-serif; 
    color: white;
    background:  linear-gradient(to bottom, #6e8efb, #a777e3);/* #5a61ac; */
}

#landing h1 {
    font-size: 3rem;
    margin: 0 0 0rem;
}

#landing p {
    font-size: 1rem;
    margin: 0 0 5rem;
}

/* About Me Styling */
#about {
    background: #fff;      
    color: #333;           
    padding: 4rem 8rem; 
    font-family: sans-serif;    
}

.about-content {
    max-width: 800px;       
    margin: auto;           
    text-align: left;
}

#about h1 {
    font-size: 2rem;
    margin-bottom: 0rem;
}

#about p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Timeline Section */
#timeline {
    padding: 4rem 1rem;
    background: #fafafa;
    color: #333;
    font-family: sans-serif;
}

#timeline h1 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

/* Projects Section */
#projects {
    padding: 4rem 1rem;
    background: #111;        
    color: #fff;
    font-family: sans-serif;
}

#projects h1 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: auto;
}

.project-card {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    transition: transform 0.2s ease;
}

/* .project-card:hover {
    transform: translateY(-5px);
} */

.project-card img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.project-card h2 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-style: italic;
}

/* Timeline container */
.timeline-content {
    max-width: 800px;
    margin: auto;
    position: relative;
    border-left: 3px solid #6e8efb; /* the vertical line */
    padding-left: 2rem;
}

.timeline-item {
    margin-bottom: 2rem;
    position: relative;
    border-bottom: 1px solid #ddd;
}

.timeline-item:last-child {
    border-bottom: none;          /* don’t draw line after last item */
  }

.timeline-date {
    font-weight: bold;
    color: #6e8efb;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.timeline-role {
    background: none; 
}

.timeline-role h2 {
    font-size: 1.1rem;
}

.timeline-role ul {
    margin: 0.5rem 0 0 1.25rem;  /* space + indentation */
    padding: 0;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.5;
}
  
.timeline-role li {
    margin-bottom: 0.5rem;
}

/* Education Styling */
#education {
    padding: 4rem 1rem;
    background: #fff;
    color: #333;
    font-family: sans-serif;
    text-align: center;
}

#education h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.education-content {
    display: flex;
    justify-content: center;
    gap: 2rem;              /* spacing between the two columns */
    flex-wrap: wrap;        /* ensures it stacks on small screens */
}

.education-item {
    flex: 1;
    max-width: 500px;
}

.education-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: #6e8efb;         /* tie in your accent color */
}

.edu-date {
    font-size: 0.9rem;
    color: #777;
}


/* Footer Styling */
footer {
    background: #111; /* dark background */
    padding: 2rem 0rem;
}
  
.social-banner {
    /* margin-bottom: 0rem; */
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 1.75rem; /* icon size */
}
  
.social-banner a {
    color: #ccc;
    transition: color 0.2s ease;
}
  
.social-banner a:hover {
    color: #8ab4ff; /* accent color */
}
  
.footer-note {
    color: #ccc;
    text-align: center;
    font-size: 0.9rem;
}