/* === Home Page Styles === */

.home-header {
  text-align: center;
  padding: 50px 20px 20px;
  background-color: #007BFF;
  color: white;
}

.hero {
  text-align: center;
  padding: 60px 20px;
  background: #e9f7ff;
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  font-size: 18px;
  background-color: #007BFF;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
}

.cta-button:hover {
  background-color: #0056b3;
}

.features {
  padding: 60px 20px;
  background: white;
  text-align: center;
}

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

.feature-item {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.how-it-works {
  padding: 60px 20px;
  background: #e9f7ff;
  text-align: center;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 30px;
}

.step {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  width: 250px;
}

.footer {
  text-align: center;
  padding: 20px;
  background: #f8f9fa;
  color: #666;
  font-size: 14px;
  border-top: 1px solid #ddd;
}

.footer a {
  color: #007BFF;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f2f2f2;
}

.screenshots {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

.screenshots h2 {
  margin-bottom: 30px;
  font-size: 28px;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-content: center;
}

.screenshot-grid img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
}

.screenshot-grid img:hover {
  transform: scale(1.02);
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.8);
  overflow: auto;
}

.modal-content {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #bbb;
}
