html, body {
	margin: 0;
	padding: 0;
	height: 100%;
	scroll-behavior: smooth;
}

.hero {
	height: 100vh;
	background-attachment: fixed;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}

.overlay {
	background-color: rgba(0, 0, 0, 0.5);
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: white;
	padding: 1rem;
	position: relative;
}

.icon-img {
	width: 120px;
	height: 120px;
	object-fit: contain;
	margin: 20px auto;
}

.scroll-indicator {
	position: absolute;
	bottom: 80px;
	font-size: 1.5rem;
	color: white;
	animation: bounce 2s infinite;
}

@keyframes bounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(10px); }
}

.navbar {
	background-color: rgba(0, 0, 0, 0.3) !important;
}

/*
.scroll-section {
	min-height: 100vh;
	padding: 60px 20px;
	background-color: #f8f9fa;
}
*/

.section {
	padding: 60px 20px;
}

.gallery img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.2);
	transition: transform 0.3s ease;
}

.gallery img:hover {
	transform: scale(1.03);
}

footer {
	background-color: #222;
	color: #ccc;
	text-align: center;
	padding: 1rem 0;
	position: fixed;
	bottom: 0;
	width: 100%;
	z-index: 10;
	font-size: 0.9rem;
}

@media (max-width: 768px) {
	h1 { font-size: 2rem; }
	.subtitle { font-size: 1rem; }
	.icon-img { width: 80px; height: 80px; }
}
