body {
    margin:0;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    background:#f0f9ff;
}
.header {
    background: linear-gradient(45deg,#e78080,#bd0202);
    text-align:center;
    padding:20px;
    color:white;
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.title h1 {
    margin: 0;
}

.title p {
    margin: 0;
}
/* NAVBAR DENGAN BACKGROUND GAMBAR */
.nav {
    background: 
        linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url('../assets/img/bg-nav.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    text-align: center;
    padding: 12px;

    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.nav a {
    color: white;
    margin: 10px;
    text-decoration: none;
    font-weight: bold;

    /* efek biar tetap kebaca */
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);

    transition: 0.3s;
}

.nav a:hover {
    color: #ffcc00;
    transform: scale(1.05);
}

/* HERO SECTION DENGAN BACKGROUND GAMBAR */
.hero {
    background: 
        linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
        url('../assets/img/bg-hero.png');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    text-align: center;
    color: white;

    /* INI YANG PENTING */
    min-height: 50vh; /* full tinggi layar */
    
    /* biar isi tetap rapi di tengah */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    padding: 20px;

    /* efek depth */
    box-shadow: inset 0 -5px 15px rgba(0,0,0,0.3);
}
.content {
    display:flex;
    gap:20px;
    padding:20px;
}
.card {
    background:white;
    padding:15px;
    border-radius:15px;
    box-shadow:0 3px 8px rgba(0,0,0,0.2);
    flex:1;
}

.card img{
  width:100%;
  height:250px;
  object-fit:cover;

  border-radius:12px;
  display:block;
}
footer {
    background:#333;
    color:white;
    text-align:center;
    padding:10px;
}
