
*
{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* background gradient styling */
body
{
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(135deg, #e6fff8, #ffdab9, #f5d2d3); /* pastel ombre */
  color: #333;
  padding: 20px;
}

/* Header */
header
{
  position: relative;  /* For positioned photo */
  text-align: center;
  margin-bottom: 40px;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

header h1
{
  font-size: 3rem;
  font-weight: 700;
  color: #4d4d4d;
}

header p
{
  font-size: 1.2rem;
  margin-top: 10px;
  color: #666;
}

/* Profile photo in top right */
.profile-photo
{
  position: absolute;
  top: 20px;       /* aligns with header padding */
  right: 20px;     /* aligns with header padding */
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #a47e8c; /* pastel purple border to match theme */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
}

.profile-photo:hover
{
  transform: scale(1.05);
}

/* Sections */
section
{
  background: rgba(255, 255, 255, 0.85);
  margin: 20px auto;
  padding: 30px;
  max-width: 800px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

h2
{
  color: #4a4a4a;
  margin-bottom: 15px;
}

/* Projects */
.project
{
  margin-bottom: 20px;
}

.project h3
{
  color: #a47e8c; /* muted pastel purple */
}

/* Work Experience Section */
.work-experience
{
  background: rgba(255, 255, 255, 0.85);
  margin: 20px auto;
  padding: 30px;
  max-width: 800px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.job
{
  display: flex;
  align-items: center;
  gap: 20px;
}

.company-logo
{
  width: 120px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* subtle shadow */
}

.job-info h3
{
  margin: 0 0 6px 0;
  color: #a47e8c; /* pastel purple */
  font-weight: 700;
}

.job-info p
{
  margin: 4px 0;
  color: #555;
  font-size: 1rem;
}

/* Footer Section */
footer-section
{
  padding: 30px;
  background-color: #ffffff;
  border: 2px solid #d1d1d1; /* Light border to separate it */
  margin-top: 50px;
  border-radius: 15px;
}

footer
{
  text-align: center;
  padding: 20px;
  font-size: 2rem; /* Slightly smaller font size for footer */
  color: #b5b5d3; /* Light bluish-grey */
  font-family: 'Dancing Script', cursive; /* cursive font */
}

/* Additional Padding and Margin for Spacing */
footer p
{
  margin-top: 15px;
  font-size: 1rem;
  color: #4d4d4d;
}
.github-button-container {
  text-align: center;
  margin: 30px 0;
}

.github-button {
  display: inline-flex;
  align-items: center;
  background-color: #a47e8c;  /* pastel purple */
  color: white;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  box-shadow: 0 6px 12px rgba(164, 126, 140, 0.4);
  transition: background-color 0.3s ease, transform 0.2s ease;
  user-select: none;
}

.github-button:hover,
.github-button:focus {
  background-color: #8b6576;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(139, 101, 118, 0.6);
}

.github-button svg {
  fill: white;
  margin-right: 8px;
  transition: transform 0.3s ease;
}

.github-button:hover svg {
  transform: scale(1.1);
}
 /* for my LinkedIn profile */
.linkedin-button-container {
  text-align: center;
  margin: 20px 0;
}

.linkedin-button {
  display: inline-flex;
  align-items: center;
  background-color: #0077b5; /* LinkedIn blue */
  color: white;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  box-shadow: 0 6px 12px rgba(0, 119, 181, 0.4);
  transition: background-color 0.3s ease, transform 0.2s ease;
  user-select: none;
  margin-left: 10px; /* spacing from GitHub button */
}

.linkedin-button:hover,
.linkedin-button:focus {
  background-color: #005983;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 89, 131, 0.6);
}

.linkedin-button svg {
  fill: white;
  margin-right: 8px;
  transition: transform 0.3s ease;
}

.linkedin-button:hover svg {
  transform: scale(1.1);
}
/* Project Button Styling */
.project-button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: #a47e8c; /* pastel purple */
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 12px rgba(164, 126, 140, 0.3);
}

.project-button:hover,
.project-button:focus 
{
  background-color: #8b6576;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(139, 101, 118, 0.4);
}
.email-contact 
{
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
  padding: 40px 20px;
  margin: 50px auto;
  max-width: 800px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.email-contact h2 
{
  font-size: 2rem;
  color: #4a4a4a;
  margin-bottom: 15px;
}

.email-contact p 
{
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 10px;
}

.email-link 
{
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 600;
  color: #a47e8c; /* pastel purple */
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.email-link:hover,
.email-link:focus 
{
  color: #8b6576;
  border-color: #8b6576;
}




