@import url("https://fonts.cdnfonts.com/css/nasa");
:root {
  --primary-color: #000000;
  --secondary-color: #ffffff;
  --text-color: #ffffff;
  --background-color: #0D0D0D;
  --card-bg: #1A1A1A;
  --border-color: #333333;
}

[data-theme=light] {
  --primary-color: #ffffff;
  --secondary-color: #000000;
  --text-color: #333333;
  --background-color: #f5f5f5;
  --card-bg: rgba(255, 255, 255, 0.8);
  --border-color: rgba(0, 0, 0, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background-color: #000000;
  overflow-x: hidden;
  transition: all 5s ease;
}
body.light-theme {
  color: #000000;
  background-color: #ffffff;
}

.theme-switcher {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 5s ease;
}
.theme-switcher .sun-icon, .theme-switcher .moon-icon {
  width: 24px;
  height: 24px;
  transition: all 5s ease;
  stroke: #ffffff;
}
.theme-switcher .sun-icon {
  display: none;
  opacity: 0;
  transform: rotate(-180deg);
  transition: opacity 5s ease, transform 5s ease, stroke 5s ease;
}
.theme-switcher .moon-icon {
  display: block;
  opacity: 1;
  transform: rotate(0deg);
  transition: opacity 5s ease, transform 5s ease, stroke 5s ease;
}
body.light-theme .theme-switcher {
  color: #000000;
}
body.light-theme .theme-switcher .sun-icon, body.light-theme .theme-switcher .moon-icon {
  stroke: #000000;
}
body.light-theme .theme-switcher .sun-icon {
  display: block;
  opacity: 1;
  transform: rotate(0deg);
}
body.light-theme .theme-switcher .moon-icon {
  display: none;
  opacity: 0;
  transform: rotate(180deg);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 1s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
body.light-theme .navbar {
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.navbar .nav-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: all 5s ease;
  font-family: "Nasa", sans-serif;
}
.navbar .logo-container img.logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: all 5s ease;
}
.navbar .logo-container .logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  transition: all 5s ease;
}
body.light-theme .navbar .logo-container .logo {
  color: #000000;
}
.navbar .logo-container .logo span {
  color: rgb(255, 0, 166);
  transition: all 5s ease;
}
.navbar .nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.navbar .nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: all 1s ease;
  position: relative;
}
body.light-theme .navbar .nav-links a {
  color: #000000;
}
.navbar .nav-links a:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: rgb(255, 0, 166);
  transition: width 1s ease;
}
.navbar .nav-links a:hover {
  color: rgb(255, 0, 166);
}
.navbar .nav-links a:hover:after {
  width: 100%;
  transition: width 0.3s ease;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  transition: all 5s ease;
}
.section-header h2 {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: all 5s ease;
}
body.light-theme .section-header h2 {
  color: #000000;
}
.section-header p {
  font-size: 1.2rem;
  color: #ffffff;
  opacity: 0.8;
  transition: all 5s ease;
}
body.light-theme .section-header p {
  color: #000000;
}

.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: #000000;
  transition: all 5s ease;
}
.hero .hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  z-index: 2;
  width: 90%;
  max-width: 1000px;
  transition: all 5s ease;
}
.hero .hero-content h1 {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
  transition: all 5s ease;
}
.hero .hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
  transition: all 5s ease;
}
.hero .hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: all 5s ease;
}
.hero .dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
  z-index: 1;
  opacity: 1;
  transition: opacity 5s ease;
}
body.light-theme .hero .dark-overlay {
  opacity: 0;
}

.tech-stack {
  padding: 8rem 2rem;
  background: #000000;
  position: relative;
  overflow: hidden;
  transition: all 5s ease;
}
body.light-theme .tech-stack {
  background: #ffffff;
}
.tech-stack .tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}
.tech-stack .tech-item {
  background: rgba(255, 255, 255, 0.1);
  aspect-ratio: 1;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  transition: all 1s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
body.light-theme .tech-stack .tech-item {
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.tech-stack .tech-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgb(255, 0, 166);
  transition: all 0.3s ease;
}
.tech-stack .tech-item img {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
  transition: all 5s ease;
  filter: brightness(0) invert(1);
}
body.light-theme .tech-stack .tech-item img {
  filter: none;
}
.tech-stack .tech-item h3 {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 600;
  margin: 0;
  transition: all 5s ease;
}
body.light-theme .tech-stack .tech-item h3 {
  color: #000000;
}

.projects .project-hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.projects .project-hero .video-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.projects .project-hero .video-container .project-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.5s ease;
}
.projects .project-hero .video-container h2 {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 4.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  z-index: 2;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 80px;
}
.projects .project-hero .video-container .play-button {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: all 0.3s ease;
  pointer-events: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  background-color: #1a1c25;
  border: 0.05px solid #454549;
}
.projects .project-hero .video-container .play-button svg {
  width: 32px;
  height: 32px;
  color: #ffffff;
  transform: translateX(2px);
}
.projects .project-hero .video-container .play-button:hover {
  background: rgb(178.5, 0, 116.2);
  transform: translate(-50%, -50%) scale(1.1);
}
.projects .project-hero .video-container:hover .project-video {
  filter: grayscale(0%);
}
.projects .project-hero .video-container:hover .play-button {
  opacity: 1;
  pointer-events: auto;
}

.footer {
  background: #000000;
  color: #ffffff;
  padding: 6rem 2rem 2rem;
  transition: all 5s ease;
}
body.light-theme .footer {
  background: #ffffff;
  color: #000000;
}
.footer .footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
}
.footer .footer-brand .footer-logo {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  transition: all 5s ease;
  font-family: "Nasa", sans-serif;
}
.footer .footer-brand .footer-logo span {
  color: rgb(255, 0, 166);
  transition: all 5s ease;
}
.footer .footer-brand .footer-tagline {
  font-size: 1.2rem;
  opacity: 0.8;
  line-height: 1.6;
  color: #ffffff;
  transition: all 5s ease;
}
body.light-theme .footer .footer-brand .footer-tagline {
  color: #000000;
}
.footer .footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}
.footer .footer-links .footer-section h3 {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: #ffffff;
  font-weight: 600;
  transition: all 5s ease;
}
body.light-theme .footer .footer-links .footer-section h3 {
  color: #000000;
}
.footer .footer-links .footer-section a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 0.5rem;
  opacity: 0.8;
  transition: all 1s ease;
  font-size: 1.1rem;
}
body.light-theme .footer .footer-links .footer-section a {
  color: #000000;
}
.footer .footer-links .footer-section a:hover {
  opacity: 1;
  color: rgb(255, 0, 166);
  transform: translateX(5px);
  transition: all 0.3s ease;
}
.footer .footer-bottom {
  max-width: 1400px;
  margin: 4rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 1rem;
  opacity: 0.6;
  transition: all 5s ease;
}
body.light-theme .footer .footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: #000000;
}

.btn {
  background-color: #1a1c25;
  border: 0.05px solid #454549;
  color: white;
  width: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 20px !important;
  border-radius: clamp(45px, 5rem, 60px);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: 0.5s;
  margin-left: auto;
  margin-right: auto;
  text-decoration: none;
  text-transform: uppercase;
}
.btn.primary {
  background: #1a1c25;
  color: #ffffff;
}
.btn.primary:hover {
  background: rgb(178.5, 0, 116.2);
}

@media (max-width: 768px) {
  .navbar .nav-links {
    display: none;
  }
  .hero .hero-content h1 {
    font-size: 3rem;
  }
  .hero .hero-content p {
    font-size: 1.2rem;
  }
  .footer .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer .footer-links {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/*# sourceMappingURL=/main.f85fdb92.css.map */