body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

header {
  background-color: #f5f5f5;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}


.search-box {
  position: relative;
  display: inline-block;
}

.search-box input {
  padding: 10px 35px 10px 10px; /* space on the right for icon */
  font-size: 16px;
  width: auto;
}

.search-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10; /* ensures it’s above input */
}

.contact {
  font-size: 14px;
}

.main-photo {
  width: 100%;
  height: 400px;
  background: url('https://via.placeholder.com/1200x400') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-photo h1 {
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
}

footer {
  background-color: #222;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-photo {
    height: 250px;
  }
}


.image-gallery {
  padding: 30px 20px;
  background-color: #999898;
  display: flex;
  justify-content: center;
}

.gallery-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  max-width: 1000px;
  width: 100%;
}

.gallery-item {
  flex: 0 0 auto;
  width: 250px;
  scroll-snap-align: start;
  background-color: #fff;
  border: 1px solid #3a3a3a;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 80%;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.gallery-item h3 {
  margin: 10px 0;
  background-color: #94c1f2;
  font-size: 20px;
}

.decorative-line {
  height: 5px;
  background: linear-gradient(to right, #007bff 0%, #000000 100%);
  width: 100%;
}

.decorative-line2 {
  height: 1.5px;
  background: linear-gradient(to right, #007bff 0%, #000000 100%);
  width: 100%;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  display: flex;
  flex-direction: column;
}

.tagline {
  font-size: 14px;
  font-weight: normal;
  color: #555; /* or any subtle color */
  margin-top: 0.5px;
}

