*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial;
}

body{
line-height:1.6;
color:#333;
}

.container{
width:90%;
max-width:1100px;
margin:auto;
}

/* NAVBAR */
header{
background:#0d6efd;
color:white;
padding:15px 0;
position:sticky;
top:0;
z-index:1000;
}

header .container{
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
}

.logo{
font-size:22px;
font-weight:bold;
}

nav ul{
display:flex;
list-style:none;
flex-wrap:wrap;
}

nav ul li{
margin:5px 12px;
}

nav ul li a{
text-decoration:none;
color:white;
font-weight:600;
}

nav ul li a:hover{
color:#ffc107;
}
/* HERO */

.hero{
height:450px;
background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),
url("bacground.jpg");
background-size:cover;
background-position:center;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}

.hero h2{
font-size:40px;
}

.btn{
background:#ffc107;
padding:10px 20px;
text-decoration:none;
color:black;
border-radius:5px;
}

/* SECTION */

.section{
padding:60px 0;
}

.section h2{
text-align:center;
margin-bottom:30px;
}

.bg{
background:#f4f4f4;
}

/* GRID */

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

/* CARD */

.card{
background:white;
padding:20px;
border-radius:10px;
box-shadow:0 2px 8px rgba(0,0,0,0.1);
}

/* GALERI */

.gallery{
background:#ddd;
padding:40px;
text-align:center;
border-radius:10px;
}

/* FOOTER */

footer{
background:#222;
color:white;
text-align:center;
padding:20px;
}

.card img{
width:100%;
height:180px;
object-fit:cover;
border-radius:8px;
margin-bottom:10px;
}

.card p{
text-align:center;
}

.berita h3{
margin-top:5px;
color:#0d6efd;
}