@import url("https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap");
@import url("./utilities.css");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Geist", system-ui, sans-serif;
  color: #fff;
  background: #000;
}
.side-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 100vh;
  background: rgba(20, 20, 20, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 10000;
  overflow: hidden;
  transition: 0.6s ease;
}
.side-nav-content {
  text-align: center;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.side-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.side-nav-closebtn {
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.side-nav-closebtn-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
}

/* Floating Navbar */
.navbar {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(20, 20, 20, 0.9);
  border-radius: 20px;
  padding: 10px 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  width: 90%;
  max-width: 600px;
  backdrop-filter: blur(10px);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 600px;
  margin: 0 auto;
}

.nav-container  ul {
  display: none;
  gap: 10px;
  flex-direction: row;
  list-style: none;
}
.navbar .logo {
  font-size: 1.2rem;
  font-weight: bold;
}

nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}


@keyframes dot-loading {
  0% {
    content: "/";
  }
  50% {
    content: "//";
  }
  100% {
    content: "///";

  }
}
pre {
  max-width: 300px;
}
.pw-ani {
  width: 30px;
  height: 20px;
  background: red;
}

/* Hero */
.hero {
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6rem 2rem;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7)),
    url("../img/macos.webp") center center/cover;
  background-blend-mode: darken;
  flex-direction: column;
}
.hero-content {
  max-width: 600px;
  margin: 0 auto;
}
.hero h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: auto;
  opacity: 0.8;
}

.hero-buttons {
  margin-top: 1.5rem;
}

/* Features */
.features {
  padding: 4rem 2rem;
  background: #111;
  text-align: center;
}
.features-content {
  max-width: 600px;
  margin: 0 auto;
}

.features h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.feature-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}


.feature-card {
  background: #1c1c1c;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: left;
  border: 1px solid #313131;
  transition: transform 0.2s ease;
  cursor: pointer;
}
.feature-card:hover {
  transform: scale(1.02);
}
.feature-card h3 {
  margin-bottom: 0.5rem;
}
.feature-card pre {
  width: 100%;
  margin-top: 10px;
  background: #111;
  padding: 10px;
  font-size: 0.8rem;
  border-radius: 6px;
  color: rgb(102, 102, 102);
}

.feature-card.wide {
  grid-column: span 1;
}

.feature-card ul {
  margin-top: 1rem;
  list-style: none;
  padding-left: 0;
}

/* CTA */
.cta {
  padding: 4rem 2rem;
  text-align: center;
  background: #000;
}

.cta h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.note {
  margin-top: 1rem;
  opacity: 0.7;
}

/* Footer */
footer {
  padding: 2rem;
  background: #0a0a0a;
  color: #999;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  max-width: 600px;
  margin: auto;
}

footer a {
  display: block;
  margin: 0.3rem 0;
}

footer h4 {
  margin-bottom: 0.5rem;
  color: #fff;
}

footer p,
footer a {
  opacity: 0.8;
}

footer .copyright {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.8rem;
  opacity: 0.6;
}

.hero-content,
.features-content,
.cta-content,
.footer-content {
  max-width: 600px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .navbar ul {
    display: flex;
  }
  .navbar .ph-list {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  .navbar {
    width: 100%;
    max-width: 600px;
    backdrop-filter: blur(10px);
  }
  .feature-card.wide {
    grid-column: span 2;
  }
}
