* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
  height: 100%;
  font-family: 'Georgia', serif;
  color: #fff;
  background-color: rgba(255, 255, 255, 1);
}

/* BACKGROUND IMAGE */
.background-overlay {
  min-height: 100vh;
  background-image: url('img/bckg-1.jpg'); /* Your background */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  backdrop-filter: brightness(0.9);
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;  
  padding: 40px 20px;
  text-align: center;    
}

/* HEADER TEXT */
header h1 {
  font-size: 3rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
  margin-bottom: 10px;
}

header p {
  font-size: 1.3rem;
  color: #f1f1f1;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  margin-bottom: 40px;
}

/* AGENCY LINK BUTTON */


.agency-link p {
  font-size: 1.1rem;
  margin-bottom: 15px;
  background-color: rgba(255, 255, 255, 0.8);
  color: #333;
	line-height: 1.5;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.agency-link a:hover {
  background-color: #fff;
}

/* FOOTER */
footer {
  position: absolute;
  bottom: 15px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.gallery {
  text-align: center;
  margin: 60px 60px 30px 60px;
  max-width: 1000px;
  color: #fff;
}

.gallery h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.logo {
  max-width: 450px;
  height: auto;
  margin-bottom: 10px;
}

/* Optional: add a subtle shadow or scaling effect */
/*.logo:hover {
  transform: scale(1.03);
  transition: transform 0.3s ease;
}*/
.carousel-container-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  overflow: hidden;
}

.carousel-container {
  overflow-x: scroll;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  width: 100%;
  padding: 10px 0;
}

.carousel-container::-webkit-scrollbar {
  display: none;
}
.carousel-container {
  scrollbar-width: none;
}

.carousel-track {
  display: flex;
  gap: 10px;
  padding: 0 10px;
}

.carousel-track a {
  flex: 0 0 auto;
  width: 23%; /* ✅ 4 thumbnails per row max */
  max-width: 150px;
}

.carousel-track a img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s ease;
  display: block;
}

.carousel-track a img:hover {
  transform: scale(1.05);
}

/* Buttons (optional) */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 6px 12px;
  cursor: pointer;
  z-index: 10;
  border-radius: 4px;
  display: none; /* default: hide for mobile */
}

.carousel-btn.left {
  left: 5px;
}
.carousel-btn.right {
  right: 5px;
}

/* Show arrows only on wider screens */
@media (min-width: 768px) {
  .carousel-btn {
    display: block;
  }
}