/* Increase overall font size */
body {
    font-family: Arial, sans-serif;
    margin: 20px;
    font-size: 16px;  /* increased from default; adjust as needed */
}

/* Center the Pay with Stripe button and enlarge it */
.button {
  background-color: #26a69a;
  border: none;
  color: white;
  padding: 12px 25px;
  text-align: center;
  text-decoration: none;
  font-size: 1em;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #2bbbad;
}


/* Ensure the container occupies the full width of the screen */
.header-image {
  width: 100%;
  overflow: hidden;  /* Prevent any overflow */
}

/* Force the image to scale responsively */
.header-image img {
  width: 100%;       /* Scale the image to fill the container */
  max-width: 100%;   /* Do not let the image exceed its container */
  height: auto;      /* Maintain aspect ratio */
  display: block;    /* Remove default inline spacing */
  margin: 0 auto;    /* Center the image if it's smaller than the container */
}



/* Header styling remains the same */
#header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Gallery container: center the items */
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;   /* centers gallery items */
}

/* Gallery items: increase size and add some margin */
.gallery-item {
    margin: 15px;
    flex: 0 0 250px;  /* fixed width; adjust as needed */
}

/* Gallery item images: fill the gallery item container */
.gallery-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 1px solid #ccc;
}

/* Content area for viewing an item: center content */
.content {
    text-align: center;
}

/* When viewing an image or video, make it fill the screen but not exceed it */
.content img, .content video {
    max-width: 100%;
    max-height: 100vh;  /* ensures it doesn't exceed the viewport height */
    width: auto;
    height: auto;
}
