
.header h2 {
    font-size: 2.2em;
    color: #e74c3c;
    font-weight: bold;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(231,76,60,0.08);
    border-left: 6px solid #e74c3c;
    padding-left: 16px;
    margin-bottom: 18px;
}


.nav ul {
    display: flex;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    background: #1a2634;
    border-radius: 8px;
}
.nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 12px 18px;
    display: block;
    transition: background 0.2s;
}
.nav ul li a:hover {
    background: #e74c3c;
    border-radius: 8px;
}




.hai {
    float: left;
    width: 220px;
    min-height: 100vh;
    margin-right: 32px;
    position: relative;
    box-sizing: border-box;
    background: #f7f7f7;
}

/* List di dalam sidebar */
.hai ul {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.10);
    padding: 16px;
}

/* Item list */
.hai ul li {
    margin-bottom: 12px;
}

/* Link dalam sidebar */
.hai ul li a {
    display: block;
    padding: 10px 14px;
    color: #1a2634;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
}

/* Hover link */
.hai ul li a:hover {
    background: #dd1616;
    color: #fff;
    transform: translateX(4px);
}

/* Active link */
.hai ul li a.active {
    background: #16bcdd;
    color: #fff;
    box-shadow: 0 3px 8px rgba(22, 188, 221, 0.4);
}



.galeri {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
    margin-top: 32px;
}
.galeri-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(44,62,80,0.10);
    width: 340px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.18s, box-shadow 0.18s;
    margin-bottom: 18px;
}
.galeri-item:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 28px rgba(44,62,80,0.18);
}
.galeri-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    background: #eaeaea;
}
.galeri-item h2 {
    font-size: 1.15em;
    color: #1a2634;
    font-weight: bold;
    margin: 18px 16px 20px 16px;
    text-align: center;
    min-height: 60px;
    letter-spacing: 0.2px;
}



.footer {
    margin-top: 40px;
    text-align: center;
    color: #888;
    font-size: 1em;
    padding: 18px 0;
    background: #f7f7f7;
    border-radius: 10px;
}

.berita-detail {
    background: #fff;
    border: none;     
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(44,62,80,0.10);
    padding: 24px 28px 28px 28px;
    margin: 32px auto 24px auto;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.berita-img {
    width: 100%;
    max-width: 480px;
    height: 100%;
    object-fit: cover;
    border: none;       
    border-radius: 12px;
    margin-bottom: 18px;
    background: #eaeaea;
}
.berita-detail h2 {
    font-size: 1.5em;
    color: #1a2634;
    font-weight: bold;
    margin: 0 0 18px 0;
    text-align: center;
}
.berita-text {
    font-size: 1.08em;
    color: #333;
    line-height: 1.6;
    text-align: left;
}