/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

/* Fluid container */
.fluid-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Fluid header */
.fluid-header {
  padding: 1rem 0;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.fluid-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #0070f3;
}

.phoenix-logo {
  height: 40px;
  width: auto;
  margin-right: 0.5rem;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #0070f3;
}

/* Fluid content */
.fluid-content {
  padding: 2rem 0;
  min-height: calc(100vh - 160px);
}

/* Hero section */
.hero-section {
  padding: 4rem 0;
  text-align: center;
  background-color: #f0f7ff;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #0070f3;
}

.lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #666;
}

.cta-button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: #0070f3;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #005acc;
}

/* Fluid grid */
.fluid-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.grid-item {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.grid-item h2 {
  margin-bottom: 1rem;
  color: #0070f3;
}

/* Feature section */
.feature-section {
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.feature-content {
  max-width: 800px;
  margin: 0 auto;
}

.feature-content h2 {
  margin-bottom: 1rem;
  color: #0070f3;
}

.feature-content p {
  margin-bottom: 1rem;
}

/* Fluid footer */
.fluid-footer {
  padding: 1.5rem 0;
  background-color: #fff;
  text-align: center;
  border-top: 1px solid #eaeaea;
  font-size: 0.875rem;
  color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .fluid-nav {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .nav-links {
    margin-top: 1rem;
    width: 100%;
    justify-content: space-between;
  }
  
  .nav-links li {
    margin-left: 0;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .lead {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .fluid-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-section {
    padding: 2rem 0;
  }
}

/* Additional styles for About page */
.mt-4 {
  margin-top: 2rem;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.skill-item {
  background-color: #f0f7ff;
  color: #0070f3;
  padding: 0.75rem;
  border-radius: 4px;
  text-align: center;
  font-weight: 500;
}

/* Additional styles for Projects page */
.project-card {
  display: flex;
  flex-direction: column;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tag {
  background-color: #f0f7ff;
  color: #0070f3;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 50px;
}

.project-link {
  margin-top: auto;
  display: inline-block;
  color: #0070f3;
  text-decoration: none;
  font-weight: 500;
  margin-top: 1rem;
}

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