html {
  scroll-behavior: smooth;
}

body {
  font-family: "Source Sans Pro", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
}

#menuBtn {
  font-size: 22px;
  cursor: pointer;
  position: fixed;
  top: 25px;
  left: 20px;
  color: #000;
  background-color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  z-index: 1001;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  user-select: none;
  transition: background-color 0.3s ease;
}

#menuBtn:hover,
#menuBtn:focus {
  background-color: rgba(255, 182, 193, 0.5);
  color: #fff;
  outline: none;
}

/* Overlay menu */
.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.9);
  overflow-x: hidden;
  transition: 0.5s;
}

.overlay-content {
  position: relative;
  top: 25%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.overlay a:hover,
.overlay a:focus {
  color: #f1f1f1;
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
}

.book-button {
  background-color: rgba(255, 182, 193, 0.5);
  border: 2px solid white;
  color: white;
  text-decoration: none;
}

.book-button:hover,
.book-button:focus {
  background-color: #d32f2f;
  outline: none;
}

button a {
  color: inherit;
  text-decoration: none;
}

/* For the price list image, make it responsive */
#Price\ List img {
  max-width: 100%;
  height: auto;
  align-items: center;
}

nav ul {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
}

nav li a {
  text-decoration: none;
  color: #444;
  font-weight: bold;
}

nav li a.active {
  color: #f15b5b;
}

main {
  padding: 2rem;
  max-width: 800px;
  margin: auto;
}

h2, h3, h4 {
  color: #333;
  margin-top: 2rem;
}

.photo-pair,
.photo-trio {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
}

.photo-pair img,
.photo-trio img {
  width: 100%;
  max-width: 250px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Responsive stacking on small screens */
@media (max-width: 600px) {
  .photo-pair,
  .photo-trio {
    flex-direction: column;
    align-items: center;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
  }
}

/* Catalogue page photo styling */
.photo-trio {
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

/* On very small screens (phones), photos get bigger */
@media (max-width: 600px) {
  .photo-trio img {
    max-width: 90%; /* nice big on phones */
  }
  .catalog-image {
    width: 100%;
    height: auto;
  }
}

/* On larger screens (tablets and up), photos get smaller */
@media (min-width: 601px) and (max-width: 1024px) {
  .photo-trio img {
    max-width: 45%; /* medium size on tablets */
  }
  .catalog-image {
    max-width: 400px;
  }
}

/* On laptops and desktops, photos smaller but nicely spaced */
@media (min-width: 1025px) {
  .photo-trio img {
    max-width: 30%; /* smaller on laptops/desktops */
  }
  .catalog-image {
    max-width: 300px;
  }
}

.slideshow-container {
  max-width: 700px;
  position: relative;
  margin: auto;
}

.mySlides {
  display: none;
}

.mySlides img {
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 4px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s;
}



.slideshow-container {
  max-width: 90vw;      /* responsive width */
  width: 100%;
  max-height: 500px;    /* limit height */
  margin: auto;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.slide-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}


.active, .dot:hover {
  background-color: #717171;
}

@media (min-width: 768px) {
  .slideshow-container {
    max-width: 600px;
  }
}

.slideshow-arrows {
  text-align: center;
  margin-top: 15px;
}

.slideshow-arrows .prev,
.slideshow-arrows .next {
  cursor: pointer;
  color: #b22222;
  font-size: 2.5rem;
  padding: 0 30px;
  user-select: none;
  transition: color 0.3s ease;
  position: static; /* Remove absolute positioning */
  display: inline-block; /* Show inline side by side */
  border-radius: 0; /* Remove rounded corners from absolute */
  background-color: transparent; /* Remove background */
}

.slideshow-arrows .prev:hover,
.slideshow-arrows .next:hover {
  color: #7a0d0d;
  background-color: transparent;
}

