@import url('https://fonts.googleapis.com/css2?family=Host+Grotesk:ital,wght@0,300..800;1,300..800&display=swap');

/* Font for code */
@font-face {
    font-family: 'SoehneMonoBuch';
    src: url('./fonts/soehne-mono-buch.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

/* General Font */
@font-face {
    font-family: 'SoehneBuch';
    src: url('./fonts/soehne-buch.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

/* General Font */
@font-face {
  font-family: 'Helvetica';
  src: url('./fonts/Helvetica.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}


:root {
  --primary-color: #03a9f4;
  --background-color: #080808;
  --secondary-background: #080808;
  --dark-background: #080808;
  --text-color: #808080;
  --highlight-color: #808080;
  --white: #ffffff;
  --gray: #808080;
}

body {
  background-color: var(--background-color);
  font-family: 'SoehneBuch', serif;
  font-weight: 300;
  margin: 0;
  padding: 0;
  color: var(--white);
}

.site-name {
  font-family: 'SoehneBuch', serif;
}

.disabled-button {
  pointer-events: auto; /* Allows clicking */
  cursor: not-allowed;  /* Shows the stop cursor */
  color: white;
  text-decoration: none;
  border-radius: 5px;
  opacity: 0.6;
}
  
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  position: relative;
}

.logo {
  width: 30px;
  height: 30px;
  padding-right: 10px;
}

.site-name {
  color: var(--white);
}

.logo-container {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: absolute;
  left: 300px; /* Move the logo 100px from the left */
}

nav {
  flex: 1; /* Allows the nav to take up available space */
  display: flex;
  justify-content: center; /* Centers the nav links */
  gap: 15px;
}

.nav-link1,
.nav-link2 {
  text-decoration: none;
  color: rgb(255, 255, 255); /* Default color */
  padding: 8px 12px;
  font-size: 14px;
  position: relative;
  transition: color 0.3s, transform 0.3s;
}

/* Responsive Design for Mobile */
@media (max-width: 1100px) {
  header {
    flex-direction: column;
    padding: 12px;
  }

  .logo-container {
    position: static; /* Reset position on mobile */
    margin-bottom: 12px;
  }

  nav {
    justify-content: center;
  }
}

/* When any .nav-link is hovered, make all siblings turn grey */
.nav-link1:hover,
.nav-link2:hover,
.nav:hover {
  transform: scale(1.05); /* Optional hover effect */
}

.grey {
  color: grey;
}

main {
  padding: 20px 10px;
  text-align: center;
}

.about {
  background-color: var(--secondary-background);
  padding: 20px;
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto;
}

.about h1 {
  font-size: 30px;
  color: var(--white);
}

.about p {
  font-size: 1em;
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 20px;
  font-weight: 300;
}

.roadmap {
  margin-top: 40px;
  background-color: var(--dark-background);
  padding: 30px;
  border-radius: 8px;
}

.roadmap h2 {
    font-size: clamp(1.6em, 4vw, 1.8em);
    margin-bottom: 15px;
    color: var(--white);
    text-align: center;
  }
  
  .roadmap-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .roadmap-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
  }
  
  .future {
    background-color: var(--secondary-background);
    padding: 20px;
    border-radius: 8px;
    margin-top: 40px;
  }
  
  .future h2 {
    font-size: clamp(1.6em, 4vw, 1.8em);
    margin-bottom: 15px;
    color: var(--white);
    text-align: center;
  }
  
  .future p {
    font-size: 1em;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 20px;
    text-align: justify;
    font-weight: 300;
  }
  
  /* Comparison Section Styling */
  .comparison {
    background-color: var(--dark-background);
    padding: 20px;
    border-radius: 8px;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .comparison h2 {
    font-size: clamp(1.6em, 4vw, 1.8em);
    margin-bottom: 15px;
    color: var(--white);
    text-align: center;
  }
  
  .comparison p {
    font-size: 1em;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 300;
    text-align: justify;
  }
  
  .comparison-images {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }
  
  .comparison-image {
    max-width: calc(50% - 10px);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .comparison-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
  }
  
  @media (max-width: 768px) {
    .comparison-images {
      flex-direction: column;
    }
  
    .comparison-image {
      max-width: 100%;
    }
  }
  
  /* General Utility Classes */
  .text-center {
    text-align: center;
  }
  
  .text-justify {
    text-align: justify;
  }
  
  .mt-20 {
    margin-top: 20px;
  }
  
  .mb-20 {
    margin-bottom: 20px;
  }

/* Footer General Styling */
footer {
    background-color: #080808; /* Black background */
    color: #fff; /* White text */
    padding: 40px 150px;
    font-family: 'SoehneBuch', serif;
    font-size: 0.8rem;
  }
  
  /* Footer Categories */
  .footer-categories {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
    margin-bottom: 40px;
  }
  
  .footer-column {
    flex: 1 1 15%;
    min-width: 150px;
  }
  
  .footer-column h3 {
    color: #bbb;
    text-transform: uppercase;
    margin-bottom: 15px;
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-column li {
    margin-bottom: 10px;
  }
  
  .footer-column a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  
  /* Footer Bottom Section */
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Align items to the left */
    align-items: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 0.85rem;
    color: #bbb;
  }

  .footer-language {
    background-color: #171717;
    padding: 7px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 5px;
  }

  .footer-language:hover {
    background-color: #202020;
  }
  
  .footer-language a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
  }
  
  .footer-meta p,
  .footer-meta a {
    margin: 0;
    color: #bbb;
    text-decoration: none;
    font-size: 0.9rem;
  }
  
  .footer-meta a:hover {
    color: #00aaff;
  }
  
  /* Footer Social Icons */
  .footer-socials {
    display: flex;
    gap: 15px;
  }
  
  .footer-socials a {
    display: inline-block;
    width: 24px;
    height: 24px;
  }
  
  .footer-socials img {
    width: 100%;
    height: auto;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .footer-categories {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .footer-column {
      margin-bottom: 20px;
    }
  
    .footer-bottom {
      flex-direction: column;
      gap: 15px;
      align-items: center;
    }
  }
  



  


  
  /* Main Content Styling */
  main {
    padding: 40px 10px; /* Increased vertical padding for main content */
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .about {
    background-color: var(--secondary-background);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 40px;
  }
  
  .about h1 {
    color: var(--white);
    margin-bottom: 15px;
  }
  
  .about p {
    font-size: 1.05em;
    color: var(--text-color);
    margin-bottom: 30px;
  }
  
  /* Buttons */
  button {
    font-family: 'SoehneBuch', serif;
    background-color: var(--white);
    color: #080808;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 30px;
    transition: background-color 0.3s;
  }
  
  button:hover {
    background-color: #f0f0f0;
  }
  
  /* Products Section */
  .products {
    margin-top: 40px;
  }

  .products p {
    color: rgb(128, 128, 128);
  }
  
  .product-container {
    display: flex;
    justify-content: space-between;
    gap: 20px; /* Increased gap for better spacing */
    flex-wrap: wrap;
  }
  
  .product {
    background-color: #0f0f0f;
    padding: 20px;
    border-radius: 12px;
    flex: 1 1 calc(33% - 20px); /* Adjust width with more spacing */
    box-sizing: border-box;
    transition: transform 0.3s ease;
  }
  
  .product:hover {
    transform: scale(1.01);
  }
  
  .product ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .product li {
    font-size: 1.1em;
    color: var(--highlight-color);
    margin-bottom: 12px;
  }
  
  .general-box {
    margin-top: 60px;
    padding: 25px;
    background-color: var(--secondary-background);
    border-radius: 12px;
    margin: 0 auto;
  }
  
  .general-box h2 {
    color: var(--white);
    margin-bottom: 20px;
  }

  .general-box p {
    color: var(--text-color)
  }
  
  .general-box ul {
    list-style: none;
    padding: 0;
  }
  
  .general-box li {
    font-size: 1.2em;
    color: var(--highlight-color);
    margin-bottom: 15px;
  }
  
  /* Call to Action Section */
  .call-to-action {
    margin-top: 60px;
    background-color: #0f0f0f;
    border-radius: 12px;
    padding-top: 30px;
    padding-bottom: 50px;
  }

  .btn-1,
  .btn-2 {
    margin-right: 5px;
    margin-left: 5px;
  }

  .btn-2 {
    margin-top: 10px;
  }

  .disabled-btn {
    opacity: 70%;
    cursor: not-allowed;
  }