/* Background */
body {
  background-color: #F7F7F7;
  color: #1A1A1A;
}

/* Content area */
main {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
}

/* Navbar */
.navbar {
  background-color: #1A1A1A;
}

.navbar a {
  color: white !important;
}

/* Links (primary accent) */
a {
  color: #F97316;
}

a:hover {
  color: #EA580C;
}

/* Headings */
h1, h2, h3 {
  color: #111827;
}

.social-icons {
  display: flex;
  flex-direction: row;
  justify-content: center;  /* ← THIS centers horizontally */
  align-items: center;
  gap: 15px;           /* space between icons */
  flex-wrap: nowrap;   /* keeps everything in ONE row */
}

.social-icons img {
  width: 38px;
  height: 38px;
}

.person {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.person img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
}

.person div {
  max-width: 600px;
}

.cv-button {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 14px;
  background-color: #F97316;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
}

.cv-button:hover {
  background-color: #EA580C;
}

ul li {
  margin-bottom: 8px;
}

.repo-card {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 16px;
  margin-top: 15px;
}

.repo-card a {
  display: inline-block;
  margin-top: 8px;
  color: #F97316;
  font-weight: 500;
  text-decoration: none;
}

.repo-card a:hover {
  text-decoration: underline;
}

.github-link a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.github-icon {
  width: 60px;
  height: auto;
}

.email-link {
  color: #F97316;
  font-weight: 500;
  text-decoration: none;
}

.email-link:hover {
  text-decoration: underline;
}

.columns {
  margin-bottom: 30px;
}

.column img {
  border-radius: 8px;
}

h3 {
  margin-top: 0;
}

.columns {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 15px;
}

.carousel {
  display: flex !important;
  flex-direction: row;
  overflow-x: auto;
  gap: 15px;
  padding: 10px 0;
  scroll-snap-type: x mandatory;
}

.carousel img {
  height: 400px;
  border-radius: 10px;
  flex-shrink: 0;
  scroll-snap-align: center;
}


.carousel {
  scroll-padding-left: 20px;
}