/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
}

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

.nav-logo h2 {
  font-weight: 700;
  font-size: 1.5rem;
}

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

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #ff6b35;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 2rem 2rem;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  font-size: 4rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

.hero-subtitle {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.orange-line {
  width: 60px;
  height: 3px;
  background-color: #ff6b35;
}

.hero-subtitle h2 {
  font-size: 2.5rem;
  font-weight: 600;
}

.hero-role {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  background: linear-gradient(45deg, #ffffff, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-primary {
  background-color: #ff6b35;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #e55a2b;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-secondary:hover {
  background-color: #ffffff;
  color: #0a0a0a;
  transform: translateY(-2px);
}

/* Hero Image */
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.glow-circle {
  position: absolute;
  width: 400px;
  height: 400px;
  border: 2px solid #ff6b35;
  border-radius: 50%;
  animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
  }
  to {
    box-shadow: 0 0 40px rgba(255, 107, 53, 0.6);
  }
}

.profile-carousel {
  position: relative;
  width: 350px;
  height: 350px;
  z-index: 1;
}

.profile-image {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.profile-image.active {
  opacity: 1;
}

.carousel-arrows {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.arrow-btn {
  background: rgba(255, 107, 53, 0.2);
  border: none;
  color: #ff6b35;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.arrow-btn:hover {
  background: rgba(255, 107, 53, 0.4);
}

/* Skills Bar */
.skills-bar {
  margin-top: 4rem;
  padding: 2rem 0;
  background-color: rgba(255, 255, 255, 0.05);
}

.skills-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.skill {
  font-weight: 500;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.skill:hover {
  background-color: #ff6b35;
  transform: translateY(-2px);
}

/* About Section */
.about {
  padding: 6rem 2rem;
  background-color: #0f0f0f;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.service-item:hover {
  background-color: rgba(255, 107, 53, 0.1);
  transform: translateX(10px);
}

.service-icon {
  width: 50px;
  height: 50px;
  background-color: #ff6b35;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #ffffff;
}

.service-item h3 {
  font-weight: 600;
  font-size: 1.1rem;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #cccccc;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ff6b35;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #cccccc;
  font-weight: 500;
}

/* Projects Section */
.projects {
  padding: 6rem 2rem;
  background-color: #0a0a0a;
}

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

.projects-container .section-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.orange-line-vertical {
  width: 3px;
  height: 40px;
  background-color: #ff6b35;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 3rem;
}

.project-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  transition: all 0.3s ease;
}

.project-card:hover {
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.project-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.tech-tag {
  background-color: rgba(255, 107, 53, 0.2);
  color: #ff6b35;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.project-description {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.project-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Project Visuals */
.code-snippet {
  background-color: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  font-family: "Courier New", monospace;
}

.terminal-header {
  background-color: #2a2a2a;
  padding: 0.75rem;
  display: flex;
  gap: 0.5rem;
}

.terminal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ff5f56;
}

.terminal-dot:nth-child(2) {
  background-color: #ffbd2e;
}

.terminal-dot:nth-child(3) {
  background-color: #27ca3f;
}

.terminal-content {
  padding: 1rem;
  color: #00ff00;
  font-size: 0.9rem;
  line-height: 1.4;
}

.terminal-content p {
  margin-bottom: 0.5rem;
}

.movie-posters {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.movie-poster {
  width: 120px;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.landing-page-preview {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 1rem;
  color: #333333;
}

.preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #eeeeee;
}

.preview-logo {
  font-weight: 700;
  font-size: 1.2rem;
}

.preview-nav {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  font-weight: 500;
}

.preview-cta {
  background-color: #ff6b35;
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
}

.preview-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
}

/* Contact Section */
.contact {
  padding: 6rem 2rem;
  background-color: #0f0f0f;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-header h3 {
  font-size: 1.2rem;
  font-weight: 600;
}

.contact-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-subtitle {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #ff6b35;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 500;
  color: #ffffff;
}

.form-group input,
.form-group textarea {
  background-color: transparent;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  padding: 0.75rem 0;
  color: #ffffff;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

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

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Footer */
.footer {
  padding: 3rem 2rem;
  background-color: #0a0a0a;
  text-align: center;
}

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

.footer-container h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-container p {
  color: #cccccc;
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: #ff6b35;
  transform: translateY(-2px);
}

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

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: rgba(10, 10, 10, 0.95);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle h2 {
    font-size: 2rem;
  }

  .hero-role {
    font-size: 2.5rem;
  }

  .profile-image {
    width: 250px;
    height: 250px;
  }

  .glow-circle {
    width: 280px;
    height: 280px;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .project-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .contact-title,
  .contact-subtitle {
    font-size: 2rem;
  }

  .skills-container {
    justify-content: center;
    gap: 1rem;
  }

  .skill {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 100px 1rem 1rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle h2 {
    font-size: 1.5rem;
  }

  .hero-role {
    font-size: 2rem;
  }

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

  .btn {
    width: 100%;
    max-width: 200px;
    justify-content: center;
  }

  .section-title {
    font-size: 2rem;
  }

  .project-card {
    padding: 1.5rem;
  }

  .movie-posters {
    flex-direction: column;
    align-items: center;
  }

  .movie-poster {
    width: 100px;
    height: 140px;
  }
}
