* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  font-family: 'Roboto', sans-serif;
  background-color: #f4f4f4;
}

/* Basic layout */
.vertical-scroll-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.panel {
  width: 100%;
  min-height: 100vh;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* HERO SECTION */
.hero {
  background: url('website-pics/background-mainpage.jpg') no-repeat center center / cover;
  background-attachment: scroll; /* better for mobile */
  color: #fff;
  padding-top: 0;
}

.logo {
  max-width: 90%;
  height: auto;
  margin-top: -400px; /* ADJUSTABLE logo offset */
}

/* Headings and text */
h1 {
  font-size: 3.5rem;
  margin-top: 70px;
}

.slogan {
  font-size: 2.2rem;
  font-weight: 500;
  margin-top: 30px;
}

/* Sections */
.about, .services, .contact {
  background: #fff;
  color: #333;
}

.services ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.services li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.gallery {
  background:url(website-pics/gallery-final-background.png) no-repeat center center / cover;
  background-attachment: scroll; /* better for mobile */
  color: #fff;
  padding-top: 0;
}

.testimonials {
  background: url(website-pics/testimonials-background.png) no-repeat center center / cover;
  color: #fff;
}

.gallery-wrapper, .testimonials-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 20px 0;
  width: 100%;
  align-items: center;
}

.gallery-item, .testimonial {
  flex: 0 0 auto;
  width: 680px;
  background: rgba(156, 136, 136, 0.5);
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  scroll-snap-align: start;
}

.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.testimonial span {
  font-weight: bold;
  font-size: 1.5rem;
}

/* Responsive Tweaks */
@media (max-width: 992px) {
  .logo {
    margin-top: -60px;
  }

  h1 {
    font-size: 2.5rem;
  }

  .gallery-item, .testimonial {
    width: 240px;
  }
}

@media (max-width: 768px) {
  .logo {
    margin-top: -5400px;
  }

  h1 {
    font-size: 2.2rem;
  }

  .slogan {
    font-size: 1.75rem;
  }

  .gallery-item, .testimonial {
    width: 420px;
  }
}

@media (max-width: 576px) {
  .logo {
    margin-top: -500px;
  }

  h1 {
    font-size: 1.8rem;
  }

  .slogan {
    font-size: 1.75rem;
  }

  .gallery-item, .testimonial {
    width: 300px;
  }

  .panel {
    padding: 40px 10px;
  }
}
