/* General body styles */
body {
  font-family: "Inter", Arial, sans-serif;
  background-color: #f9f9f9;
  color: #333;
  max-width: 900px;
  margin: 24px auto;
  padding: 0 16px;
  line-height: 1.6;
}

/* Headings */
h1 {
  margin-top: 0;
  font-weight: 600;
}

small {
  display: block;
  margin-bottom: 16px;
  color: #666;
}

/* Paragraphs */
p {
  margin-bottom: 16px;
}

/* Links */
a {
  color: #0077cc;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Screenshot grid */
.shots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

/* Individual shot styling */
.shot {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px;
  min-height: 140px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.shot:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.shots {
  display: grid;
  grid-template-columns: 1fr; /* single column by default */
  gap: 24px;
  margin: 24px 0;
}

@media (min-width: 800px) {
  .shots {
    grid-template-columns: 1fr 1fr; /* two columns on wider screens */
  }
}

.shot img {
  width: 100%; /* fill the card */
  height: auto; /* maintain aspect ratio */
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0 auto;
}

/* Small captions */
.shot small {
  color: #555;
}

.banner {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
}

.banner-text {
  position: absolute;
  bottom: 24px;
  left: 32px;
  color: #ffffff;
  background-color: rgba(85, 85, 85, 0.452);
  padding: 12px 16px;
  border-radius: 16px;
}

.banner-text h1 {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 600;
}

.banner-text small {
  font-size: 0.95rem;
  opacity: 0.9;
}
