body, html {
	scroll-behavior: smooth;
	/* height: 100%; */
}

/* .parallax-section {

} */

.parallax-section {
	width: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover; /* ⚠️ Changed from cover */
	background-attachment: fixed;
	display: block;
}

 /* Mobile fix: Disable fixed attachment on small devices */
 @media (max-width: 1024px) {
	.parallax-section {
	  background-attachment: scroll;
	}
  }