/* =================================================================
   INDEX.HTML - PAGE-SPECIFIC STYLES
   ================================================================= */

/* General styling overrides */
body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #333;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  color: #2c3e50;
}

section {
  margin-bottom: 2rem;
}

hr {
  margin: 1rem 0;
  opacity: 0.25;
}

/* Profile image styling */
.profile-img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Experience and Education styling */
.time-period {
  font-size: 0.9rem;
}

/* Dark Mode Toggle Button - Light Mode */
#darkModeToggle.btn-link {
  background-color: transparent !important;
  border: none !important;
  padding: 0.5rem !important;
  color: #24292f !important;
}

#darkModeToggle.btn-link:hover {
  background-color: transparent !important;
  color: #0969da !important;
}

/* Skills section styling */
.skills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.skills-container > div {
  flex: 1;
  min-width: 300px;
}

.skill-category {
  margin-bottom: 1.5rem;
}

.skill-category h3 {
  font-size: 1.1rem;
  color: #2980b9;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.skill-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.skill-item {
  background-color: #f8f9fa;
  padding: 8px 12px;
  margin-bottom: 8px;
  border-radius: 4px;
  font-size: 0.9rem;
  border-left: 3px solid #3498db;
}

/* Profile section paragraph spacing */
#profile .mt-4 p {
  margin-bottom: 1.5rem;
}
