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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hamburger {
  background: none;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3px;
  transition: all 0.3s ease;
}

.hamburger span {
  width: 12px;
  height: 1px;
  background: #fff;
  transition: all 0.3s ease;
}

.hamburger:hover {
  border-color: #ff6b35;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}

.nav-center {
  display: flex;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: #ff6b35;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff6b35;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
}

.contact-btn {
  background: none;
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: #ff6b35;
  border-color: #ff6b35;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.glass-sphere {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 350px;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
  z-index: 1;
}

.glass-sphere::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.15) 0%,
      rgba(255, 255, 255, 0.05) 25%,
      rgba(0, 0, 0, 0.05) 50%,
      rgba(255, 255, 255, 0.08) 75%,
      rgba(255, 255, 255, 0.12) 100%
    );
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 0 60px rgba(255, 255, 255, 0.1), 0 0 80px rgba(255, 255, 255, 0.05), 0 20px 40px
    rgba(0, 0, 0, 0.3);
}

.glass-sphere::after {
  content: "";
  position: absolute;
  top: 15%;
  left: 20%;
  width: 40%;
  height: 40%;
  border-radius: 50%;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 255, 255, 0.1) 40%,
    transparent 70%
  );
  filter: blur(1px);
}

/* Prismatic reflection effect */
.glass-sphere-prism {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent 0deg,
    rgba(255, 0, 150, 0.1) 60deg,
    rgba(0, 255, 255, 0.1) 120deg,
    rgba(255, 255, 0, 0.1) 180deg,
    rgba(255, 0, 150, 0.1) 240deg,
    rgba(0, 255, 255, 0.1) 300deg,
    transparent 360deg
  );
  opacity: 0.6;
  animation: rotate 20s linear infinite;
  z-index: 0;
}

/* Distortion effect for text behind the sphere */
.hero-title {
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 300;
  line-height: 0.9;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
}

.text-distortion {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  backdrop-filter: blur(2px) contrast(1.2) brightness(1.1);
  z-index: 3;
  pointer-events: none;
}

@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0px) scale(1);
  }
  33% {
    transform: translate(-50%, -50%) translateY(-15px) scale(1.02);
  }
  66% {
    transform: translate(-50%, -50%) translateY(5px) scale(0.98);
  }
}

/* Additional bubble effects */
.bubble-small {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 100%
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: floatSmall 8s ease-in-out infinite;
}

.bubble-1 {
  top: 20%;
  left: 15%;
  width: 60px;
  height: 60px;
  animation-delay: -2s;
}

.bubble-2 {
  top: 70%;
  right: 20%;
  width: 40px;
  height: 40px;
  animation-delay: -4s;
}

.bubble-3 {
  top: 30%;
  right: 10%;
  width: 80px;
  height: 80px;
  animation-delay: -6s;
}

@keyframes floatSmall {
  0%,
  100% {
    transform: translateY(0px) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-20px) scale(1.1);
    opacity: 0.9;
  }
}

.hero-title {
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 300;
  line-height: 0.9;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.orange-dot {
  color: #ff6b35;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 300;
  opacity: 0.8;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  padding: 15px 30px;
  border: 2px solid #ff6b35;
  background: #ff6b35;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cta-button.secondary {
  background: transparent;
  border-color: #fff;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.cta-button.secondary:hover {
  background: #fff;
  color: #000;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.7;
  animation: bounce 2s infinite;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Common Section Styles */
section {
  padding: 100px 0;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
  margin-bottom: 60px;
  letter-spacing: -0.02em;
}

/* About Section */
.about {
  background: linear-gradient(180deg, #000 0%, #111 100%);
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-description {
  font-size: 1.2rem;
  opacity: 0.8;
  margin-bottom: 30px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ff6b35;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.7;
}

.about-image {
  display: flex;
  justify-content: center;
}

.image-placeholder {
  width: 300px;
  height: 300px;
  border-radius: 20px;
  background: linear-gradient(45deg, #ff6b35, #ff8c42);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 500;
}

/* Work Section */
.work {
  background: #000;
}

.work-filter {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.filter-btn {
  background: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  border-color: #ff6b35;
  background: #ff6b35;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.work-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.work-item:hover {
  transform: translateY(-10px);
}

.work-image {
  height: 250px;
  background: linear-gradient(45deg, #ff6b35, #ff8c42);
  position: relative;
  overflow: hidden;
}

.work-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
  padding: 20px;
}

.work-item:hover .work-overlay {
  opacity: 1;
}

.work-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.work-overlay p {
  opacity: 0.8;
  margin-bottom: 20px;
}

.work-links {
  display: flex;
  gap: 15px;
}

.work-link {
  color: #ff6b35;
  text-decoration: none;
  border: 1px solid #ff6b35;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.work-link:hover {
  background: #ff6b35;
  color: #fff;
}

.work-info {
  padding: 20px;
}

.work-info h4 {
  margin-bottom: 5px;
}

.work-tech {
  color: #ff6b35;
  font-size: 0.9rem;
}

/* Skills Section */
.skills {
  background: linear-gradient(180deg, #111 0%, #000 100%);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 60px;
}

.skill-category h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: #ff6b35;
}

.skill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.skill-tag {
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.skill-tag:hover {
  background: #ff6b35;
  border-color: #ff6b35;
}

/* Contact Section */
.contact {
  background: #000;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-description {
  font-size: 1.2rem;
  opacity: 0.8;
  margin-bottom: 40px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-method:hover {
  color: #ff6b35;
}

.contact-icon {
  font-size: 1.2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 15px;
  color: #fff;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff6b35;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.submit-btn {
  background: #ff6b35;
  border: none;
  color: #fff;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: #ff8c42;
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: #111;
  padding: 40px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #ff6b35;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-center {
    display: none;
  }

  .nav-container {
    padding: 0 20px;
  }

  .container {
    padding: 0 20px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

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

  .about-stats {
    justify-content: center;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .skills-grid {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .glass-sphere {
    width: 200px;
    height: 200px;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-item {
    min-width: auto;
  }
}
