/*
Theme Name: Portfolio Pro
Description: A fancy portfolio theme for developers and tool creators
Version: 1.0
Author: Your Name
*/

/* All the CSS from the previous template goes here */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", "Arial", sans-serif;
  line-height: 1.6;
  color: #1a1a2e;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Animated Background */
.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.bg-animation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.1)"><animate attributeName="opacity" values="0;1;0" dur="3s" repeatCount="indefinite"/></circle><circle cx="75" cy="75" r="1.5" fill="rgba(255,255,255,0.1)"><animate attributeName="opacity" values="0;1;0" dur="4s" repeatCount="indefinite"/></circle><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.1)"><animate attributeName="opacity" values="0;1;0" dur="2s" repeatCount="indefinite"/></circle></svg>');
  animation: float 20s linear infinite;
}

@keyframes float {
  0% {
    transform: translateY(100vh) rotate(0deg);
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
  }
}

/* Header */
.portfolio-header {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.portfolio-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.portfolio-logo {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, #f0f0f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.portfolio-nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.portfolio-nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 25px;
}

.portfolio-nav-links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.portfolio-nav-links a:hover::before {
  transform: scaleX(1);
}

.portfolio-nav-links a:hover {
  color: white;
  transform: translateY(-2px);
}

/* Hero Section */
.portfolio-hero {
  padding: 140px 0 100px;
  text-align: center;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.portfolio-hero-content {
  position: relative;
  z-index: 2;
}

.portfolio-hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fff, #f0f0f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideInUp 1s ease-out;
  font-weight: 900;
  line-height: 1.2;
}

.portfolio-hero p {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: slideInUp 1s ease-out 0.2s both;
}

.portfolio-cta-buttons {
  animation: slideInUp 1s ease-out 0.4s both;
}

.portfolio-cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
  color: white;
  padding: 18px 35px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin: 0 15px 10px;
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
  position: relative;
  overflow: hidden;
}

.portfolio-cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.portfolio-cta-button:hover::before {
  left: 100%;
}

.portfolio-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

.portfolio-cta-button.secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.portfolio-cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

/* Continue with all the other CSS styles from the previous template... */
/* [Add all the remaining CSS from the previous template here] */

/* Responsive Design */
@media (max-width: 768px) {
  .portfolio-hero h1 {
    font-size: 2.5rem;
  }

  .portfolio-nav-links {
    display: none;
  }

  .portfolio-about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .portfolio-projects-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-profile-image {
    width: 200px;
    height: 200px;
    font-size: 4rem;
  }

  .portfolio-section-title {
    font-size: 2.2rem;
  }

  .portfolio-price {
    font-size: 3rem;
  }
}
