/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', serif; /* Samford's preferred font */
  line-height: 1.6;
  background-color: #f5f5f5;
  color: #333;
  text-align: center;
}

/* Header */
.samford-header {
  background-color: #00274c; /* Samford blue */
  color: #ffffff;
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.samford-header .logo-container {
  margin-bottom: 1rem;
}

.samford-logo {
  max-width: 150px;
  height: auto;
}

/* Main Section */
.projects {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
}

.project-card {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 300px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.project-card h2 {
  font-size: 1.5rem;
  color: #00274c; /* Samford blue */
  margin-bottom: 0.5rem;
}

.project-card p {
  font-size: 1rem;
  color: #555;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
  margin-top: 2rem;
  padding: 1rem;
  background: #00274c; /* Samford blue */
  color: #ffffff;
  font-size: 0.9rem;
}

