/* style.css */
html, body {
  scroll-behavior: smooth;
  margin: 0;
  font-family: var(--font-body);
  background: var(--primary-bg);
  color: #333;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-color);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.section {
  padding: 4rem 1rem;
}

.light-bg { background: var(--primary-bg); }
.color-bg1 { background: var(--secondary-bg); }
.color-bg2 { background: var(--tertiary-bg); }

.fade-anim {
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.6s ease-out;
}

.fade-anim.visible {
  opacity: 1;
  transform: scale(1);
}

.heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  padding-bottom: 0;
  margin-bottom: 0rem;
  text-align: center;
}

.subheading {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.screenshot-container {
  max-width: 800px;
  margin: auto;
}

.glider-slide {
  padding: 0 0.5rem;
  box-sizing: border-box;
  overflow: visible;
  padding-bottom: 1.0rem;
}

.glider-slide img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  image-rendering: auto;
  overflow: visible;
}

form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input, select, textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

button {
  background: var(--accent-color);
  color: #fff;
  border: none;
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
}

.footer {
  text-align: center;
  font-size: 0.9rem;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.app-icon {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  border: 4px solid #000;
  object-fit: cover;
  margin-bottom: 1rem;
}

.download-buttons img {
  height: 50px;
  margin: 0 0.5rem;
}

#header div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-link {
  margin-top: 1rem;
  text-align: center;
}

.contact-link a.button {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: var(--accent-color);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
}

/* Glider controls */
.dots {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.glider-dot {
  background-color: #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  margin: 0 5px;
}

.glider-dot.active {
  background-color: var(--accent-color);
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .heading {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .download-buttons img {
    height: 40px;
  }
}

.subheading {
  font-size: 1rem;
  text-align: center;
  margin-top: 0rem;
  margin-bottom: 2rem;
  opacity: 0.85;
}

.feature {
  max-width: 800px;
  margin: 2rem auto;
}

.feature-title {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.feature-body {
  text-align: justify;
  line-height: 1.6;
}