* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, sans-serif;
}

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

body {
    background-image: url("img/Unknown-5-kopi 2.jpg");
    background-size: cover;        /* Fylder hele skærmen */
    background-repeat: no-repeat;  /* Ingen gentagelser */
    background-position: center;   /* Centreret */
    background-attachment: fixed;  /* Holder baggrunden fast når man scroller */
}



/* 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;
}

/* CARDS */
.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 30px;
}

.card {
    background: #605496;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 0 0 1px #605496;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}


.card-title {
    font-size: 18px;
    font-weight: 600;
    margin: 12px 0;
    color: #000;
    font-family: "Sour Gummy", serif;
}

.card-btn {
    padding: 8px 14px;
    border: none;
    border-radius: 20px;
    background: #000;
    color: #fff;
    cursor: pointer;
}

/* 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: 10px;
}

.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;
    }
}
