* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #fafafa;
  color: #333;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 60px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-weight: 700;
  font-size: 20px;
}

.navbar nav a {
  margin-left: 24px;
  text-decoration: none;
  color: #444;
  font-weight: 500;
  position: relative;
}

.navbar nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #ff9800;
  left: 0;
  bottom: -6px;
  transition: .3s;
}

.navbar nav a:hover::after,
.navbar nav a.active::after {
  width: 100%;
}

.btn-nav {
  padding: 8px 16px;
  background: #ff9800;
  color: #fff !important;
  border-radius: 20px;
}

/* HERO */
.hero {
  padding: 80px 60px;

  background:
    linear-gradient(rgba(255,152,0,0.70), rgba(255,152,0,0.45)),
    url("LOGO\ YAYASAN\ warna.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-text {
  max-width: 600px;
}

.hero {
  color: white;
}

.badge {
  display: inline-block;
  background: #ff9800;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 16px;
  text-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 16px;
  line-height: 1.7;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* PROGRAM SECTION */
.program-section {
  padding: 80px 60px;
}

.program-card {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 80px;
}

.program-card.reverse {
  flex-direction: row-reverse;
}

.program-text {
  flex: 1;
}

.program-text h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.program-text p {
  line-height: 1.8;
  color: #555;
}

.program-image {
  flex: 1;
}

.program-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* FOOTER */

.footer{
background:#4a4aff;
color:white;
padding:50px 40px 20px;
margin-top:60px;
}

.footer-container{
max-width:1000px;
margin:auto;
display:flex;
justify-content:space-between;
gap:40px;
flex-wrap:wrap;
}

.footer-item{
flex:1;
min-width:240px;
}

.footer-item h3{
font-size:16px;
margin-bottom:14px;
}

.footer-item p{
font-size:14px;
line-height:1.6;
opacity:0.9;
}

/* link maps */

.footer-link{
display:inline-block;
margin-top:10px;
color:white;
text-decoration:none;
font-size:14px;
opacity:0.9;
}

.footer-link i{
margin-right:6px;
}

.footer-link:hover{
opacity:1;
}

/* social */

.footer-social{
display:flex;
flex-direction:column;
gap:10px;
}

.social-btn{
display:flex;
align-items:center;
gap:10px;
padding:10px 14px;
border-radius:8px;
text-decoration:none;
color:white;
font-size:14px;
transition:0.25s;
}

/* whatsapp */

.whatsapp{
background:#25D366;
}

.whatsapp:hover{
transform:translateY(-2px);
box-shadow:0 5px 12px rgba(0,0,0,0.2);
}

/* instagram */

.instagram{
background:#E4405F;
}

.instagram:hover{
transform:translateY(-2px);
box-shadow:0 5px 12px rgba(0,0,0,0.2);
}

/* footer bottom */

.footer-bottom{
text-align:center;
margin-top:35px;
padding-top:18px;
border-top:1px solid rgba(255,255,255,0.25);
font-size:13px;
opacity:0.8;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer {
    padding: 40px 30px 20px 30px;
  }

  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  
}

/* =========================
   ANIMATIONS
========================= */

/* Fade up */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade left */
@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Fade right */
@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Navbar animation */
.navbar {
  animation: fadeUp 0.8s ease;
}

/* Hero animation */
.hero-text {
  animation: fadeLeft 1s ease;
}

/* Program card hidden */
.program-card {
  opacity: 0;
  transform: translateY(50px);
  transition: 0.7s ease;
}

.program-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* Image hover zoom */
.program-image img {
  transition: transform 0.5s ease;
}

.program-image img:hover {
  transform: scale(1.06);
}

.program-text ul{
margin-top:10px;
padding-left:18px;
}

.program-text li{
margin-bottom:4px;
font-size:15px;
}