/* פסיכו-לקסיקון - דף נחיתה */
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;700;900&display=swap');

:root {
  --primary-color: #1e3a5f;
  --secondary-color: #2c4f7c;
  --accent-color: #ffffff;
  --background-color: #f5f7fa;
  --text-color: #333333;
  --shadow-color: rgba(0, 0, 0, 0.1);
}

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

body {
  font-family: 'Heebo', sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  direction: rtl;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

header {
  text-align: center;
  padding: 2rem 0;
}

.logo {
  width: 120px;
  height: 120px;
  margin-bottom: 1.5rem;
  border-radius: 22px;
  box-shadow: 0 4px 8px var(--shadow-color);
}

h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 900;
}

.description {
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: var(--text-color);
  line-height: 1.8;
}

.app-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.app-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.app-link:hover {
  transform: translateY(-5px);
}

.store-logo {
  width: 180px;
  height: auto;
  margin-bottom: 0.5rem;
}

.store-name {
  color: var(--primary-color);
  font-weight: 500;
}

.app-screenshots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
  overflow-x: auto;
  padding: 1rem 0;
}

.screenshot {
  width: 200px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 8px var(--shadow-color);
}

footer {
  text-align: center;
  padding: 2rem 0;
  color: var(--secondary-color);
  font-size: 0.9rem;
}

/* רספונסיביות */
@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  .description {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  .app-links {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  
  .logo {
    width: 100px;
    height: 100px;
  }
  
  .store-logo {
    width: 160px;
  }
}
