/* CSS STYLES FOR ALL PAGES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem 2rem;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
}

.nav-links a {
  margin-left: 2rem;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: #4a90e2;
  color: white;
}

section {
  padding: 5rem 2rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#features,
#docs,
#screens {
  background: #f5f8ff;
}

.button-container {
  text-align: center;
  margin-top: 2rem;
}

.how-it-works-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #4a90e2;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(74, 144, 226, 0.2);
}

.how-it-works-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 8px rgba(74, 144, 226, 0.3);
  background: #357abd;
}

.screens-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 5rem;
  /* padding: 2rem; */
  justify-items: center;
}

.screen-item img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.screen-item h3 {
  margin: 1rem 0;
  color: #333;
}
*/ .screen-item:hover {
  transform: translateY(-10px);
}

.screens-carousel {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 2rem 0;
  justify-content: center;
  align-items: flex-start;
}

.screen-item {
  width: 300px;
  height: 675px;
  padding: 1rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.screen-item img {
  width: 280px;
  height: 675px;
  object-fit: cover;
  border-radius: 30px;
}

.screen-item {
  flex: 0 0 auto;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.screen-item:hover {
  transform: translateY(-10px);
}

.screen-item h3 {
  margin: 1rem 0;
  color: #4a90e2;
}

.feature-subtext {
  text-align: center;
  color: #666;
  margin-bottom: 3rem;
}

.features-more {
  text-align: center;
  color: #333;
  margin-top: 2rem;
  font-style: italic;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 6rem;
}

.hero-content {
  flex: 1;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.tagline {
  font-size: 1.5rem;
  color: #666;
  margin-bottom: 1rem;
}

.hero-image {
  flex: 1;
  max-width: 600px;
  border-radius: 10px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.features-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.feature-card {
  width: 350px;
  height: 450px;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  background: white;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card img {
  width: 350px;
  height: 500px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 1rem;
}

.feature-card-2 {
  width: 500px;
  height: 650px;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  background: white;
  text-align: center;
}

.feature-card-2:hover {
  transform: translateY(-5px);
}

.feature-card-2 img {
  width: 350px;
  height: 500px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 1rem;
}

.screens-carousel {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 2rem 0;
}

.screens-carousel img {
  height: 600px;
  border-radius: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.video-container {
  width: 100%;
  max-width: 800px;
  margin: 2rem auto;
}

.video-container img {
  width: 100%;
  border-radius: 10px;
}

.docs-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.doc-button {
  padding: 1rem 2rem;
  background: #333;
  color: white;
  text-decoration: none;
  border-radius: 100px;
  transition: background 0.3s ease;
}

.doc-button:hover {
  background: #555;
}

.team-members {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 2rem;
}

.team-member {
  text-align: center;
}

.team-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

footer {
  text-align: center;
  padding: 2rem;
  background: #333;
  color: white;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .nav-links {
    display: none;
  }

  .hero-image {
    max-width: 100%;
  }
}
