@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Raleway:wght@300;400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body 
{
  font-family: 'Raleway', sans-serif;
  color: #fff;
  background-color: #05051a;
  overflow-x: hidden;
}

#canvas-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  position: fixed;
  width: 100%;
  z-index: 100;
  transition: background-color 0.3s ease;
}

.navbar.scrolled {
  background-color: rgba(5, 5, 26, 0.9);
  backdrop-filter: blur(10px);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #e0e0ff;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #e0e0ff;
  font-size: 1rem;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #a78bfa;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #a78bfa;
}

.nav-link:hover::after {
  width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero {
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding-top: 20vh;
}

.greeting {
  font-size: 1.2rem;
  color: #a78bfa;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.5s;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.8s;
}

.hero h2 {
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s ease forwards;
  animation-delay: 1.1s;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(90deg, #8b5cf6, #a78bfa);
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  color: white;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  animation: fadeUp 1s ease forwards;
  animation-delay: 1.4s;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 7px 20px rgba(139, 92, 246, 0.6);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 2s;
}

.scroll-indicator p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.scroll-icon {
  width: 30px;
  height: 50px;
  border: 2px solid #e0e0ff;
  border-radius: 25px;
  position: relative;
}

.scroll-icon::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background-color: #e0e0ff;
  border-radius: 50%;
  animation: scrollDown 2s infinite;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  height: 4px;
  width: 60px;
  background: linear-gradient(90deg, #8b5cf6, #a78bfa);
  bottom: -10px;
  left: 0;
}

.about {
  flex-direction: column;
  justify-content: center;
}

.about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
}

.about-text p {
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #e0e0ff;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
}

.stat-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(139, 92, 246, 0.2);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #a78bfa;
  margin-bottom: 0.5rem;
}

.projects {
  flex-direction: column;
  justify-content: center;
  padding: 5rem 0;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.project-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.project-img {
  width: 100%;
  height: 200px;
  background-color: #1a1a3a;
  position: relative;
  overflow: hidden;
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-content {
  padding: 1.5rem;
}

.project-title {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #fff;
}

.project-desc {
  font-size: 0.9rem;
  color: #e0e0ff;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.project-tag {
  background: rgba(139, 92, 246, 0.2);
  color: #a78bfa;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
}

.project-link {
  display: inline-block;
  color: #a78bfa;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.project-link:hover {
  color: #8b5cf6;
}

.contact {
  flex-direction: column;
  justify-content: center;
}

.contact-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
}

.contact-form {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 15px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #e0e0ff;
}

.form-control {
  width: 100%;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  color: #fff;
  font-family: 'Raleway', sans-serif;
}

.form-control:focus {
  outline: none;
  border-color: #a78bfa;
}

textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(90deg, #8b5cf6, #a78bfa);
  border: none;
  border-radius: 5px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(139, 92, 246, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon i {
  color: #a78bfa;
  font-size: 1.2rem;
}

.contact-text h4 {
  margin-bottom: 0.5rem;
  color: #fff;
}

.contact-text p {
  color: #e0e0ff;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-link:hover {
  transform: translateY(-5px);
  background-color: rgba(139, 92, 246, 0.3);
}

footer {
  text-align: center;
  padding: 2rem 0;
  background-color: rgba(5, 5, 26, 0.8);
}

.footer-text {
  color: #e0e0ff;
  font-size: 0.9rem;
}

{
  
  cursor: url('Jujutsu Kaisen Satoru Gojo Infinity Animated--cursor--SweezyCursors.png'), auto;
  
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scrollDown {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  75% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  76% {
    opacity: 0;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero h2 {
    font-size: 1.3rem;
  }
  
  .nav-links {
    display: none;
  }
}
