/* BAGGRUND */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-image: url("img/Unknown-5-kopi 2.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    font-family: system-ui, sans-serif;
}

/* HEADER */
.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1px 10px;
    background: #FFFF43;
    border-bottom: 1px solid #FFFF43;
}

.site-logo {
    height: 120px;
    width: auto;
    display: block;
}

.header-title {
    font-size: 100px;
    font-weight: 600;
    color: #000;
    flex: 1;
    text-align: center;
    font-family: "Irish Grover", serif ;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hamburger span {
    width: 60px;
    height: 8px;
    background: #605496;
}

/* ARTIKEL LAYOUT */
.article-layout {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 24px;
    padding: 30px;
}

.article-media {
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
}

.article-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.article-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.article-text p {
    font-size: 16px;
    line-height: 1.5;
    color: #000;
    margin-bottom: 12px;
    font-family: "Sour Gummy", serif;
}


/* FOOTER */
.footer {
    margin-top: 40px;
    padding: 20px;
    background: #FFFF43;
    border-top: 1px solid #FFFF43;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.contact-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-info p {
    margin: 0;
    font-size: 14px;
    color: #000;
}


.footer-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: block;
}
/* RESPONSIVE */
@media (max-width: 900px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .cards {
        grid-template-columns: 1fr;
    }
}