/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  scrollbar-width: none;
}

body {
  /* background-color: #fafafb; */
  color: #212631;
  background: #fefefe;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.flex--row {
  display: flex;
}

.align--center {
  align-items: center;
}

.gap--sm {
  gap: 10px;
}

.image--contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  padding: 0 5%;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid #e0e0e0;
  z-index: 1100;
}

.navbar__toolbar {
  padding: 24px 0;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer--logo--container {
  display: flex;
  align-items: center;
  gap: 6px;
}

.icon-logo {
  height: 40px;
  width: 40px;
  margin: 0;
}

.icon-logo-footer {
  height: 35px;
  width: 35px;
  margin: 0;
}

.text-logo {
  height: 40px;
  width: 120px;
  margin: 0;
}
.text-logo-footer {
  height: 35px;
  width: 100px;
  margin: 0;
}

/* Main Content Styles */
.main-content {
  width: 100vw;
  padding: 0 5%;
  margin-top: 100px;
  display: flex;
  flex-direction: column;
}

.content-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Left Section */
.left-section {
  width: 100%;
  padding: 10% 2% 0 2%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.main-heading {
  font-size: 50px;
  letter-spacing: -0.04em;
  line-height: 50px;
  font-weight: 600;
  color: #1e9393e5;
}

.description {
  font-size: 16px;
  color: #65686c;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 26px;
  margin: 16px 0;
}

.download-buttons {
  display: flex;
  gap: 24px;
}

/* Right Section */
.right-section {
  width: 100%;
  margin-top: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-preview {
  max-width: 100%;
  height: auto;
}

/* Footer Styles */
.footer {
  padding: 5%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

.copyright {
  font-size: 13px;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
}

.footer-links-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer-link {
  font-size: 12px;
  font-weight: 500;
  line-height: 25px;
  text-decoration: none;
  color: #000000;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.footer-brand-text {
  font-size: 13px;
  font-weight: 400;
  line-height: 25px;
  text-decoration: none;
  color: #000000;
}

/* Download Button Styles */
.download-button {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #000000;
  transition: all 0.3s ease-in-out;
  padding: 5px 10px;
  background: none;
  cursor: pointer;
  border-radius: 5px;
  text-transform: none;
}

.download-button:hover {
  transform: scale(0.95);
  background-color: white;
  border-color: #1e9393e5;
}

.download-button:hover .button-text-small,
.download-button:hover .button-text-large {
  color: #1e9393e5;
}

.button-avatar {
  width: 25px;
  height: 25px;
}

.button-text-container {
  display: flex;
  flex-direction: column;
  text-align: start;
  gap: -10px;
}

.button-text-small {
  font-size: 10px;
  color: #000000;
  transition: color 0.3s ease-in-out;
}

.button-text-large {
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  transition: color 0.3s ease-in-out;
}

/* Media Queries for Responsive Design */
@media (min-width: 1120px) {
  .navbar {
    padding: 0 7%;
  }

  .main-content {
    padding: 0 7%;
    flex-direction: row;
  }

  .content-container {
    flex-direction: row;
  }

  .left-section {
    width: 50%;
  }

  .main-heading {
    font-size: 80px;
    line-height: 80px;
  }

  .description {
    font-size: 18px;
  }

  .right-section {
    width: 50%;
    margin-top: 0;
  }

  .footer {
    padding: 1% 10%;
    flex-direction: row;
    gap: 4rem;
  }

  .footer-links-container {
    flex-direction: row;
  }

  .footer-links {
    gap: 1.5rem;
  }
  .footer-link {
    font-size: 13px;
  }

  .button-avatar {
    width: 40px;
    height: 40px;
  }

  .button-text-small {
    font-size: 12px;
  }

  .button-text-large {
    font-size: 18px;
  }
  .footer-links-container {
    gap: 2rem;
  }
}
