/* styles.css */

:root {
  --raspberry: #d81159;
  --jet: #323033;
  --dodger-blue: #0496FF;
  --orange-wheel: #F27A00;
  --russian-violet: #100e37;
}

body {
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
  background: linear-gradient(to bottom, var(--russian-violet) 30%, var(--orange-wheel) 80%);
  color: white;
  line-height: 1.6;
}

header {
  background-color: var(--russian-violet);
  padding: 1rem;
  text-align: center;
}

header h1 {
  color: var(--raspberry);
  text-align: center;
  font-family: 'Londrina Outline', sans-serif;
  font-size: 4.25rem;
  margin: 0;
}

a {
  color: var(--dodger-blue);
  text-decoration: none;
}

a:hover {
  color: var(--dodger-blue);
  text-decoration: none;
}

button {
  background-color: var(--orange-wheel);
  text-align: center;
  color: white;
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: var(--raspberry);
}

.card {
  background-color: var(--jet);
  color: white;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1rem auto;
  max-width: 600px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

h2 {
  color: var(--dodger-blue);
  text-align: center;
}

footer {
  background-color: var(--orange-wheel);
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #ccc;
}

 .image-container {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.image-wrapper {
  flex: 1 1 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

.image-wrapper img {
  width: 100%;           /* Fill container width */
  height: auto;          /* Keep aspect ratio */
  display: block;
  transition: transform 0.3s ease;
}

/* Side-by-side on screens 600px and up */
@media (min-width: 600px) {
  .image-wrapper {
    flex: 1 1 0;
    max-width: 50%;
  }
}

/* Hover zoom for devices with pointer */
@media (hover: hover) and (pointer: fine) {
  .image-wrapper:hover img {
    transform: scale(1.1); /* Optional zoom level */
    cursor: zoom-in;
  }
}