body {
	font-family: "Poppins", sans-serif;
	scroll-behavior: smooth;
}

/* navbar */
.bg-white {
	background-color: rgb(113, 185, 119) !important; /* hijau lembut */
}

.nav-link {
	color: #0d6efd !important;
	font-weight: 500;
}

.nav-link.active {
	font-weight: 700;
}

.navbar .nav-link {
	color: #fff !important;
	position: relative;
	font-weight: 500;
	transition: all 0.3s ease;
	padding-bottom: 5px;
}

.navbar .nav-link::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0%;
	height: 2px;
	background-color: #fff;
	transition: width 0.3s;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
	width: 100%;
}

.navbar .nav-link:hover {
	opacity: 0.9;
}

.navbar-toggler {
	border-color: rgba(255, 255, 255, 0.4);
}

.navbar-toggler-icon {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255,255,255, 1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/ %3E%3C/svg%3E");
}

section {
	scroll-margin-top: 80px;
}

/* === HERO SECTION === */
.hero {
	background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
		url("../../img/bg.png") center/cover no-repeat;
	min-height: 100vh;
	color: #fff;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.hero h1 {
	font-size: 2.5rem;
	font-weight: 700;
}

.hero p {
	font-size: 1.1rem;
	line-height: 1.6;
}

.hero .btn {
	font-weight: 600;
	border-radius: 30px;
}

.hero img {
	width: 100%;
	max-width: 450px;
	animation: float 3s ease-in-out infinite;
}

@keyframes float {
	0% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
	100% {
		transform: translateY(0);
	}
}

/* Section Tentang */
#tentang {
	background-color: #ffffff;
}

#tentang h2 {
	font-weight: 700;
	color: #0d6efd;
}

#tentang p {
	color: #495057;
	line-height: 1.8;
	font-size: 1.05rem;
	transition: all 0.5s ease;
}

/* --- Read More Animation --- */
.more-text {
	display: none;
	opacity: 0;
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.more-text.show {
	display: block;
	opacity: 1;
	transform: translateY(0);
	animation: fadeInDown 0.6s ease;
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Tombol Read More */
#read-more-btn {
	transition: all 0.3s ease;
}
#read-more-btn:hover {
	transform: scale(1.05);
}

/* Responsif */
@media (max-width: 768px) {
	#tentang .row {
		text-align: center;
	}
	#tentang img {
		margin-bottom: 20px;
	}
}

/* === SECTION KONTAK === */
#kontak {
	padding: 100px 0;
	background-color: #f1f5ff;
}

#kontak h2 {
	color: #0d6efd;
	font-weight: 700;
}

#kontak p,
#kontak li {
	color: #495057;
	font-size: 1.05rem;
	line-height: 1.7;
}

/* --- Footer --- */
footer a,
.social-link,
.whatsapp-float {
	text-decoration: none !important;
}

/* Kontainer ikon sosmed */
.social-icons {
	display: flex;
	justify-content: center;
	gap: 18px;
}

/* Gaya umum ikon */
.social-link {
	font-size: 34px;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

/* Warna khusus tiap platform */
.social-link.ig {
	background: radial-gradient(
		circle at 30% 107%,
		#fdf497 0%,
		#fdf497 5%,
		#fd5949 45%,
		#d6249f 60%,
		#285aeb 90%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.social-link.fb {
	color: #1877f2;
}
.social-link.x {
	color: #000;
}
.social-link.yt {
	color: #ff0000;
}

/* Efek hover */
.social-link:hover {
	transform: translateY(-3px);
	opacity: 0.8;
}

/* --- Tombol WhatsApp melayang --- */
.whatsapp-float {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 25px;
	right: 25px;
	background-color: #25d366;
	color: white;
	border-radius: 50%;
	text-align: center;
	font-size: 34px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.whatsapp-float:hover {
	background-color: #1ebe57;
	transform: scale(1.1);
}
