/* Portfolio Template Styles */

.portfolio-template {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #111827;
}

.portfolio-template nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #f3f4f6;
}

.portfolio-template nav a {
  color: #4b5563;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.portfolio-template nav a:hover {
  color: #111827;
}

.portfolio-template .btn-primary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #4f46e5;
  color: white;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s;
}

.portfolio-template .btn-primary:hover {
  background-color: #4338ca;
}

.portfolio-template .btn-secondary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: white;
  color: #111827;
  border: 2px solid #e5e7eb;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s;
}

.portfolio-template .btn-secondary:hover {
  border-color: #d1d5db;
}

.portfolio-template .hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom right, #eef2ff, white, #faf5ff);
  position: relative;
  overflow: hidden;
}

.portfolio-template .hero h1 {
  font-size: 3.75rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}

.portfolio-template .hero p {
  font-size: 1.25rem;
  color: #4b5563;
  margin-bottom: 2rem;
}

.portfolio-template .project-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.portfolio-template .project-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s;
}

.portfolio-template .project-card:hover img {
  transform: scale(1.05);
}

.portfolio-template .project-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1rem;
  transition: color 0.2s;
}

.portfolio-template .project-card:hover h3 {
  color: #4f46e5;
}

.portfolio-template footer {
  background-color: #111827;
  color: white;
  padding: 3rem 0;
}

.portfolio-template footer a {
  color: #9ca3af;
  text-decoration: none;
}

.portfolio-template footer a:hover {
  color: white;
}

/* CTA Section */
.portfolio-template .cta-section {
  background-color: #4f46e5;
  color: white;
  padding: 6rem 0;
  text-align: center;
}

.portfolio-template .cta-section h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.portfolio-template .cta-section p {
  color: #c7d2fe;
  font-size: 1.125rem;
  margin-bottom: 2rem;
}
