/* Custom Styles for Antique ID Landing Page */

html, body {
  scroll-behavior: smooth;
}

/* Navigation brand tweaks */
.navbar-brand {
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

/* Feature icon circle */
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  font-size: 1.5rem;
}

/* Carousel images maintain phone aspect */
.carousel-item img {
  max-height: 600px;
  object-fit: contain;
}

footer a:hover {
  color: #ffffff !important;
} 

/* Blog article styles */
article {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

article img {
  max-width: 100%;
  height: auto;
  border-radius: 0.25rem;
  margin: 1rem 0;
}

article h1, article h2, article h3, article h4, article h5 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

article p {
  line-height: 1.7;
  margin-bottom: 1rem;
}

article table {
  width: 100%;
}

article table th,
article table td {
  padding: 0.75rem;
  border: 1px solid #dee2e6;
}

.table-wrapper {
  overflow-x: auto;
} 