@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
  font-family: 'Inter', sans-serif;
  background-color: #FAFAFA;
  color: #2D2D2D;
  transition: background-color 0.2s ease, color 0.2s ease;
  font-weight: 400;
}

.navbar {
  background-color: #FFFFFF;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  border-radius: 0 0 8px 8px;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.navbar-brand img {
  height: 40px;
  transition: all 0.2s ease;
}

.nav-link {
  color: #2D2D2D !important;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #F2B0AE !important;
}

.theme-toggle {
  cursor: pointer;
  font-size: 1.2rem;
  padding: 0.5rem;
  border: none;
  background: none;
  color: #2D2D2D;
  transition: color 0.2s ease;
}

body.dark .theme-toggle {
  color: #FFFFFF;
}

footer {
  background-color: #FFFFFF;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.08);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

footer img {
  height: 30px;
  transition: all 0.2s ease;
}

main {
  min-height: calc(100vh - 250px);
}

h1, h2, h3, h5 {
  color: #2D2D2D;
  font-weight: 600;
  transition: color 0.2s ease;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 1.8rem;
}

h3 {
  font-size: 1.4rem;
}

h5 {
  font-size: 1.2rem;
}

a {
  color: #F2B0AE;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #E89A98;
  text-decoration: underline;
}

.content-section {
  background: #FFFFFF;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-outline-primary {
  background-color: #F2B0AE;
  border-color: #F2B0AE;
  color: #FFFFFF;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.btn-outline-primary:hover {
  background-color: #E89A98;
  border-color: #E89A98;
}

.card {
  background: #FFFFFF;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.card-project {
  max-width: 220px;
  margin: 0 auto;
}

.card-img-top {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  height: 120px;
  object-fit: cover;
  background-color: #F5F5F5;
}

.card-body {
  padding: 1.25rem;
  background: linear-gradient(to bottom, #FFFFFF, #F9F9F9);
}

.card-title {
  font-size: 1.1rem;
  color: #2D2D2D;
  font-weight: 600;
}

body.dark {
  background-color: #181818;
  color: #E0E0E0;
}

body.dark .navbar {
  background-color: #222222;
  box-shadow: 0 2px 6px rgba(255, 255, 255, 0.1);
}

body.dark .nav-link {
  color: #E0E0E0 !important;
}

body.dark .nav-link:hover {
  color: #FF4D4D !important;
}

body.dark footer {
  background-color: #222222;
  box-shadow: 0 -2px 6px rgba(255, 255, 255, 0.1);
}

body.dark h1, body.dark h2, body.dark h3, body.dark h5 {
  color: #E0E0E0;
}

body.dark a {
  color: #FF4D4D;
}

body.dark a:hover {
  color: #E63939;
}

body.dark .content-section {
  background: #222222;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.06);
}

body.dark .btn-outline-primary {
  background-color: #FF4D4D;
  border-color: #FF4D4D;
}

body.dark .btn-outline-primary:hover {
  background-color: #E63939;
  border-color: #E63939;
}

body.dark .card {
  background: #1E1E1E;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.08);
}

body.dark .card:hover {
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.12);
}

body.dark .card-img-top {
  background-color: #2D2D2D;
}

body.dark .card-body {
  background: linear-gradient(to bottom, #1E1E1E, #252525);
}

body.dark .card-title {
  color: #E0E0E0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .content-section {
    padding: 1.5rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .navbar-brand img {
    height: 35px;
  }

  footer img {
    height: 25px;
  }

  .card-project {
    max-width: 100%;
  }

  .card-img-top {
    height: 100px;
  }
}