body {
  font-family: "Inter", sans-serif;
  background-color: #ffffff;
  color: #111827;
}
.font-serif {
  font-family: "Lora", serif;
}
.plus-pattern-light {
  background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 2.5rem 2.5rem;
}

.plus-pattern-light-enhanced {
  background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.08) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.08) 1px, transparent 1px);
  background-size: 2.5rem 2.5rem;
}

.form-input {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #d1d5db;
  color: #111827;
  padding: 0.75rem 0;
  transition: border-color 0.3s ease;
}
.form-input:focus {
  outline: none;
  border-bottom-color: #111827;
}
.form-input::placeholder {
  color: #6b7280;
}

/* Projects page form input variant */
.form-input-projects {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #9ca3af;
  color: #111827;
  padding: 0.75rem 0;
  transition: border-color 0.3s ease;
}
.form-input-projects:focus {
  outline: none;
  border-bottom-color: #2563eb;
}
.form-input-projects::placeholder {
  color: #6b7280;
}

.custom-btn {
  border: 1px solid #d1d5db;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  color: #374151;
  background-color: #ffffff;
}
.custom-btn:hover {
  background-color: #111827;
  color: #ffffff;
}

/* Projects page button variant */
.custom-btn-projects {
  border: 1px solid #d1d5db;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  color: #374151;
  background-color: #ffffff;
}
.custom-btn-projects:hover {
  background-color: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}

.custom-scrollbar::-webkit-scrollbar {
  height: 4px;
}
.custom-scrollbar::-webkit-scrollbar-track {
  background: #e5e7eb;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #9ca3af;
  border-radius: 2px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #6b7280;
}
.custom-scrollbar {
  scrollbar-width: thin;
  scrollbar-color: #9ca3af #e5e7eb;
}

/* Footer light mode styles */
.footer-light {
  background-color: #ffffff;
  color: #111827;
}
.footer-light .font-serif,
.footer-light a {
  color: #111827;
}
.footer-light .text-gray-600,
.footer-light .text-gray-500 {
  color: #4b5563;
}
.footer-light a:hover {
  color: #000000;
}
.footer-light .plus-pattern-light {
  background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 2.5rem 2.5rem;
}

/* Project card styles */
.project-card {
  background-color: #eff6ff; /* bg-blue-50 equivalent */
  padding: 2rem;
  color: #1f2937;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
}

.project-card h2 {
  font-family: "Lora", serif;
  font-size: 2.25rem;
  color: #111827;
}

.project-card .location {
  color: #2563eb;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.project-card .description {
  color: #374151;
  line-height: 1.625;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .project-card {
    padding: 3rem;
  }
  
  .project-card h2 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .project-card h2 {
    font-size: 3rem;
  }
}
