/* Grundstil */
body {
    margin: 0;
    padding: 0;
    background: #FAF9F6;
    font-family: "Josefin Sans", sans-serif;
    color: #555555;
    text-align: center;
}

/* Header */
header {
    padding: 25px 20px 5px;
}

header h1 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 5px;
}

.tagline {
    font-size: 18px;
    font-weight: 300;
    margin-top: 0;
}

/* Loggor + länkar */
.brands {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 20px auto 10px;
    flex-wrap: wrap;
}

.brand {
    text-align: center;
    width: 260px; /* Gör kolumnerna lika breda */
}

.brand img {
    width: 250px;
    height: auto;
    margin-bottom: 12px;
}

/* Länk under logga */
.brand-link {
    display: block;
    text-align: center;
    margin-top: 8px;
    text-decoration: none;
    color: #555555;
    font-weight: 300;
    border-bottom: 1px solid #555555;
    padding-bottom: 2px;
}

.brand-link:hover {
    opacity: 0.7;
}

/* Om Företaget */
#om-foretaget {
    max-width: 700px;
    margin: 25px auto 40px;
    padding: 0 20px;
    line-height: 1.55;
}

#om-foretaget h2 {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 15px;
}

/* Footer */
footer {
    font-size: 14px;
    padding: 25px 20px 40px;
    color: #777;
}

footer a {
    color: #555;
    text-decoration: none;
}

footer a:hover {
    opacity: 0.7;
}

/* ----------------------------------------------------- */
/*                 MOBILOPTIMERING                       */
/* ----------------------------------------------------- */

@media (max-width: 768px) {

    header h1 {
        font-size: 32px;
    }

    .tagline {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .brands {
        gap: 30px;
        margin: 10px auto 0;
    }

    .brand {
        width: 200px;
    }

    .brand img {
        width: 180px;
        margin-bottom: 8px;
    }

    .brand-link {
        font-size: 15px;
        margin-top: 6px;
    }

    #om-foretaget {
        margin: 20px auto 30px;
        padding: 0 15px;
        line-height: 1.5;
    }

    #om-foretaget h2 {
        font-size: 24px;
    }

    footer {
        font-size: 13px;
        padding: 20px 15px 30px;
    }
}

@media (max-width: 480px) {

    header h1 {
        font-size: 28px;
    }

    .tagline {
        font-size: 15px;
    }

    .brand {
        width: 170px;
    }

    .brand img {
        width: 150px;
    }

    .brand-link {
        font-size: 14px;
    }

    #om-foretaget h2 {
        font-size: 22px;
    }

    #om-foretaget {
        font-size: 15px;
        line-height: 1.45;
    }

    footer {
        font-size: 12px;
    }
}
